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 agentmods add skills/apigee/devrel/skill-findernpx skills add apigee/devrel --skill skill-findergit clone --depth 1 https://github.com/apigee/devrelWhat 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 | $0.00080 | $0.01901 |
| Opus 5 | $0.00040 | $0.00950 |
| Sonnet 5 | $0.00016 | $0.00380 |
| Haiku 4.5 | $0.00008 | $0.00190 |
Grade B, and why
skill-finder scanned grade B 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 2d 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
`~/.gemini/config/skills/` (the canonical global skills root). How it starts
The opening of the file, as written. The whole thing — 179 lines — stays where its author put it; the contents beside it link to each section on GitHub.
skill-finder
⚠️ Runtime requirements (read this first)
This skill requires its bundled venv wrapper. The Python
scripts depend on cryptography, google-auth, requests, and
pyyaml, which are installed into a per-user venv by the
installer (bin/install-skill-finder.sh). They are not
available to the system python3.
Always invoke scripts via the wrapper, never via bare
python3:
# CORRECT - invokes the venv Python via the wrapper:
${SKILL_DIR}/bin/run-with-venv.sh ${SKILL_DIR}/scripts/<script>.py <args>
# WRONG - system python3 will hit ModuleNotFoundError:
python3 ${SKILL_DIR}/scripts/<script>.py <args>
The Command blocks in this file use the wrapper form. Do not
"simplify" them to python3 … — the scripts will fail with
ModuleNotFoundError: No module named 'cryptography' (or similar)
and the agent will then waste a turn debugging a configuration
issue that doesn't exist.
If the wrapper at ${SKILL_DIR}/bin/run-with-venv.sh is missing,
the skill was installed by a pre-v0.1.4 installer. Re-run
bin/install-skill-finder.sh to regenerate the wrapper. The
scripts themselves also detect this case at startup and emit an
actionable error pointing back here.
This skill has two modes. Choose the one that fits the user's intent:
| User intent | Use this mode | Script |
|---|---|---|
| "What skills are available?" / "Show me the catalog" / "Browse skills" / "What can the agent do via API hub?" | List (browse, no install) | list_skills.py |
| "Find a skill that does X" / "Install a skill for Y" / "Look that up in API hub" (where there is one stated need) | Install (search + verify + install) | find_install.py |
If the user is browsing or exploring, use List first; the user can then ask "install " and you switch to Install with that name as the query.
Runtime dispatch
Both modes ship as one behavioural contract that runs on two runtimes. Pick the invocation path that matches the runtime:
What ships with it
5 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.
- 2d ago First seen · 179 lines · 80 tokens per session scan B 49f076cef89d
skill-finder is a skill published in the GitHub repository apigee/devrel (220 stars, last pushed 19d ago), licensed Apache-2.0. It adds 80 tokens to every session and 1,901 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
implementing-api-threat-protection-with-apigee
Implement API threat protection using Google Apigee policies including JSON/XML threat protection, OAuth 2.0, SpikeArrest, and Advanced API Security for OWASP Top 10 defense.
auditing-gcp-iam-permissions
Auditing Google Cloud Platform IAM permissions to identify overly permissive bindings, primitive role usage, service account key proliferation, and cross-project access risks using gcloud CLI, Policy Analyzer, and IAM Recommender.
notion
Notion workspace integration for searching pages, managing databases, creating postmortems, and exporting RCA findings.
datadog
Datadog monitoring integration for querying logs, metrics, monitors, events, traces, hosts, and incidents during RCA investigations.
ovh
OVHcloud infrastructure integration for managing instances, Kubernetes clusters, networks, and object storage via CLI and Terraform.
scaleway
Scaleway cloud integration for managing instances, Kapsule Kubernetes clusters, object storage, and managed databases via CLI and Terraform.