create-policies — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited create-policies (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Help developers define, import, and test guard policies that control what agents can and cannot do.
| Type | Purpose | Example |
|---|---|---|
risk_threshold | Block/warn when risk score exceeds limit | Block actions with risk > 80 |
action_type_restriction | Allow/deny specific action types | Block security actions without approval |
approval_gate | Require human approval for matching actions | Require approval for deploys |
webhook_check | Call external endpoint for policy decision | Check Jira ticket status before deploy |
semantic_guardrail | LLM-based content analysis | Block PII in action metadata |
name: high-risk-blocker
type: risk_threshold
mode: enforce
conditions:
risk_score_min: 80
reversible: false
action: block
reason: "Irreversible actions with risk >= 80 require manual execution"name: no-unattended-deploys
type: action_type_restriction
mode: enforce
conditions:
action_types:
- deploy
- database
action: require_approval
reason: "Deploy and database actions require human approval"name: production-approval-gate
type: approval_gate
mode: enforce
conditions:
systems_touched:
- production
risk_score_min: 50
action: require_approval
reason: "Production access with risk >= 50 requires approval"name: cost-ceiling
type: risk_threshold
mode: enforce
conditions:
cost_estimate_max: 100.00
action: block
reason: "Actions exceeding $100 estimated cost are blocked"name: no-secrets-in-metadata
type: semantic_guardrail
mode: enforce
conditions:
scan_fields:
- declared_goal
- output_summary
patterns:
- "password"
- "api_key"
- "secret"
action: block
reason: "Sensitive data detected in action metadata"// POST /api/policies
const response = await fetch(`${baseUrl}/api/policies`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': process.env.DASHCLAW_API_KEY
},
body: JSON.stringify({
name: 'high-risk-blocker',
type: 'risk_threshold',
mode: 'enforce',
conditions: { risk_score_min: 80, reversible: false },
action: 'block',
reason: 'Irreversible high-risk actions are blocked'
})
});import { DashClaw } from 'dashclaw/legacy';
const claw = new DashClaw({ baseUrl, apiKey, agentId });
// Import a preset pack
await claw.importPolicies({ pack: 'enterprise-strict' });
// Available packs: enterprise-strict, smb-safe, startup-growth, development// POST /api/policies/test
const result = await fetch(`${baseUrl}/api/policies/test`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': process.env.DASHCLAW_API_KEY
},
body: JSON.stringify({
action_type: 'deploy',
risk_score: 85,
reversible: false,
systems_touched: ['production']
})
});
// Response: which policies would trigger and what decisions they'd produceconst results = await claw.testPolicies();
// Returns pass/fail for each policy with explanationconst report = await claw.getProofReport({ format: 'md' });
// Generates compliance-ready report showing all policies and their test results# Permissive — warn only, don't block
- name: dev-risk-warning
type: risk_threshold
mode: warn
conditions: { risk_score_min: 50 }
action: warn
reason: "High risk action detected (dev mode — not blocked)"# Strict — enforce everything
- name: prod-risk-gate
type: risk_threshold
mode: enforce
conditions: { risk_score_min: 70 }
action: require_approval
- name: prod-deploy-gate
type: action_type_restriction
mode: enforce
conditions: { action_types: [deploy, database, security] }
action: require_approval
- name: prod-irreversible-block
type: risk_threshold
mode: enforce
conditions: { risk_score_min: 90, reversible: false }
action: blockPolicies can be scoped to specific agents or apply org-wide:
{
"name": "deploy-agent-only",
"agent_id": "deploy-agent-1",
"type": "approval_gate",
"conditions": { "action_types": ["deploy"] },
"action": "require_approval"
}If agent_id is omitted, the policy applies to all agents in the org.
# GET /api/policies
curl -H "x-api-key: $DASHCLAW_API_KEY" $DASHCLAW_BASE_URL/api/policiesResponse includes all active policies with their type, mode, conditions, and scope.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.