monorepo-agent-setup

monorepo-agent-setup is a skill for Claude Code from louisbrulenaudet/monorepo-template. It costs 76 tokens per session (2,321 once invoked), scanned B, original, Apache-2.0.

Rules for organizing coding-agent settings for Cursor and Claude Code in this monorepo. They define where instructions, path-specific rules, hooks, subagents, skills, and application guides belong, and how the two setups stay synchronized.

In plain words
What is it for?
Use it when editing agent configuration, rules, hooks, skills, MCP connections, subagents, slash commands, or the shared Cursor and Claude setup.
Why use it?
It prevents agent instructions from being placed in the wrong location or becoming inconsistent between tools. That makes project-specific behavior easier to maintain and debug.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions subagents.

Good fit Use it when editing agent configuration, rules, hooks, skills, MCP connections, subagents, slash commands, or the shared Cursor and Claude setup.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/louisbrulenaudet/monorepo-template/monorepo-agent-setup
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.

Any agent
npx skills add louisbrulenaudet/monorepo-template --skill monorepo-agent-setup
Clone the repo
git clone --depth 1 https://github.com/louisbrulenaudet/monorepo-template

Made for: Claude Code.

Wrote 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.

agentmods badge for monorepo-agent-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/louisbrulenaudet/monorepo-template/monorepo-agent-setup/github.svg)](https://agentmods.dev/skills/louisbrulenaudet/monorepo-template/monorepo-agent-setup)
Your own site
<a href="https://agentmods.dev/skills/louisbrulenaudet/monorepo-template/monorepo-agent-setup"><img src="https://agentmods.dev/badge/skills/louisbrulenaudet/monorepo-template/monorepo-agent-setup/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.

agentmods 80×15 button for monorepo-agent-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/louisbrulenaudet/monorepo-template/monorepo-agent-setup"><img src="https://agentmods.dev/badge/skills/louisbrulenaudet/monorepo-template/monorepo-agent-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,321 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00076 $0.02321
Opus 5 $0.00038 $0.01161
Sonnet 5 $0.00015 $0.00464
Haiku 4.5 $0.00008 $0.00232

Measured 11d ago against content hash a268eba8c6c2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade B, and why

monorepo-agent-setup scanned grade B with 1 finding 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

| Hooks wiring | [`.claude/settings.json`](../../../.claude/settings.json) | [`.cursor/hooks.json`](../../../.cursor/hooks.json) |
.agents/skills/monorepo-agent-setup/SKILL.md · 101 lines

How it starts

The opening of the file, as written. The whole thing — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Monorepo agent setup

Canonical layout and sync policy for Cursor and Claude Code in this repo.

Memory layout

Layer Claude Code Cursor
Global instructions CLAUDE.md (@AGENTS.md) AGENTS.md
Path-scoped rules .claude/rules/ (*.md) .cursor/rules/ (*.mdc)
Hooks wiring .claude/settings.json .cursor/hooks.json
Hook scripts hooks/ (shared) hooks/ (shared)
Subagents .claude/agents/ .cursor/agents/
Review workflows Skills under .agents/skills/review* (symlink) Same skills under .agents/skills/review*
Dependency-scoped reviews /review-<dep> skills under .agents/skills/review-<dep>/ (symlink) - one per dev dependency (claude-code, cursor, vite, oxc, typescript, turborepo, pnpm, wrangler, hono, tailwind, vitest, tanstack-router, tanstack-query, react, zod, knip, syncpack) Same
Deep skills Symlinks → .agents/skills/ .agents/skills/ (source of truth)
Nested app guides CLAUDE.md per app/package AGENTS.md per app/package
  • Claude: nested CLAUDE.md loads on demand; debug with tail -f hooks/logs/instructions-loaded.log.
  • Cursor: nested AGENTS.md by directory; .mdc rules attach via globs / alwaysApply. Debug: Customize → Hooks.
  • Rule folders (core, frontend, backend, contracts, quality, tests, ops) organize only; scoping is frontmatter (paths vs globs/alwaysApply).
  • Vite config rule: .claude/rules/frontend/vite-config.md.cursor/rules/frontend/vite-config.mdc - apps/front-*/vite.config.ts only.
  • Tailwind rule: .claude/rules/frontend/tailwind.md.cursor/rules/frontend/tailwind.mdc - apps/front-*/src/**/*.{ts,tsx,css}, apps/front-*/index.html.
  • Ports rule: .claude/rules/backend/ports.md.cursor/rules/backend/ports.mdc - wrangler.jsonc, app package.json, front-*/vite.config.ts.
  • TSConfig rule: .claude/rules/quality/typescript-config.md.cursor/rules/quality/typescript-config.mdc - packages/typescript-config/**, **/tsconfig*.json.
  • Vitest shared-config rule: .claude/rules/quality/vitest-config.md.cursor/rules/quality/vitest-config.mdc - packages/vitest-config/**.
  • Turbo rule: .claude/rules/core/turborepo.md.cursor/rules/core/turborepo.mdc - **/turbo.json, .github/workflows/**.

Read the full file on GitHub · 101 lines

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. 11d ago First seen · 101 lines · 76 tokens per session scan B a268eba8c6c2

Subscribe to this mod's changes

monorepo-agent-setup is a skill published in the GitHub repository louisbrulenaudet/monorepo-template (19 stars, last pushed 10d ago), licensed Apache-2.0. It adds 76 tokens to every session and 2,321 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

gsap-scrolltrigger

Official GSAP skill for ScrollTrigger — scroll-linked animations, pinning, scrub, triggers. Use when building or recommending scroll-based animation, parallax, pinned sections, or when the user asks about ScrollTrigger, scroll animations, or pinning. Recommend GSAP for scroll-driven animation when no library is…

calesthio/OpenMontage · 68 tokens

gsap-core

Official GSAP skill for the core API — gsap.to(), from(), fromTo(), easing, duration, stagger, defaults, gsap.matchMedia() (responsive, prefers-reduced-motion). Use when the user asks for a JavaScript animation library, animation in React/Vue/vanilla, GSAP tweens, easing, basic animation, responsive or reduced-motion…

calesthio/OpenMontage · 128 tokens

threejs-geometry

Three.js geometry creation - built-in shapes, BufferGeometry, custom geometry, instancing. Use when creating 3D shapes, working with vertices, building custom meshes, or optimizing with instanced rendering.

calesthio/OpenMontage · 46 tokens

threejs-interaction

Three.js interaction - raycasting, controls, mouse/touch input, object selection. Use when handling user input, implementing click detection, adding camera controls, or creating interactive 3D experiences.

calesthio/OpenMontage · 44 tokens

playwright-recording

Record browser interactions as video using Playwright. Use for capturing demo videos, app walkthroughs, and UI flows for Remotion videos. Triggers include recording a demo, capturing browser video, screen recording a website, or creating walkthrough footage.

calesthio/OpenMontage · 53 tokens

seedance-2-5

Generate 4-30 second cinematic video with ByteDance Seedance 2.5 through fal.ai, Volcengine Ark, Runway, or ComfyUI Partner Nodes. Use for long single generations, synchronized audio, and large multimodal reference sets (up to 30 images, 10 videos, and 10 audio clips). Also covers the 2.5 prompt contract: section…

calesthio/OpenMontage · 117 tokens