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 skills add HigorAlves/orc --skill turborepogit clone --depth 1 https://github.com/HigorAlves/orcWrote 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/higoralves/orc/turborepo)<a href="https://agentmods.dev/skills/higoralves/orc/turborepo"><img src="https://agentmods.dev/badge/skills/higoralves/orc/turborepo/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.
<a href="https://agentmods.dev/skills/higoralves/orc/turborepo"><img src="https://agentmods.dev/badge/skills/higoralves/orc/turborepo.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00056 | $0.01471 |
| Opus 5 | $0.00028 | $0.00736 |
| Sonnet 5 | $0.00011 | $0.00294 |
| Haiku 4.5 | $0.00006 | $0.00147 |
Grade A, and why
turborepo 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 7d 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 — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Turborepo Skill
Build system for JavaScript/TypeScript monorepos. Turborepo caches task outputs and runs tasks in parallel based on the dependency graph.
This SKILL.md is an index. When you need the detail for a topic, Read the matching references/<topic>.md file — don't work from memory.
When to use
Use when the user: configures tasks/workflows/pipelines, creates packages, sets up a monorepo, shares code between apps, runs changed/affected packages, debugs the cache, sets up CI, enforces package boundaries, or is working in a repo with apps//packages/ directories or a turbo.json.
Two rules that always apply
- Package tasks, not Root Tasks. Put task logic (scripts) in each package's
package.json, register the task in rootturbo.json, and let rootpackage.jsononly delegate viaturbo run <task>. Root Tasks (//#taskname) are a rare exception. See references/tasks-pipeline.md. turbo run, notturbo, in code. Always writeturbo run <task>in package.json scripts and CI. The bareturbo <task>shorthand is only for one-off interactive terminal use. See references/tasks-pipeline.md.
Decision tree → which reference to read
What are you doing?
├─ Configuring a task / pipeline (dependsOn, outputs, transit nodes, dev/watch) → tasks-pipeline.md
├─ Cache not working / wrong cache hits / debugging hashes → caching.md
├─ Sharing cache across machines / CI → remote-cache.md
├─ Running only changed packages / --filter / --affected → filtering.md
├─ Setting up CI (GitHub Actions, Vercel, turbo-ignore) → ci.md
├─ Env vars not available / wrong cache from env / .env files → env-vars.md
├─ Creating a package / structuring the monorepo / dependencies → packages.md
└─ Enforcing import/architectural boundaries → boundaries.md
Topic index
What ships with it
33 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.
- command/turborepo.md 2.5 KB
- references/best-practices/dependencies.md 4.2 KB
- references/best-practices/packages.md 6.1 KB
- references/best-practices/RULE.md 4.8 KB
- references/best-practices/structure.md 5.4 KB
- references/boundaries.md 923 B
- references/boundaries/RULE.md 1.9 KB
- references/caching.md 2.8 KB
- references/caching/gotchas.md 3.8 KB
- references/caching/remote-cache.md 2.5 KB
- references/caching/RULE.md 4.1 KB
- references/ci.md 1.6 KB
- references/ci/github-actions.md 2.7 KB
- references/ci/patterns.md 2.5 KB
- references/ci/RULE.md 2.1 KB
- references/ci/vercel.md 2.1 KB
- references/cli/commands.md 5.4 KB
- references/cli/RULE.md 2.1 KB
- references/configuration/global-options.md 7.0 KB
- references/configuration/gotchas.md 9.0 KB
- references/configuration/RULE.md 4.9 KB
- references/configuration/tasks.md 6.8 KB
- references/env-vars.md 2.7 KB
- references/environment/gotchas.md 4.0 KB
- references/environment/modes.md 2.4 KB
- references/environment/RULE.md 2.5 KB
- references/filtering.md 1.3 KB
- references/filtering/patterns.md 2.4 KB
- references/filtering/RULE.md 4.1 KB
- references/packages.md 2.6 KB
- references/remote-cache.md 938 B
- references/tasks-pipeline.md 13 KB
- references/watch/RULE.md 1.9 KB
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.
- 7d ago First seen · 70 lines · 56 tokens per session scan A 7ea2548131bc
turborepo is a skill published in the GitHub repository HigorAlves/orc (6 stars, last pushed 14d ago), licensed MIT. It adds 56 tokens to every session and 1,471 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.
Other skills, from other repositories
scaffold-cli
Scaffolds a TypeScript CLI and npm package with the house toolchain, dual tsdown outputs, CLI contracts, changesets, and publishing templates. Use when asked to "scaffold a CLI" or "start an npm package". For an existing package release use autoship; for existing API ergonomics use dx-audit.
ui5-typescript-conversion
A skill for converting UI5 (SAPUI5/OpenUI5) projects to TypeScript.
scaffold-node
Scaffold a complete Node/TypeScript project with CI/CD, release pipeline, sr.yaml, .envrc, and standard files. Uses pnpm and biome. Loads on top of scaffold-project (run that first for cross-language standard files). Use when creating a new Node.js app, TypeScript library, or website, or when the user mentions "new…
dependency-maintenance
Dependency maintenance. Use when adding, moving, or upgrading dependencies, changing pnpm or JavaScript runtimes, updating TypeScript or build/test tools, or changing native-build policy, patches, or test images.
bootstrap-ts-oss
Bootstrap a new TypeScript open-source npm package with Bun, tsup, Biome, Husky, GitHub Actions CI/CD, and dual ESM/CJS publishing. Use when the user wants to create, scaffold, initialize, set up, or bootstrap a new TypeScript library, npm package, or open-source project.
pn-godot-dev
Guides Godot Engine 4.x development: GDScript, GDExtension (C++), multiplayer, VisualShader/shader code, export/platform config, autoloads, Resource serialization, InputMap, headless CI, AnimationPlayer/Tree, 2D/3D workflows, physics, PCG, and Blender pipeline. Use when developing Godot 4.x projects.