-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
88 lines (70 loc) · 1.47 KB
/
Copy path.gitignore
File metadata and controls
88 lines (70 loc) · 1.47 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
# Rust
/target/
**/*.rs.bk
# Environment
.env
.env.local
.env.*.local
# IDE / OS
.vscode/*
!.vscode/settings.json
!.vscode/extensions.json
!.vscode/launch.json
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# Logs / temp
*.log
tmp/
temp/
*.tmp
# Runtime
*.pid
*.lock
!Cargo.lock
# Node / docs site
node_modules/
docs/.vitepress/cache/
docs/.vitepress/dist/
# Python build artifacts
__pycache__/
*.pyc
# Claude Code worktrees
.claude/worktrees/
# Claude Code local settings
.claude/settings.local.json
# Animus cloud credentials (contains tokens) — legacy `.ao/` path kept for transition
.ao/sync.json
.animus/sync.json
# Animus runtime state (daemon-written, not source)
.animus/state/
.animus/monitor-log.txt
.animus/daemon.log
.animus/daemon.log.*
.animus/tasks.db
.animus/tasks.db-journal
.animus/tasks.db-wal
.animus/tasks.db-shm
# Codex session continuity (local-only)
.context/
# Managed worktree MCP fallback config
/.mcp.json
# Local Cargo cache config
.cargo/config.local.toml
# Test result artifacts with hardcoded local paths
TEST_RESULTS*.md
/crates/llm-cli-wrapper/TEST_RESULTS*.md
# Generated GraphQL schema artifacts
/crates/orchestrator-cli/schemas/
# Local clone of external research repo, not part of this project
/awesome-ai-coding-tools/
# Test-time scoped state (created when integration tests resolve project_root inside this crate)
/crates/orchestrator-cli/.ao/
/crates/orchestrator-cli/.animus/
# Runtime state from subject plugins
.animus/subjects/
.vercel
.gstack/