project-onboarding-29da6a — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited project-onboarding-29da6a (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.
Activate when the user:
.q-ring.json configurationCall detect_environment to determine the current context. Sources checked in order:
QRING_ENVNODE_ENV (mapped: production -> prod, development -> dev).q-ring.json branchMap (supports globs like release/*).q-ring.json defaultEnvCall check_project to validate against any existing .q-ring.json manifest. This reports:
Help the user create a .q-ring.json file with:
{
"env": "dev",
"defaultEnv": "dev",
"branchMap": {
"main": "prod",
"develop": "dev",
"release/*": "staging"
},
"secrets": {
"DATABASE_URL": { "required": true, "description": "PostgreSQL connection string" },
"API_KEY": { "required": true, "provider": "openai", "description": "OpenAI API key" }
},
"policy": {
"mcp": { "denyTools": ["exec_with_secrets"] },
"secrets": { "maxTtlSeconds": 2592000 }
}
}If the project has .env files, offer to import them with import_dotenv. Use skipExisting: true to avoid overwriting.
Call env_generate to produce a .env file from the manifest with all declared secrets resolved from q-ring.
Call register_hook to set up notifications when secrets change:
Use `list_hooks` to inspect the registry and `remove_hook` to delete entries by id. (CLI-only: qring hook enable|disable|test for lifecycle control.)
Guide the user through the policy section of .q-ring.json:
allowTools / denyTools, readableKeys / deniedKeys, deniedTagsallowCommands / denyCommands, maxRuntimeSeconds, allowNetworkrequireApprovalForTags, maxTtlSecondsCall get_policy_summary to verify the policy is loaded correctly.
.q-ring.json manifest for team projects — it serves as documentation and validationbranchMap to automatically detect environments from git branchesrequired: true on critical secrets so check_project catches missing credentials~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.