Borrowing it
Nothing to install: this file belongs to sopaco/cowork-forge. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/sopaco/cowork-forge/main/.agents/skills/repomix-context-skill/SKILL.mdgit clone --depth 1 https://github.com/sopaco/cowork-forgeWrote 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.
[](https://agentmods.dev/skills/sopaco/cowork-forge/repomix-context-skill)<a href="https://agentmods.dev/skills/sopaco/cowork-forge/repomix-context-skill"><img src="https://agentmods.dev/badge/skills/sopaco/cowork-forge/repomix-context-skill.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00040 | $0.00753 |
| Opus 5 | $0.00020 | $0.00377 |
| Sonnet 5 | $0.00008 | $0.00151 |
| Haiku 4.5 | $0.00004 | $0.00075 |
Grade A, and why
repomix-context-skill 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Repomix Context Skill
Terrain stores a local repomix index at .terrain/agent/repomix.md (gitignored, fast to regenerate).
Read architecture first via terrain-knowledge-skill → .terrain/agent/context.md.
When to use
- Implementation details after reading
context.md - Cross-file symbol search within the indexed snapshot
- Locating handlers, types, routes
Query strategy (mandatory)
- Read meta —
.terrain/agent/meta.json(total_tokens,synced_at,top_files_by_tokens) - Search the pack — never load the entire file:
Or agent Grep limited to that path with tight patterns.# <rtk> = ~/.terrain/bin/rtk or bunx @terrain-ai/rtk (see rtk-skill) <rtk> grep "struct ProjectOverview" .terrain/agent/repomix.md <rtk> grep "### src/lib/api.ts" .terrain/agent/repomix.md - Read slices — extract matching
### path/to/filesections only:
Then read the specific<rtk> read .terrain/agent/repomix.md -l aggressive### fileblock (line range), ≤150 lines per read. - Refresh — if
meta.json.synced_atis stale, ask user to run Terrain 重建源码索引 / scan
Repomix section format
Sections look like:
### src/lib/foo.ts
\`\`\`typescript
... file content ...
\`\`\`
Grep for ### relative/path to jump to a file.
Paths
| File | Purpose |
|---|---|
.terrain/agent/repomix.md |
Full indexed snapshot (local only) |
.terrain/agent/meta.json |
Pack metrics |
.terrain/agent/context.md |
Architecture (read first) |
Do not
- Commit or assume
repomix.mdexists in git cat/ Read the entirerepomix.md(can be 100k+ tokens)- Read the live repository tree when the pack covers the question
- Skip
context.mdand grep source for architecture questions
Regenerate index
If repomix.md is missing:
# bash / Git Bash — <terrain> = ~/.terrain/bin/terrain or bunx @terrain-ai/cli
if [ -x ~/.terrain/bin/terrain ] || [ -x ~/.terrain/bin/terrain.exe ]; then
~/.terrain/bin/terrain assets pack-agent .
else
bunx @terrain-ai/cli assets pack-agent .
fi
# or from repo root in Terrain UI: 重建源码索引
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.
- 8d ago First seen · 85 lines · 40 tokens per session scan A 30a8386e6991
repomix-context-skill is a skill published in the GitHub repository sopaco/cowork-forge (92 stars, last pushed 13d ago), licensed MIT. It adds 40 tokens to every session and 753 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-30.
Other skills, from other repositories
wiki
LLM Wiki — persistent markdown knowledge base that compounds across sessions (Karpathy model).
remember
Review reusable project knowledge and decide what belongs in project memory, notepad, or durable docs.
memory
Persistent, token-efficient project memory. When ON, maintains a .shob/memory/ folder of structured .md files so the full context of the project is NEVER lost across responses, sessions, or context compaction. Uses progressive disclosure — routes through a lightweight INDEX and loads only the files a task needs…
deja-search
Search deja before re-deriving past work: when the user refers to earlier sessions or decisions, before debugging an error, and before implementing something that may already exist. It searches this machine's own history across every AI coding tool used on it, going back further than deja itself was installed.
general
Handle everyday conversation, answer questions, manage files, take notes, run scripts, and maintain persistent memory across sessions. Use when the user asks a general question, requests file operations, wants to brainstorm ideas, needs to-do tracking, asks you to remember something, or requests skill search and…
deja-history
Search the user's past AI coding sessions. Use when they say things like 'didn't we fix this before', 'what did we decide about X', or before re-debugging an error that may already be solved.