-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy path.gitignore
More file actions
123 lines (100 loc) · 2.24 KB
/
.gitignore
File metadata and controls
123 lines (100 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# Claude Code configuration directory (except repo-tracked settings)
.claude/*
!.claude/settings.json
# Local overlay directory (private/org-specific customizations)
.local/
!.local/.gitkeep
# Development history (contains project-specific data)
.dev-history/
# Architecture Decision Records (internal development artifacts)
adr/
# Environment files (NEVER commit credentials)
.env
.env.*
!.env.example
# SQLite databases (learning system, usage tracking)
*.db
*.db-journal
*.db-wal
*.db-shm
# Python cache
__pycache__/
*.pyc
*.pyo
*.egg-info/
dist/
build/
.venv/
venv/
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Editor files
.vscode/
.idea/
*.swp
*.swo
*~
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
cron-logs/
# Task plans (ephemeral, per-session)
task_plan.md
plan/
# Internal migration/development docs (not for public release)
MIGRATION_CHECKLIST_V2.md
# Development artifacts (generated content, research outputs)
content/
research/
# AB test output directories (raw trial outputs, not committed)
ab-test-results/
ab-test-results-r2/
benchmark/
# ADR session state (ephemeral, per-session, not committed)
.adr-session.json
.adr-session.json.stale
# Credentials and secrets
*.pem
*.key
*.crt
*.p12
service-account*.json
# Reddit moderation local data (per-subreddit context, audit logs)
reddit-data/
# Private components (personal skills, agents, hooks not for public repo)
private-skills/
private-agents/
private-hooks/
private-voices/
agents/wrestlejoy-*
skills/wrestlejoy-*
skills/voice-amy-*
skills/voice-andy-*
skills/gemini-wrestlejoy-*
# Local-only index targets, not committed
skills/INDEX.local.json
agents/INDEX.local.json
# Draft articles (work in progress, not committed)
drafts/
draft-*.md
# Scratch notes and one-off research files (session working files, not committed)
scratch/
research-*.md
# Eval workspaces (A/B/C test outputs, generated code, grading artifacts)
# These are ephemeral experiment data — not committed
*-workspace/
evals/*
# But track A/B test design files (cases, rubrics, methodology)
!evals/new-skills-ab-test/
# Evolution reports (weekly toolkit-evolution cycle output)
evolution-reports/
# Feature state (ephemeral, per-session feature lifecycle)
.feature/