Borrowing it
Nothing to install: this file belongs to lukaisailovic/openislands. 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/lukaisailovic/openislands/main/.agents/skills/turborepo/SKILL.mdgit clone --depth 1 https://github.com/lukaisailovic/openislandsWrote 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/lukaisailovic/openislands/turborepo)<a href="https://agentmods.dev/skills/lukaisailovic/openislands/turborepo"><img src="https://agentmods.dev/badge/skills/lukaisailovic/openislands/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/lukaisailovic/openislands/turborepo"><img src="https://agentmods.dev/badge/skills/lukaisailovic/openislands/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.00111 | $0.06782 |
| Opus 5 | $0.00056 | $0.03391 |
| Sonnet 5 | $0.00022 | $0.01356 |
| Haiku 4.5 | $0.00011 | $0.00678 |
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 11d 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.
This is a copy
92% identical to turborepo — 14 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 952 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 dependency graph.
IMPORTANT: Package Tasks, Not Root Tasks
Prefer package tasks over Root Tasks.
When creating tasks/scripts/pipelines, you MUST default to package tasks:
- Add the script to each relevant package's
package.json - Register the task in root
turbo.json - Root
package.jsononly delegates viaturbo run <task>
DO NOT put task logic in root package.json when it can live in packages. This defeats Turborepo's parallelization.
// DO THIS: Scripts in each package
// apps/web/package.json
{ "scripts": { "build": "next build", "lint": "eslint .", "test": "vitest" } }
// apps/api/package.json
{ "scripts": { "build": "tsc", "lint": "eslint .", "test": "vitest" } }
// packages/ui/package.json
{ "scripts": { "build": "tsc", "lint": "eslint .", "test": "vitest" } }
// turbo.json - register tasks
{
"tasks": {
"build": { "dependsOn": ["^build"], "outputs": ["dist/**"] },
"lint": {},
"test": { "dependsOn": ["build"] }
}
}
// Root package.json - ONLY delegates, no task logic
{
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test"
}
}
// DO NOT DO THIS - defeats parallelization
// Root package.json
{
"scripts": {
"build": "cd apps/web && next build && cd ../api && tsc",
"lint": "eslint apps/ packages/",
"test": "vitest"
}
}
Root Tasks (//#taskname) are ONLY for tasks that truly cannot exist in packages, such as Vitest Projects' //#test, repo-wide release scripts, or tooling that does not invoke turbo itself.
Secondary Rule: turbo run vs turbo
Always use turbo run when the command is written into code:
// package.json - ALWAYS "turbo run"
{
"scripts": {
"build": "turbo run build"
}
}
# CI workflows - ALWAYS "turbo run"
- run: turbo run build --affected
What ships with it
25 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.7 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/RULE.md 1.9 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/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.1 KB
- references/configuration/RULE.md 4.9 KB
- references/configuration/tasks.md 6.8 KB
- references/environment/gotchas.md 4.0 KB
- references/environment/modes.md 2.4 KB
- references/environment/RULE.md 2.5 KB
- references/filtering/patterns.md 2.4 KB
- references/filtering/RULE.md 4.1 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.
- 11d ago First seen · 952 lines · 111 tokens per session scan A b45e2d953996
turborepo is a skill published in the GitHub repository lukaisailovic/openislands (21 stars, last pushed 1mo ago), licensed MIT. It adds 111 tokens to every session and 6,782 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. It is 92% identical to turborepo, differing in 14 lines, and is treated as a copy.
Other skills, from other repositories
agent-figure-gallery
Query visual scientific figure references, show candidates for human preference selection, export selected reference bundles, and guide plotting agents from human-selected visual examples to code action.
business-intelligence-expert
Build comprehensive business intelligence solutions including data warehouses, ETL pipelines, interactive dashboards, and analytical reporting systems. Use when the user mentions BI, data warehousing, star or snowflake schemas, OLAP cubes, ETL/ELT pipelines, dashboards, KPIs, or analytical reporting.
origin-plotting
A guide to using Origin, a scientific graphing and analysis application, through connected tools. It covers writing data, making charts, formatting them, and viewing the results.
ci-cd-pipeline
Design and implement CI/CD pipelines for automated testing and deployment.
repo-scaffold
Initialize GitHub repositories with standard files and configuration. Generates LICENSE, CONTRIBUTING.md, SECURITY.md, issue/PR templates, CI config, and .gitignore. Detects project type and adapts templates accordingly.
github-pr-workflow
GitHub PR yaşam döngüsü — branch, commit, aç, CI izle, merge et.