-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy path.gitignore
More file actions
82 lines (67 loc) · 1.37 KB
/
Copy path.gitignore
File metadata and controls
82 lines (67 loc) · 1.37 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
# Node / Electron
node_modules/
.pnpm/
dist/
out/
build/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Go
.go/
bin/
*.test
*.out
vendor/
# compiled daemon binary
/backend/backend
agent-orchestrator.yaml
# Backend runtime data artifacts (SQLite store + WAL, CDC event log).
# Created at AO_DATA_DIR (outside the repo by default); ignored here so a
# data dir pointed at the tree never gets committed.
*.db
*.db-shm
*.db-wal
session-events.jsonl
session-events.jsonl.*
# Agent Orchestrator local session state
.ao/
# Local scratch workspace (icon generation, throwaway scripts)
.cache/
frontend/.tanstack/
# AO reviewer scratch output. The reviewer agent runs inside the worker's
# worktree; its review writeup must never be committed onto the worker branch.
/review.md
# Environment
.direnv/
.env
.env.*
!.env.example
# Editor / IDE
.vscode/
.idea/
*.swp
*~
# Local tooling (not for the team)
.codegraph/
.cursor/
# OS
.DS_Store
Thumbs.db
# Personal local overrides (not for the team)
.envrc.local
# electron-forge / vite build output
.vite/
dist-electron/
# electron-builder debug dump, written to the cwd on every NSIS build
builder-debug.yml
# playwright artifacts
frontend/test-results/
# built daemon binary copied into the frontend bundle dir
frontend/daemon/
# Locally-added agent skills (not for the team)
.agents/
skills-lock.json
# Local pnpm artifacts
pnpm-lock.yaml