-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy path.gitignore
More file actions
50 lines (44 loc) · 1.57 KB
/
Copy path.gitignore
File metadata and controls
50 lines (44 loc) · 1.57 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
*.zip
__pycache__
dist_release/
# local runtime artifacts
data/
backend/dataflow_cache/
backend/cache_local/
backend/data/dataflow_core/
# editor / OS
.DS_Store
*.swp
*.pyc
.idea/
.vscode/
# ---------------------------------------------------------------------------
# Generated agent assets. The only hand-edited skill source is skills/canonical/;
# everything below is produced from it by installers/generate_agent_assets.py.
#
# These are deliberately NOT tracked. They used to be, which made .claude/skills/
# both a committed artifact and the destination of `--scope project` installs —
# so a `skills`-profile install (rendered without MCP guidance) conflicted with
# the committed `webui` rendering of the same file. One source, generated on
# demand, removes the conflict. See docs/architecture/adr-001-source-of-truth.md.
#
# After cloning: make skills (or: python3 installers/generate_agent_assets.py)
.claude/skills/
.cursor/skills/
.codex/skills/
AGENTS.md
.cursor/rules/generating-dataflow-pipeline.mdc
.cursor/rules/dataflow-dev.mdc
.cursor/rules/dataflow-operator-builder.mdc
.cursor/rules/prompt-template-builder.mdc
# stale "* copy" skill dirs accidentally committed in earlier branches
.claude/skills/* copy/
# installer artifacts
.dataflow-install/
.dataflow-install-receipt
.backend.pid
.backend.log
# Project-scoped agent MCP config written by `install.sh configure-agent`:
# .mcp.json and .cursor/mcp.json are tracked. Codex MCP config is never written
# here — Codex only reads ~/.codex/config.toml. (.codex/skills/ IS written, and
# is ignored above as generated output.)