- Initialize .sdlc/ with config, guidance, and state machine - Register M0-M8 as released milestones (full engine track history) - Seed M9 (Community Sync & Revocation) and M10 (Governance & Agent Rights) with features - Seed product milestones P0-P4 and PG1 gate with features from existing planning docs - Add Team section to AGENTS.md (tidal-engineer, tidal-visionary, tidal-researcher, tidal-storyteller) - Add knowledge-librarian agent for .sdlc/knowledge/ curation - Gitignore .sdlc/telemetry.redb (volatile binary state) - Add .ai/ scaffold (project knowledge index)
39 lines
387 B
Plaintext
39 lines
387 B
Plaintext
# Rust build artifacts
|
|
target/
|
|
*.prof
|
|
*.profraw
|
|
|
|
# Next.js build artifacts
|
|
.next/
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Secrets (never commit)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
credentials.json
|
|
service-account*.json
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# IDE / OS
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Ephemeral / scratch
|
|
tmp/
|
|
.claude/worktrees/
|
|
.sdlc/tools/*/index/
|
|
.sdlc/telemetry.redb
|