secret-guard

secret-guard is a skill for Claude Code, Codex from canonical/copilot-collections. It costs 96 tokens per session (1,073 once invoked), scanned C, original, Apache-2.0.

A way for coding agents to authenticate to APIs and MCP servers without seeing passwords, tokens, or keys. A trusted broker retrieves credentials from the operating system’s secure key store and inserts them into requests.

In plain words
What is it for?
Use it whenever a task needs an API token, MCP token, password, or key, referring to the stored credential by name rather than reading its value.
Why use it?
It keeps secret values out of the agent’s context, files, logs, and responses while still allowing authenticated requests.

Skill for Claude CodeCodex ✓ vendor

Written for no agent in particular: nothing here depends on one.

Good fit Use it whenever a task needs an API token, MCP token, password, or key, referring to the stored credential by name rather than reading its value.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/canonical/copilot-collections/secret-guard
About the project

Canonical Copilot Collections is a repository for organizing and distributing GitHub Copilot instructions, prompts, agents, and skills across Canonical repositories. Teams configure repositories to subscribe to shared collections, such as Python, documentation, or Juju development guidance, and keep those assets synchronized.

canonical/copilot-collections · 29 stars · on GitHub

Install

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.

Any agent
npx skills add canonical/copilot-collections --skill secret-guard
Clone the repo
git clone --depth 1 https://github.com/canonical/copilot-collections

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for secret-guard

README.md
[![agentmods](https://agentmods.dev/badge/skills/canonical/copilot-collections/secret-guard/github.svg)](https://agentmods.dev/skills/canonical/copilot-collections/secret-guard)
Your own site
<a href="https://agentmods.dev/skills/canonical/copilot-collections/secret-guard"><img src="https://agentmods.dev/badge/skills/canonical/copilot-collections/secret-guard/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.

agentmods 80×15 button for secret-guard

Your own site · 80×15
<a href="https://agentmods.dev/skills/canonical/copilot-collections/secret-guard"><img src="https://agentmods.dev/badge/skills/canonical/copilot-collections/secret-guard.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 96 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,073 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00096 $0.01073
Opus 5 $0.00048 $0.00536
Sonnet 5 $0.00019 $0.00215
Haiku 4.5 $0.00010 $0.00107

Measured 10d ago against content hash 24296f4fa5fc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade C, and why

secret-guard scanned grade C with 1 finding 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 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/keyring_broker.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Reaches for credential fileshighPrivilege escalation

SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.

- ❌ Read `.env`, `.env.*`, `.netrc`, `.npmrc`, `.pypirc`, `*.pem`, `*.key`, `id_rsa`, `credentials`, `kubeconfig`, `.git-credentials`, or any `*secret*`/`*credential*`/`*password*` file to "get the token". Decline and us
skills/secret-guard/SKILL.md · 102 lines

How it starts

The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Secret Guard

Core Principle

You never possess a secret value. You only pass references (names).

A secret must never enter the model's context window. Do not read secret files, do not print values, do not reconstruct them. To authenticate, you emit a credential reference by name and let a trusted, non-LLM broker resolve→inject→scrub. This is architectural, not advisory: the value stays inside the broker process and is never returned to you.

Secrets live in the OS keyring (Keychain / libsecret / Windows Credential Manager). They are stored out-of-band by a human, e.g.:

keyring set agent-secrets github_token
keyring set agent-secrets openai_api_key

You reference them by name only — e.g. github_token. You never see the value.


Mechanism (a): Resolve-and-Inject — PRIMARY

Use this for all API and MCP token use. The broker resolves the named credential, injects it into the request header, performs the call, scrubs the response, and returns only the scrubbed body. The secret exists only inside the broker process for the duration of one request.

python3 scripts/keyring_broker.py request \
    --name github_token \
    --url https://api.github.com/user \
    --header "Authorization: Bearer {secret}"
  • --name is a reference, never a value.
  • {secret} is a placeholder the broker fills internally; you never type the token.
  • Output is scrubbed before you see it.

For MCP servers: put the credential in the MCP server's environment/config, resolved by the client runtime — never in tool arguments, conversation, or files. Prefer OAuth flows where the server holds the token and the client gets a short-lived, scoped handle. Use ${input:...}/env indirection so no literal appears in committed config.


Mechanism (b): Env-Injecting Exec — DISCOURAGED FALLBACK

Only when a legacy CLI can read a credential solely from its environment and (a) is impossible. The broker injects the value into a single child process's environment (never yours), runs one command, and scrubs its output.

Read the full file on GitHub · 102 lines

Files

What ships with it

1 file 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.

Changes

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.

  1. 10d ago First seen · 102 lines · 96 tokens per session scan C 24296f4fa5fc

Subscribe to this mod's changes

secret-guard is a skill published in the GitHub repository canonical/copilot-collections (29 stars, last pushed 7d ago), licensed Apache-2.0. It adds 96 tokens to every session and 1,073 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it C with 1 finding (reaches for credential files). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

incident-postmortem-report

Produce a thorough incident post-mortem report after an outage or customer-impacting event. Covers executive summary, impact, detailed timeline, root cause, contributing factors, corrective and preventive actions, and lessons learned. Use when the user asks to write, draft, or complete a post-mortem, blameless review…

caipe-io/ai-platform-engineering · 76 tokens

documentation-search

Search the internal knowledge base for runbooks, architecture documentation, ADRs, best practices, and troubleshooting guides using RAG. Use when looking for internal documentation, deployment procedures, architecture decisions, or operational runbooks.

caipe-io/ai-platform-engineering · 46 tokens

incident-investigation

Correlate PagerDuty incidents with Jira tickets and recent ArgoCD deployments to accelerate root cause analysis. Orchestrates multiple agents to build a timeline of events. Use when investigating active incidents, performing post-mortems, or correlating alerts with changes.

caipe-io/ai-platform-engineering · 56 tokens

review-specific-pr

Perform a comprehensive code review of a specific GitHub Pull Request. Analyzes code changes, checks for bugs, security issues, test coverage, and coding standards compliance. Use when a user provides a PR URL or asks to review a specific pull request.

caipe-io/ai-platform-engineering · 55 tokens

sprint-progress-report

Generate a comprehensive sprint progress report from Jira with velocity metrics, burndown analysis, blocker identification, and team workload distribution. Use when preparing sprint reviews, standups, or tracking sprint health mid-cycle.

caipe-io/ai-platform-engineering · 46 tokens

aws-cost-analysis

Analyze AWS costs by service, account, and time period. Identifies top spenders, cost anomalies, and optimization opportunities. Use when reviewing cloud spend, preparing cost reports, or investigating unexpected charges.

caipe-io/ai-platform-engineering · 44 tokens