ops-secret-sync — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited ops-secret-sync (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.
Detect GitHub secrets that are stale relative to Doppler. Confirm before syncing.
| Command | Purpose |
|---|---|
gh secret list --repo <owner/repo> --json name,updatedAt | List GH repo secrets with timestamps |
doppler secrets --project <proj> --config <env> --json | List Doppler secrets with metadata |
doppler secrets get <NAME> --project <proj> --config <env> --plain | Fetch raw value for sync |
gh secret set <NAME> --repo <owner/repo> | Write secret to GH (reads stdin) |
Parse $ARGUMENTS:
--repo <owner/repo> → target GitHub repo (required unless registry provides default)--project <proj> → Doppler project name (required)--config <env> → Doppler config/environment, e.g. prd, stg (default: prd)--dry-run → report drift only, never writeIf --repo is missing, load ${CLAUDE_PLUGIN_DATA_DIR:-$HOME/.claude/plugins/data/ops-ops-marketplace}/registry.json and let the user pick via AskUserQuestion (max 4 at a time).
If --project is missing, run:
doppler projects --json 2>/dev/null | jq -r '.[].slug'and let the user pick via AskUserQuestion (max 4 at a time).
Run in parallel (background both, then collect):
# GH secrets (names + last-updated timestamps, ISO-8601)
gh secret list --repo <owner/repo> --json name,updatedAt 2>/dev/null# Doppler secrets (names + metadata including updated_at)
doppler secrets --project <proj> --config <env> --json 2>/dev/nullParse outputs:
GH format (array):
[{"name": "INNGEST_SIGNING_KEY", "updatedAt": "2026-04-23T09:12:00Z"}, ...]Doppler format (object keyed by name):
{
"INNGEST_SIGNING_KEY": {"computed": "...", "note": "", "rawValue": "...", "updatedAt": "2026-04-23T10:00:00Z"},
...
}Note: Doppler's--jsonflag returns computed values inline. Usedoppler secrets get <NAME> --plainonly at sync time to avoid holding all values in memory.
For each secret in Doppler:
delta = doppler_updated_at - gh_updated_at (seconds).delta > 86400 (24 hours): mark as DRIFTED.Build drift report:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
OPS ► SECRET-SYNC — <repo> / <proj>/<config>
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Doppler secrets : <N>
GH repo secrets : <M>
Matched : <K>
DRIFTED (>24h) : <D>
GH missing : <G>
DRIFTED SECRETS
<NAME> Doppler: <date> GH: <date> delta: <Nd>
...
GH MISSING (in Doppler but absent from GH)
<NAME>
...
IN SYNC (no action needed)
<NAME> last-synced: <date>
...
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━If --dry-run is set or no drift found: stop here and display report.
Rule 5 compliance: every secret write requires per-action confirmation.
If drift was found, ask:
AskUserQuestion({
title: "Sync stale GH secrets from Doppler?",
question: "Found <D> drifted + <G> missing secrets for <repo>.\n\nSync all, pick specific ones, or skip?",
options: [
{ value: "all", label: "Sync all drifted + missing" },
{ value: "pick", label: "Pick which secrets to sync" },
{ value: "drifted", label: "Sync drifted only (skip missing)" },
{ value: "skip", label: "Skip — report only" }
]
})On "Pick": present drifted secrets 4-at-a-time via AskUserQuestion checkboxes. Collect user selections. Proceed only with confirmed names.
On "Skip": stop. Print report path.
For each confirmed secret name:
doppler secrets get <NAME> --project <proj> --config <env> --plain 2>/dev/null \
| gh secret set <NAME> --repo <owner/repo>After each write, verify:
gh secret list --repo <owner/repo> --json name,updatedAt \
| jq -r '.[] | select(.name == "<NAME>") | .updatedAt'Confirm the updatedAt advanced. If it did not advance: report failure for that secret and continue with the rest.
Print per-secret outcome:
synced : INNGEST_SIGNING_KEY (Doppler 2026-04-23 → GH updated)
FAILED : SOME_KEY (gh secret set exited non-zero)━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
SYNC COMPLETE — <repo>
Synced : <S> secrets
Failed : <F> secrets
Skipped : <K> secrets
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━If failures > 0: suggest doppler run --project <proj> --config <env> -- gh secret set <NAME> --repo <repo> as a manual fallback.
This skill exists because of a common drift pattern:
| Project | Secret | Situation |
|---|---|---|
<your-api> | INNGEST_SIGNING_KEY | Rotated in Doppler — GH secret was 24 days stale, CI failures started after the grace period |
<your-service> | CEREBRAS_API_KEY | Added to Doppler, never propagated to GH secrets — CI gate failed |
<your-service> | OPENROUTER_API_KEY | Same pattern — GH missing, Doppler current |
Running /ops:secret-sync --repo <your-org>/<your-api> --project <your-api> --config prd would have surfaced INNGEST_SIGNING_KEY as DRIFTED before CI failed.
doppler secrets get --plain into gh secret set via a pipe — they are never stored in shell variables, temp files, or command substitution.--dry-run always safe: no writes, report only.When $SSH_CONNECTION / $OPS_MOBILE=1 / $COLUMNS < 80: skip the banner, emit compact lines:
repo: your-org/example-project-api project: example-project-api/prd
drifted: 2 missing: 1
INNGEST_SIGNING_KEY doppler: 2026-04-23 gh: 2026-03-30 (24d stale)
CEREBRAS_API_KEY gh: MISSING~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.