auditlisted
Install: claude install-skill synaptiai/agent-capability-standard
## Live Context
Current audit context:
- Recent git commits: !`git log --oneline -10 2>/dev/null || echo "No git history"`
- Git authors today: !`git log --since="midnight" --format="%an" 2>/dev/null | sort | uniq -c || echo "None"`
- Uncommitted changes: !`git status --short 2>/dev/null || echo "Not a git repo"`
- Recent file modifications: !`find . -type f -mtime -1 -not -path './.git/*' 2>/dev/null | wc -l | tr -d ' '` files in last 24h
- Audit log exists: !`ls -la .audit/ 2>/dev/null | head -5 || echo "No .audit/ directory"`
- Checkpoint log exists: !`ls -la .checkpoints/ 2>/dev/null | head -5 || echo "No .checkpoints/ directory"`
## Intent
Execute **audit** to create a structured record of actions taken, tools invoked, changes made, and the reasoning behind decisions. This provides accountability, enables investigation of issues, and supports compliance requirements.
**Success criteria:**
- Complete chronological record of relevant actions
- Every action linked to actor, timestamp, and rationale
- Changes documented with before/after state
- Provenance chain for all outputs
**Compatible schemas:**
- `schemas/output_schema.yaml`
## Inputs
| Parameter | Required | Type | Description |
|-----------|----------|------|-------------|
| `scope` | Yes | string\|array | What to audit: file paths, action types, or "session" for all |
| `time_window` | No | object | Start/end timestamps to bound the audit |
| `actor` | No | string | Filter by specific actor (agent, user, to