mirror of
https://github.com/TZERO78/kopi-docka.git
synced 2026-06-19 07:37:12 +00:00
e41e8d0caf
Adds .claude/commands/docs.md — a project-level Claude Code slash
command that searches official Kopia, Docker, rclone, and backend
documentation on demand.
Usage: /docs <query>
e.g. /docs kopia retention policies
/docs docker inspect fields
/docs rclone s3 backend
Also updates .gitignore: .claude/ → .claude/* to allow tracking
.claude/commands/ alongside the existing .claude/agent.md exception.
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
68 lines
1.1 KiB
Plaintext
68 lines
1.1 KiB
Plaintext
############################
|
|
# Virtual environments
|
|
############################
|
|
.venv/
|
|
venv/
|
|
|
|
############################
|
|
# Python cache / bytecode
|
|
############################
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
############################
|
|
# Build / packaging artifacts
|
|
############################
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
############################
|
|
# Test / coverage artifacts
|
|
############################
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
MagicMock/
|
|
|
|
############################
|
|
# IDE / editor files
|
|
############################
|
|
.vscode/
|
|
.idea/
|
|
|
|
############################
|
|
# Local AI tooling (Claude / Codex)
|
|
# Session state, caches, local-only artifacts
|
|
############################
|
|
.claude/*
|
|
.codex/
|
|
|
|
# Allow committed agent rules and project commands
|
|
!.claude/agent.md
|
|
!.claude/commands/
|
|
!.codex/agent.md
|
|
|
|
############################
|
|
# Local planning / agent workbench
|
|
############################
|
|
plan/
|
|
plan_*.md
|
|
/plan/**/*.md
|
|
|
|
############################
|
|
# Local binaries / downloads
|
|
############################
|
|
*.AppImage
|
|
opencode.AppImage
|
|
|
|
############################
|
|
# OS-specific junk
|
|
############################
|
|
.DS_Store
|
|
Thumbs.db
|