Collect and store point-in-time compliance evidence snapshots for audit trail.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add aibot88/sec_skill_store --skill evidence --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Evidence?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/aibot88-evidence)More formats (shields.io, HTML) on the badges page.
---
name: evidence
description: Collect and store point-in-time compliance evidence snapshots for audit trail.
user-invocable: true
---
# Evidence Collection
Collect timestamped compliance evidence snapshots for SOC 2 audit trail.
## What to do
Read `shasta.config.json` for `python_cmd`. Use that for all commands (shown as `<PYTHON_CMD>`).
1. **Run scan and collect evidence:**
```bash
<PYTHON_CMD> -c "
import json
from shasta.config import get_aws_client
from shasta.scanner import run_full_scan
from shasta.evidence.collector import collect_all_evidence
from shasta.db.schema import ShastaDB
client = get_aws_client()
client.validate_credentials()
print('Running compliance scan...')
scan = run_full_scan(client)
db = ShastaDB(); db.initialize(); db.save_scan(scan)
print('Collecting evidence...')
files = collect_all_evidence(client, scan.id)
print(json.dumps({
'scan_id': scan.id,
'evidence_files': [str(f) for f in files],
'total_artifacts': len(files),
}, indent=2))
"
```
2. **Explain what was collected** (9 artifact types) and why monthly evidence collection builds the audit trail auditors need.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!