Claude-Code-Promts-Skills: Skill for Claude Code

.claude/skills/find-prompt/SKILL.md

find-prompt is a skill for Claude Code from Rtur2003/Claude-Code-Promts-Skills. It costs 63 tokens per session (2,346 once invoked), scanned A, original, MIT.

A routing skill that finds the right prompt from a prompt library for the task currently being worked on, loads it, and applies its instructions.

In plain words
What is it for?
Use it when you need a prompt for work such as adding OAuth, setting up hooks, reviewing a pull request, or choosing a model.
Why use it?
It reduces the need to search through prompt files and helps start the task with the relevant guidance.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions CLAUDE.md; mentions subagents; mentions Claude Code.

This is Rtur2003/Claude-Code-Promts-Skills's own configuration. It tells Claude Code how to work on Claude-Code-Promts-Skills itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Claude-Code-Promts-Skills configures →

Part of the claude-code-prompts plugin — 5 skills, 1 hook shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to Rtur2003/Claude-Code-Promts-Skills. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Rtur2003/Claude-Code-Promts-Skills/main/.claude/skills/find-prompt/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Rtur2003/Claude-Code-Promts-Skills

Made for: Claude Code.

Or install claude-code-prompts, the plugin that ships this one along with the rest of its 5 skills, 1 hook.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/rtur2003/claude-code-promts-skills/find-prompt/github.svg)](https://agentmods.dev/skills/rtur2003/claude-code-promts-skills/find-prompt)
Your own site
<a href="https://agentmods.dev/skills/rtur2003/claude-code-promts-skills/find-prompt"><img src="https://agentmods.dev/badge/skills/rtur2003/claude-code-promts-skills/find-prompt/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 find-prompt

Your own site · 80×15
<a href="https://agentmods.dev/skills/rtur2003/claude-code-promts-skills/find-prompt"><img src="https://agentmods.dev/badge/skills/rtur2003/claude-code-promts-skills/find-prompt.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,346 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00063 $0.02346
Opus 5 $0.00032 $0.01173
Sonnet 5 $0.00013 $0.00469
Haiku 4.5 $0.00006 $0.00235

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

Security

Grade A, and why

find-prompt 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 4d 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.

.claude/skills/find-prompt/SKILL.md · 117 lines

How it starts

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

Find the right prompt and run with it

You route the current task to the right file(s) in this library, read them yourself, and then continue the existing work under those instructions — not from scratch, but picking up the conversation and any task already in progress.

${CLAUDE_SKILL_DIR} is this skill's own directory (<library-root>/.claude/skills/find-prompt/). The library root is ${CLAUDE_SKILL_DIR}/../../... All prompt files are under ${CLAUDE_SKILL_DIR}/../../../prompts/english/. Never hardcode an absolute path — always build it from ${CLAUDE_SKILL_DIR} so this works for anyone who clones the library, wherever they put it.

If ${CLAUDE_SKILL_DIR} is not substituted (it shows up literally), fall back: the skill sits next to SKILL.md; run ls up the tree from your working directory to find the folder containing prompts/english/agents/claude-agent-system-prompt.md.

Steps

  1. Determine the task. Use $ARGUMENTS if given. Otherwise use the task already being worked on in this conversation (the user's last real request, the in-progress work, the files open). If genuinely unclear, ask one short question and stop.

  2. Match the task to the routing table below. Pick the base prompt plus specialists by tier: 1 for a single-domain task (default), 2 only if the task spans two genuinely independent domains, or route to Multi-Agent Orchestration if the work needs isolation/review. See ${CLAUDE_SKILL_DIR}/../../../prompts/english/workflows/prompt-selector-guide.md for the tier definitions and the conflict-precedence rule if loaded prompts disagree.

  3. Read the file(s) with the Read tool, using paths built from ${CLAUDE_SKILL_DIR}:

    • base: ${CLAUDE_SKILL_DIR}/../../../prompts/english/agents/claude-agent-system-prompt.md
    • specialist: ${CLAUDE_SKILL_DIR}/../../../prompts/english/<path from the table> If a path does not exist, tell the user to run /update-prompts and stop.
  4. Adopt them and continue. Treat the base prompt as your operating system prompt and the specialist as the domain protocol for this task. Then:

    • Restate the current task in one line (from the conversation, not invented).
    • State the success criteria you'll hold yourself to.
    • Carry over every session constraint already established (no git, no server start, static-only, don't touch X, etc.).
    • Pick up the work where it stands — continue the in-progress task under the new protocol. Do not restart, do not re-ask what was already answered, do not re-explore what was already explored.

Read the full file on GitHub · 117 lines

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. 4d ago Changed · -29 tokens per session bb6ee8332b31
  2. 5d ago First seen · 117 lines · 92 tokens per session scan A 5e566bd33359

Subscribe to this mod's changes

find-prompt is a skill published in the GitHub repository Rtur2003/Claude-Code-Promts-Skills (51 stars, last pushed 4d ago), licensed MIT. It adds 63 tokens to every session and 2,346 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

alibabacloud-data-agent-mcp-skill

Alibaba Cloud Data Agent MCP skill (alibabacloud-data-agent-mcp-skill, data-agent MCP) for enterprise database/file analysis. Use when the user asks (in any language, including Chinese) to query/analyze DMS-managed databases, run SQL/data analysis, start quick-query (lite) or deep-analysis (pro/ultra) sessions…

aliyun/data-agent-skill · 199 tokens

alibabacloud-data-agent-skill

Invoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data…

aliyun/data-agent-skill · 159 tokens

data-analysis

Answer data questions from quick metric lookups to full investigations and stakeholder-ready reports.

datagallery-ai/dataagent · 19 tokens

stata-code

Use this skill whenever the user asks to run Stata code, debug a .do file, work with a Stata-backed Jupyter notebook, repair a Stata error, interpret r() / e() results, or write/plan a Stata analysis — and the stata-code MCP server is available (or, when it is not, to generate self-contained do-files). The skill…

brycewang-stanford/stata-code · 156 tokens

data-cost-optimization

Use this skill when asked about data cost optimization, Snowflake cost management, BigQuery slot management, S3 storage tiering, warehouse cost optimization, FinOps for data, cloud data cost reduction, or query cost analysis. This skill enforces: Snowflake credit usage analysis with query optimization, BigQuery slot…

j4flmao/agent-skills · 138 tokens

agenthub

Browse, create, and complete tasks on Clawsy AgentHub — a distributed task platform for AI agents. Create tasks from GitHub repos, PDF/DOCX/PPTX/audio URLs, or plain text. Use custom LLM validation, earn karma. Categories: content, data, research, creative.

citedy/adclaw · 65 tokens