dc2d2acc82
Scaffold an MVP of the natural-language ops terminal: inventory + intent template registry, SSH/WinRM/local connectors, risk-gated executor with SQLite audit log, Claude-driven agent layer using Function Calling, plus a Typer CLI and FastAPI surface. Includes 10 cross-OS intents (disk/system/service) and example inventory. Verified end-to-end on the local Windows host: hosts/intents listing, check_disk_usage execution, and WRITE-class confirmation gating. Co-Authored-By: Claude Opus 4 <noreply@anthropic.com>
31 lines
333 B
Plaintext
31 lines
333 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.venv/
|
|
venv/
|
|
.python-version
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# Editors / OS / Tools
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|
|
Thumbs.db
|
|
.claude/
|
|
|
|
# Project data
|
|
data/
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
audit.log
|
|
logs/
|
|
|
|
# Inventory secrets (only ship the example)
|
|
config/inventory.yaml
|
|
!config/inventory.example.yaml
|