Apply setup-tasks pattern to this repo's own .tasks/. Old flat layout (## Done / ## Backlog sections, no emoji, no per-task files) replaced with the canonical board: - 7 ⚪ Ready blocks for live backlog items, each with the canonical fields (slug, status, where-stopped, next-action, branch) - Historical Done entries dropped — git log is the history of what we've done (looking at .tasks/STATUS.md frombd8c378backwards shows the same content, just less compactly) - No per-task files at this point — none of the items are active or paused; using-tasks creates them on demand when a task starts Backup written to .tasks/STATUS.md.bak-20260428-132845 (local only — .gitignore now ignores **/*.bak-* since they're redundant with git history). Two backlog items that were marked done in the old format are gone: both refer to commits already in this branch's history (4382fd3,bd8c378). The cleanup-stale-skill-installs item is preserved as a ⚪ block for the user. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
72 lines
813 B
Plaintext
72 lines
813 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
.pnp.*
|
|
.yarn/
|
|
bower_components/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.python-version
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Build output
|
|
# (dist/ is intentionally NOT ignored — we commit built .skill archives)
|
|
build/
|
|
out/
|
|
target/
|
|
*.tsbuildinfo
|
|
|
|
# Environment / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# IDE / editor
|
|
.idea/
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/extensions.json
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Coverage / cache
|
|
coverage/
|
|
.nyc_output/
|
|
.cache/
|
|
.parcel-cache/
|
|
.next/
|
|
.nuxt/
|
|
.turbo/
|
|
.svelte-kit/
|
|
|
|
# Misc
|
|
*.tmp
|
|
.tmp/
|
|
|
|
# Migration backups (created by setup-* skills; redundant with git history)
|
|
**/*.bak-*
|