Borrowing it
Nothing to install: this file belongs to proyecto26/projectx. 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/proyecto26/projectx/develop/.agents/skills/turborepo/SKILL.mdgit clone --depth 1 https://github.com/proyecto26/projectxWrote 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/proyecto26/projectx/turborepo)<a href="https://agentmods.dev/skills/proyecto26/projectx/turborepo"><img src="https://agentmods.dev/badge/skills/proyecto26/projectx/turborepo.svg" alt="Measured on agentmods" 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.00033 | $0.01401 |
| Opus 5 | $0.00016 | $0.00700 |
| Sonnet 5 | $0.00007 | $0.00280 |
| Haiku 4.5 | $0.00003 | $0.00140 |
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 — 277 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Turborepo Monorepo Guide
Project Structure
projectx/
├── apps/ # Applications
│ ├── auth/ # NestJS auth service
│ ├── order/ # NestJS order service
│ ├── product/ # NestJS product service
│ ├── storybook/ # Component documentation
│ └── web/ # React Router frontend
├── packages/ # Shared packages
│ ├── core/ # @projectx/core - NestJS shared modules
│ ├── db/ # @projectx/db - Prisma client
│ ├── email/ # @projectx/email - Email templates
│ ├── models/ # @projectx/models - TypeScript types
│ ├── payment/ # @projectx/payment - Stripe
│ ├── ui/ # @projectx/ui - React components
│ └── workflows/ # @projectx/workflows - Temporal
├── turbo.json # Turborepo config
├── pnpm-workspace.yaml # Workspace definition
└── package.json # Root package
Turbo Configuration
// turbo.json
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "build/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["build"],
"inputs": ["src/**", "test/**"]
},
"lint": {
"dependsOn": ["^build"]
}
}
}
Common Commands
Development
# Run all apps in development
pnpm dev
# Run specific app
pnpm dev:web
pnpm dev:auth
pnpm dev:order
pnpm dev:product
# Run Storybook
pnpm storybook
Building
# Build all packages and apps
pnpm build
# Build specific targets
pnpm build:web
pnpm build:ui
pnpm build:auth
# Build with turbo filter
turbo run build --filter=web
turbo run build --filter=@projectx/ui
Testing
# Run all tests
pnpm test
# Test specific package
pnpm --filter web test
pnpm --filter @projectx/ui test
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 · 277 lines · 33 tokens per session scan A b49270fd89af
turborepo is a skill published in the GitHub repository proyecto26/projectx (83 stars, last pushed 4mo ago), licensed MIT. It adds 33 tokens to every session and 1,401 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
getting-started
Get started with your Open SaaS project — fetches docs, checks Wasp installation, and helps you start your database and app.
guided-tour
Take a guided tour of Open SaaS — walks you through step-by-step through the project structure, features, and customization checklist.
add-wasp-skills
Install Wasp agent skills (plugins) that add Wasp knowledge and best practices to your AI coding tools.
remotion-bits
Animation components and utilities for Remotion video projects. Use when building Remotion compositions with text animations, gradient transitions, particle effects, 3D scenes, or staggered motion effects. Provides example bits (complete compositions) and reusable components that can be installed via jsrepo.
remotion-animation
Generates animation configurations for Remotion including spring configs, interpolations, easing functions, and timing logic. Focuses ONLY on animation parameters, NOT component implementation. Use when defining animation behavior or when asked to "configure animations", "setup spring configs", "define easing curves".
modern-short-video
Create modern product launch/pitch videos using Remotion. Use when creating app promo videos, SaaS launch videos, product demos, or startup pitch videos.