skill-find

skill-find is a skill for Claude Code, Codex from trpc-group/trpc-agent-go. It costs 19 tokens per session (313 once invoked), scanned A, original, Apache-2.0.

A workflow for finding a public Agent Skill on GitHub, installing it, and loading it for use. It emphasizes finding a clear SKILL.md file and does not run downloaded code automatically.

In plain words
What is it for?
Use it to search GitHub for a skill, install it from a skill directory or SKILL.md page, and load the installed skill.
Why use it?
It provides a repeatable way to add a missing public skill while reducing the risk of installing or executing unclear code. It also reports installation failures and installed files.

Skill for Claude CodeCodex

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

About the project

tRPC-Agent-Go is a Go framework for building AI agent applications with language models, graph-based workflows, tools, memory, retrieval, evaluation, and observability. Go developers use it to create deployable agent systems that can integrate with A2A, AG-UI, and MCP. The catalogue add-ons provide reusable workflows and agent integrations for the framework.

trpc-group/trpc-agent-go · 1,763 stars · on GitHub · trpc-group.github.io

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.

agentmods
npx agentmods add skills/trpc-group/trpc-agent-go/skill_find
Any agent
npx skills add trpc-group/trpc-agent-go --skill skill_find
Clone the repo
git clone --depth 1 https://github.com/trpc-group/trpc-agent-go

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 skill-find

README.md
[![agentmods](https://agentmods.dev/badge/skills/trpc-group/trpc-agent-go/skill_find.svg)](https://agentmods.dev/skills/trpc-group/trpc-agent-go/skill_find)
Your own site
<a href="https://agentmods.dev/skills/trpc-group/trpc-agent-go/skill_find"><img src="https://agentmods.dev/badge/skills/trpc-group/trpc-agent-go/skill_find.svg" alt="Measured on agentmods" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 313 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00019 $0.00313
Opus 5 $0.00010 $0.00156
Sonnet 5 $0.00004 $0.00063
Haiku 4.5 $0.00002 $0.00031

Measured 6d ago against content hash 50e539681e0a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

skill-find 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 6d 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.

examples/skillfind/skills/skill_find/SKILL.md · 45 lines

What it actually says

Overview

Use this skill when the user wants a new public Agent Skill that is not already installed.

Workflow

  1. Search GitHub pages with web_search. Prefer queries that mention SKILL.md, the requested topic, and site:github.com.

  2. Pick a result that clearly points to a GitHub skill directory or a SKILL.md page.

  3. Call skill_install_github with that GitHub URL.

  4. Read the tool result carefully. It returns the exact skill_name that was installed and may also include installed_files.

  5. Immediately call skill_load with the returned skill_name.

  6. Only if local execution is explicitly enabled for this demo and the user asked for a runnable demo, follow the installed skill docs and use skill_run.

  7. If the docs are brief, use installed_files to avoid guessing. Prefer obvious entrypoint files such as run.sh or scripts under scripts/.

Rules

  • Prefer small public skills with a clear SKILL.md.
  • Prefer GitHub results that point directly to a skill, not a repo home page.
  • Tell the user which skill you installed and where it came from.
  • Never run downloaded code automatically.
  • If installation fails, explain the failure briefly and try another candidate.
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. 6d ago First seen · 45 lines · 19 tokens per session scan A 50e539681e0a

Subscribe to this mod's changes

skill-find is a skill published in the GitHub repository trpc-group/trpc-agent-go (1,763 stars, last pushed today), licensed Apache-2.0. It adds 19 tokens to every session and 313 once invoked, about $0.0001 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-30.

Related

Other skills, from other repositories

a2a-adapter

Use when building A2A Protocol agents, converting AI agents from any framework (LangChain, CrewAI, n8n, LangGraph, Ollama, or custom) into A2A-compatible servers, or working with the a2a-adapter Python SDK.

hybroai/a2a-adapter · 59 tokens

go

Idiomatic Go - package and interface design, error wrapping, table-driven tests, generics, the modern standard library (slices/maps/cmp/errors.Join), current syntax, and logging discipline. Use when writing, reviewing, or refactoring any Go code, especially code drifting toward Java/Spring shapes (deep layer trees…

inference-gateway/adk · 99 tokens

go-concurrency

Idiomatic Go concurrency - sync primitives, channel semantics, the select statement, and the standard channel patterns (cancellation/done-channel, fan-out/fan-in, pipeline, or-done, context, worker-pool). Use when writing or reviewing Go that spawns goroutines, shares state, or coordinates over channels, even if the…

inference-gateway/adk · 116 tokens

go-spec-reviewer

Review a Go design spec before implementation begins - dispatch a subagent that checks a design doc for completeness, consistency, and idiomatic Go (simplicity, small consumer-defined interfaces, explicit wrapped errors, context propagation). Use when a user has a Go spec to review, asks "is this spec ready?", or is…

inference-gateway/adk · 93 tokens

edgeone skill scanner

Scan any agent skill for security risks before you install or use it. Powered by Tencent Zhuque Lab A.I.G (AI-Infra-Guard). 100% local static analysis — no file contents or credentials leave your device. Compatible with CodeBuddy, Cursor, Windsurf, Claude Code, OpenClaw and more. Triggers on: 这个 skill 安全吗, skill 安全扫描…

Tencent/AI-Infra-Guard · 148 tokens

continual-learning

Nightly refinement of an existing per-repo review-style prompt using this reviewer's own finding outcomes. Read confirmed (resolved-by-commit / thumbs-up) and dismissed (thumbs-down) findings, promote the bug patterns the team actually fixes, demote the false-positive patterns, reconcile against the current prompt…

langchain-ai/open-swe · 89 tokens