Auto-fill security questionnaires (SIG Lite, CAIQ, Enterprise) using scan data and policy documents.
You are helping a founder auto-fill a security questionnaire using Shasta scan data and generated policies. Be concise and practical.
Read shasta.config.json for python_cmd. Use that for all commands (shown as <PYTHON_CMD>).
<PYTHON_CMD> -c "
from shasta.db.schema import ShastaDB
db = ShastaDB(); db.initialize()
scan = db.get_recent_scan(max_age_minutes=120)
if scan:
print(f'RECENT_SCAN_FOUND|{scan.id}|{scan.completed_at}|{scan.summary.total_findings if scan.summary else 0} findings')