Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Sassy-Dog/sassydog-skills --skill github-secretsgit clone --depth 1 https://github.com/Sassy-Dog/sassydog-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/sassy-dog/sassydog-skills/github-secrets)<a href="https://agentmods.dev/skills/sassy-dog/sassydog-skills/github-secrets"><img src="https://agentmods.dev/badge/skills/sassy-dog/sassydog-skills/github-secrets/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/sassy-dog/sassydog-skills/github-secrets"><img src="https://agentmods.dev/badge/skills/sassy-dog/sassydog-skills/github-secrets.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00103 | $0.00944 |
| Opus 5 | $0.00051 | $0.00472 |
| Sonnet 5 | $0.00021 | $0.00189 |
| Haiku 4.5 | $0.00010 | $0.00094 |
Grade A, and why
github-secrets scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GitHub Secrets & Variables
GitHub secrets and variables exist at three scopes with strict precedence rules. Getting the scope wrong causes silent failures — empty values with no error.
Scope Hierarchy
Organization → Repository → Environment
(broadest) (most specific, wins ties)
- Organization: shared across repos, set with
--org - Repository: default scope, no flag needed inside a repo
- Environment: requires
--envflag ANDenvironment:in the workflow job
Environment > Repository > Organization when names collide.
Secrets vs Variables — Quick Reference
Secrets (secrets.*) |
Variables (vars.*) |
|
|---|---|---|
| CLI | gh secret |
gh variable |
| Workflow | ${{ secrets.NAME }} |
${{ vars.NAME }} |
| Encrypted | Yes | No |
| Readable after set | No (write-only) | Yes |
| Use for | Tokens, passwords, keys | URLs, flags, config |
These are different namespaces. secrets.X and vars.X are not interchangeable.
Critical Rules
Always check before setting
# Secrets — can only check existence, not value
gh secret list [--org ORG] [--env ENV] | grep -q "^NAME"
# Variables — can check existence AND value
gh variable list [--org ORG] [--env ENV] --json name,value
Never try to read secret values
There is no gh secret get. Secrets are write-only. gh secret list shows names only. To update, re-set from the source of truth.
Environment secrets require environment: in the job
jobs:
deploy:
environment: production # WITHOUT THIS, environment secrets are invisible
steps:
- run: echo "${{ secrets.PROD_SECRET }}"
This is the single most common mistake. Missing environment: produces empty values with zero warnings.
Scope flags are required and specific
gh secret set X --body "v" # repo (default)
gh secret set X --org my-org --body "v" # org
gh secret set X --env production --body "v" # environment
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 109 lines · 103 tokens per session scan A a3611ba3b988
github-secrets is a skill published in the GitHub repository Sassy-Dog/sassydog-skills (0 stars, last pushed today), licensed Apache-2.0. It adds 103 tokens to every session and 944 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
setup-solution
Creates a Dataverse publisher and solution, then adds Power Pages site components to the solution for ALM and deployment management. Use when asked to: "create solution", "set up solution", "add to solution", "package site into solution", "create publisher", "solutionize my site", or "set up ALM for my site".
setup-pipeline
Sets up a Power Platform Pipeline for automated Power Pages deployments. Power Platform Pipelines is Microsoft's native CI/CD tool built into the Power Platform — no external infrastructure required. Use when asked to: "set up ci/cd", "create pipeline", "setup pipeline", "set up power platform pipelines", "create…
configure-env-variables
Configures environment variables for Power Pages site settings to support ALM across environments. Creates environment variable definitions in Dataverse, guides the user through linking site settings to those variables via the Power Pages Management app, adds the variables to the solution, and generates a…
force-link-environment
Force-links a development or target environment to a Power Platform Pipelines host, overriding any existing association with a previous host. Use when creating a deploymentenvironments record fails with "this environment is already associated with another pipelines host", or when intentionally migrating an environment…
add-azuredevops
Adds Azure DevOps connector to a Power Apps code app. Use when querying work items, creating bugs, managing pipelines, or making ADO API calls.
pr-watch
Local PR watcher. Monitors CI status, automatically fixes failing checks by reading failure logs and applying targeted fixes, then optionally merges when all checks pass. Local CLI analog to Claude Code's cloud auto-fix feature.