cli-deploy — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited cli-deploy (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.
Deploy a GAM campaign to production and monitor its delivery status.
Requires orbiads CLI (pip install orbiads-cli). All commands use --json for structured output. Use the Bash tool to execute.
orbiads campaigns deploy <id> --yes --json [5 credits] — deploy campaign (requires explicit confirmation)orbiads campaigns get <id> --json [free] — check campaign statusorbiads reporting run --type delivery --campaign <id> --json [free] — get delivery reportorbiads campaigns get <id> --json to verify readiness.orbiads campaigns deploy <id> --yes --json after explicit user confirmation (costs 5 credits). Capture the jobId from the response.orbiads campaigns get <id> --json every 5-10 seconds until status is deployed or failed. Stop after 5 minutes maximum.orbiads reporting run --type delivery --campaign <id> --json to get initial delivery data.Deployment result with campaign status and delivery metrics. Polling pattern example:
# Deploy
orbiads campaigns deploy 12345 --yes --json
# Poll until terminal state (max 5 min)
for i in $(seq 1 30); do
sleep 10
STATUS=$(orbiads campaigns get 12345 --json | jq -r '.data.status')
echo "Status: $STATUS"
if [ "$STATUS" = "deployed" ] || [ "$STATUS" = "failed" ]; then break; fi
done
# Check delivery
orbiads reporting run --type delivery --campaign 12345 --json~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.