-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
80 lines (68 loc) · 1.61 KB
/
Copy path.gitignore
File metadata and controls
80 lines (68 loc) · 1.61 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
# Python
__pycache__/
*.py[cod]
*.pyo
*.egg-info/
dist/
build/
*.egg
*.spec
# Virtual environments (anchored to the repo root — a bare `env/` would also
# swallow the vendored `.agents/skills/dailybot/env/` sub-skill)
/.venv/
/venv/
/env/
# IDE
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Testing / coverage
.pytest_cache/
htmlcov/
.coverage
.coverage.*
coverage.xml
.tox/
.nox/
# Tool caches
.mypy_cache/
.ruff_cache/
.pyre/
.pytype/
.cache/
# Logs / backups / temp
*.log
*.bak
*.tmp
pip-log.txt
pip-delete-this-directory.txt
# Jupyter
.ipynb_checkpoints/
# Config secrets
.env
.pypirc
# Project
.vscode
.devcontainer
# Dailybot repo profile — broad-ignore the folder, but the per-repo
# `profile.json` itself MUST be tracked (it pins the agent identity for
# everyone working in this repo). Any other on-disk state Dailybot stores
# here (caches, transient OTP scratch, .dailybot/env.json for per-repo
# API keys, etc.) is correctly ignored.
# IMPORTANT: `.dailybot/env.json` is INTENTIONALLY NEVER excepted — it
# contains API keys and must never be committed. The CLI enforces this
# at load time with a fatal `RepoEnvError`. See docs/SECURITY.md.
.dailybot/*
!.dailybot/profile.json
# Scratchpad for AI agents and humans — see AGENTS.md.
# Anything dropped here is ignored except for the placeholder .gitkeep file.
tmp/*
!tmp/.gitkeep
# Deep Work Plan output area — fully gitignored per the DWP spec
# (`.agents/skills/deepworkplan/shared/dwp-paths.md`). Plans and drafts are
# runtime artifacts, not source: the create-flow re-creates `.dwp/` on
# demand. See also `AGENTS.md` "Working with Deep Work Plans".
.dwp/