Quick Start
After installing and authenticating, here are some common first steps.
Browse Frameworks
List all available compliance frameworks:
pretorin frameworks list
Get details on a specific control:
pretorin frameworks control nist-800-53-r5 ac-02
Set Up Context
Set your active system and framework for platform operations:
# Interactive selection
pretorin context set
# Or explicit
pretorin context set --system "My Application" --framework fedramp-moderate
Create Evidence
Create a local evidence file:
pretorin evidence create ac-02 fedramp-moderate \
--description "Role-based access control in Azure AD" \
--type configuration \
--name "RBAC Configuration"
Push evidence to the platform:
pretorin evidence push
Run an Agent Task
Use the Codex agent for compliance analysis:
pretorin agent run "Assess AC-02 implementation gaps for my system"
Or use a predefined skill:
pretorin agent run --skill gap-analysis "Analyze my system compliance gaps"
Connect Your AI Tool
If you use Claude Code, Codex CLI, or another MCP-compatible AI tool:
# Install the skill (teaches your agent how to use Pretorin tools)
pretorin skill install
# Add the MCP server (Claude Code example)
claude mcp add --transport stdio pretorin -- pretorin mcp-serve
# Then ask your AI agent about compliance
# "What controls are in the Access Control family for FedRAMP Moderate?"
Check install status with pretorin skill status. See the MCP Setup Guides for other tools.
Browse STIGs and CCIs
Look up STIG benchmarks, rules, and CCI traceability:
# List available STIG benchmarks
pretorin stig list
# View STIG benchmark details
pretorin stig show <stig_id>
# Trace a CCI to its parent controls
pretorin cci chain <cci-id>
Run the Demo Walkthrough
An interactive demo script is included in the repository:
bash tools/demo-walkthrough.sh