sc-onboarding — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited sc-onboarding (Agent Skill) and scored it 92/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 2 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 2 flagged
The text {match} tells the agent to skip the normal "ask the user first" gate. Used adversarially it removes the human-in-the-loop check before destructive or sensitive actions, turning a normally-gated agent into a fire-and-forget executor.
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.
Use this skill when the user is setting up si-coder-agent for the first time, or after they install a new /sc-* domain skill that needs new credentials.
Triggered when the user runs /sc-onboarding from Claude / OpenClaw / Gemini.
The AI MUST:
see the "Required vars per domain" table below or skills/sc-onboarding/lib/onboarding-domains.js DOMAIN_VARS for the full list, including the stub domains):
[ ] github (always required for any deploy)[ ] dokploy (Dokploy CRUD + deploy targets)[ ] convex (Convex self-hosted)[ ] hostinger (optional DNS automation)[ ] vercel (Vercel online frontend)[ ] convex-cloud (Convex Cloud backend)[ ] cf (Cloudflare, future) · stripe · clerk · supabase · resend (stubs)process.env + ~/.bashrc parse).steps/<domain>.md. NEVER ask for vars that are already set unless the user says "reset" or "rotate".~/.bashrc by piping the pairs via stdin so the raw secret never lands in argv (ps aux / /proc/<pid>/cmdline / shell history): printf 'KEY=VALUE\nKEY2=VALUE2\n' | node scripts/scan-env.js --write-stdinEach KEY=VALUE is validated against the shared VALIDATORS (same source of truth as the CLI wizard) before anything is written; on the first failure it prints KEY failed validation and exits 1 without writing any pair (all-or-nothing). A legacy argv form (scripts/scan-env.js --write KEY=VALUE [KEY=VALUE...], pairs positional before or after the boolean --write) still exists for non-secret keys only — never pass secrets as argv. Both paths append an idempotent managed block delimited by # --- si-coder onboarding --- / # --- end si-coder onboarding ---; keys are deduped on each run and existing exports outside the block are not edited.
source ~/.bashrc + tell the user which /sc-* skill they can now use.NEVER ask the user to paste a value if it is already exported. Never log the value back to the user — confirm by hash/length only.
flowchart TD
A([/sc-onboarding]) --> B[Pick domains<br/>ticked checklist]
B --> C[Scan sources:<br/>process.env + ~/.bashrc]
C --> D[Resolve DOMAIN_VARS<br/>required + optional<br/>per ticked domain]
D --> E{For each var:<br/>already set in<br/>env or ~/.bashrc?}
E -- yes --> F[Skip<br/>never re-prompt]
E -- no --> G{required?}
G -- required --> H[Prompt for value<br/>missing required]
G -- optional --> I[Prompt for value<br/>missing optional<br/>blank = skip]
H --> J[Validate against VALIDATORS]
I --> J
J -- fail --> H
J -- pass --> K[Collect into updates]
F --> L
K --> L{any updates<br/>to write?}
L -- no --> M([Done — nothing to write])
L -- yes --> N[Merge into managed block<br/># --- si-coder onboarding --- ... end<br/>dedup keys, single-quote escape]
N --> O[Write ~/.bashrc<br/>chmod 0600]
O --> P([source ~/.bashrc])For users who clone the repo and want a scripted setup:
bash install.sh # symlink skills to ~/.claude/skills/
node bin/onboard.js # interactive readline wizard
node bin/onboard.js --domains convex,dokploy,github # non-interactive checklistThe CLI (bin/onboard.js) reads steps/<domain>.md only for the human-readable prompt text/context it shows per domain. The per-key validators are NOT in the step markdown — they live in the VALIDATORS registry in skills/sc-onboarding/lib/onboarding-domains.js (the same source of truth scripts/scan-env.js uses), which bin/onboard.js imports and applies before writing to ~/.bashrc.
Mirrors skills/sc-onboarding/lib/onboarding-domains.js DOMAIN_VARS (the single source of truth).
| Domain | Required | Optional |
|---|---|---|
| github | GITHUB_TOKEN | — |
| dokploy | DOKPLOY_API_URL, DOKPLOY_API_KEY | — |
| convex | (uses dokploy creds) | CONVEX_ADMIN_KEY (auto-generated on deploy) |
| hostinger | — | HOSTINGER_API_TOKEN (recommended) |
| vercel | VERCEL_TOKEN | VERCEL_TEAM_ID |
| convex-cloud | CONVEX_DEPLOY_KEY | CONVEX_DEPLOYMENT |
| cf (stub) | — | CLOUDFLARE_API_TOKEN, CLOUDFLARE_ACCOUNT_ID |
| stripe (stub) | — | STRIPE_SECRET_KEY, STRIPE_PUBLISHABLE_KEY, STRIPE_WEBHOOK_SECRET |
| clerk (stub) | — | CLERK_SECRET_KEY, NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY, NEXT_PUBLIC_CLERK_FRONTEND_API_URL |
| supabase (stub) | — | SUPABASE_ACCESS_TOKEN, SUPABASE_ORG_ID |
| resend (stub) | — | RESEND_API_KEY, RESEND_FROM_DOMAIN |
Stub domains pre-register vars so /sc-onboarding can collect them; their /sc-* skills are not implemented yet. See steps/*.md for how to obtain each one.
…[len=N].# --- si-coder onboarding --- / # --- end si-coder onboarding ---, so the user can audit/remove it later.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.