mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
- CLAUDE.md (root + Server + client) documenting commands, generated-code rules, and the known-red client unit suite policy - .claude/skills: ci-check (local CI mirror), protocol-change, db-change workflows for the sqlc/protocol codegen invariants CI enforces - .githooks pre-commit/pre-push mirroring CI's fast gates (gofmt, go vet, oxlint, prettier, tsc, tag-variant builds, sqlc/protocol staleness), enabled via 'npm run hooks:install' - .claude SessionStart hook installing client npm deps and warming the Go module cache so remote sessions can run tests/linters immediately - .mcp.json with Playwright and Context7 MCP servers - .gitignore: commit shared Claude config; keep local-only overrides ignored Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BDcVJqGjHcJVLoV4x1HFjW
81 lines
1.5 KiB
Plaintext
81 lines
1.5 KiB
Plaintext
# Docker secrets
|
|
.env
|
|
Server/.env
|
|
|
|
# Claude Code — shared project config (CLAUDE.md, .claude/settings.json,
|
|
# .claude/skills/, .claude/hooks/, .mcp.json) is committed; local-only
|
|
# state and overrides are not.
|
|
.claude/settings.local.json
|
|
.claude/*.local.json
|
|
CLAUDE.local.md
|
|
Client/.claude/
|
|
Server/.claude/
|
|
|
|
# GitHub Copilot instructions (internal)
|
|
.github/copilot-instructions.md
|
|
.github/instructions/
|
|
|
|
# Agent worktrees (Mission Control fleet isolation)
|
|
.worktrees/
|
|
|
|
# AI-specific / internal planning docs
|
|
docs/brain/
|
|
docs/CODEMAPS/
|
|
docs/designs/
|
|
docs/research/
|
|
docs/superpowers/
|
|
/skills/
|
|
|
|
# Server runtime artifacts
|
|
Server/chatserver.exe
|
|
Server/chatserver.exe~
|
|
Server/owncord-server.exe
|
|
Server/server.exe
|
|
Server/config.yaml
|
|
Server/data/
|
|
|
|
# Test coverage artifacts
|
|
*.out
|
|
Server/cov.out
|
|
Server/cover.out
|
|
Server/coverage.out
|
|
Server/ws_cover.out
|
|
Server/ws_cov.out
|
|
|
|
# Client build artifacts
|
|
Client/publish/
|
|
Client/publish-single/
|
|
Client/publish-release/
|
|
|
|
# HTML mockups (large design reference files)
|
|
Client/login-mockup.html
|
|
Client/ui-mockup.html
|
|
|
|
# Tauri typegen (auto-generated IPC bindings)
|
|
Client/tauri-client/src/generated/
|
|
.typecache
|
|
|
|
# Node modules
|
|
node_modules/
|
|
|
|
# AI tooling
|
|
.gstack/
|
|
.claude-flow/
|
|
.superpowers/
|
|
|
|
# Internal dev tools
|
|
tools/
|
|
.cache/
|
|
|
|
# Internal dev files (root-level scratch only; .claude/skills/ and CLAUDE.md are committed)
|
|
/SKILL.md
|
|
TODOS.md
|
|
DESIGN.md
|
|
Client/CLIENT-REVIEW.md
|
|
|
|
# Agent tooling state
|
|
.serena/
|
|
|
|
# Client env (holds API keys - never commit)
|
|
Client/tauri-client/.env
|