code-search

A code-search guide for finding where functions, symbols, settings, and behaviours are defined in an unfamiliar workspace.

In plain words
What is it for?
It is for locating definitions, callers, configuration values, tests, and relevant directories before editing a codebase.
Why use it?
It reduces the need to read whole files or search blindly before making a change.

Skill for Claude CodeCodex

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/1aifanatic/super-computer/code-search
Any agent
npx skills add 1aifanatic/super-computer --skill code-search
Clone the repo
git clone --depth 1 https://github.com/1aifanatic/super-computer

Made for: Claude Code, Codex.

Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 417 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 $0.00046 $0.00417
Opus 5 $0.00023 $0.00209
Sonnet 5 $0.00009 $0.00083
Haiku 4.5 $0.00005 $0.00042

Measured yesterday against content hash d628d1263c09, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

code-search 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 yesterday.

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.

skills/code-search/SKILL.md · 52 lines

What it actually says

Finding things in a Workspace

Search before you read. Reading whole files to locate one symbol wastes context you will need later for the actual work.

Order of operations

  1. list_dir /workspace first. Layout tells you where to look and stops you searching the whole tree.
  2. glob when you know roughly what the file is called — *.config.*, *test*, *.md.
  3. grep when you know what the code says rather than where it lives.
  4. read_file last, and with offset/limit once grep has told you the line number.

Patterns that pay off

Find a definition rather than every mention:

grep -rn "function handlePayment" /workspace
grep -rn "class .*Repository" /workspace
grep -rn "export (const|function|class) name" /workspace

Find callers, then narrow:

grep -rn "handlePayment(" /workspace

Find configuration and constants:

grep -rni "timeout|retry|max_|limit" /workspace

Get the shape of a file cheaply before reading it:

grep -n "^(export |function |class |def |const )" /workspace/src/thing.ts

When a search returns too much

Do not read all of it. Narrow instead: add a directory, add context to the pattern, or count first with grep -rc pattern /workspace to see whether the search was even the right one.

Reporting

Answer with file paths and line numbers, not prose summaries of code the Operator can read. src/billing.ts:412 is more useful than three sentences describing what happens there.

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. yesterday First seen · 52 lines · 46 tokens per session scan A d628d1263c09

Subscribe to this mod's changes

code-search is a skill published in the GitHub repository 1aifanatic/super-computer (2 stars, last pushed 21d ago), licensed MIT. It adds 46 tokens to every session and 417 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

changelog-writer

This skill should be used when the user asks to "add a changelog entry", "write changelog", "audit changelog", "review changelog", "check changelog entries", or is editing docs-mintlify/changelog.mdx. Enforces a consistent, reader-facing voice and cuts implementation trivia.

pdugan20/rewind · 68 tokens

add-media

This skill should be used when the user asks to "add a movie", "add a vinyl", "add to my collection", "add physical media", "add a Blu-ray", "add a CD", or "bought these records". It handles both movies (via TMDb/Trakt) and music (via Discogs).

pdugan20/rewind · 71 tokens

media-search

This skill should be used when the user asks to "search for a movie", "find a record on Discogs", "look up a film", "search TMDb", "search Discogs", "what's the TMDb ID for", "what's the Discogs ID for", or wants to look up media metadata before adding it to the collection.

pdugan20/rewind · 75 tokens

frontend-design-landing-page

Marketing landing page and conversion-focused product page reference. Use this skill when building hero sections, feature grids, pricing pages, testimonials, CTAs, footers, navigation bars, or any public-facing marketing surface. Covers a warm, professional, developer-friendly design language (cream backgrounds…

cloudflare/vibesdk · 106 tokens

frontend-design-saas

S-tier SaaS dashboard and product UI reference. Use this skill when building application shells, data tables, settings panels, billing pages, dashboards, auth flows, admin tools, or any internal/customer-facing SaaS product UI. Inspired by Stripe, Linear, Vercel, Airbnb, Notion. Covers neutral-led design tokens…

cloudflare/vibesdk · 105 tokens

cloudflare-bundler-apps

Author Cloudflare Worker Bundler-compatible apps that build and preview correctly inside a space. Use this skill whenever you scaffold, modify, or deploy a project that will be built with @cloudflare/worker-bundler (i.e. anything served from /space/:name/preview/:branch/). Covers wrangler config, project layout…

cloudflare/vibesdk · 105 tokens