monorepo-and-tooling

monorepo-and-tooling is a skill for Claude Code from martian56/claude-engineer. It costs 56 tokens per session (546 once invoked), scanned A, original, MIT.

A setup guide for a monorepo, which keeps multiple applications and shared packages in one code repository, using JavaScript and Python together. It defines workspace layouts, shared code, and task-running tools.

In plain words
What is it for?
Use it when starting a project or adding an app, package, or service that needs shared UI, types, configuration, dependencies, and coordinated tasks.
Why use it?
It avoids duplicated code and inconsistent commands when a project contains several apps, services, or languages.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the claude-engineer plugin — 13 skills, 1 command, 2 agents, 3 hooks shipped together

Good fit Use it when starting a project or adding an app, package, or service that needs shared UI, types, configuration, dependencies, and coordinated tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/martian56/claude-engineer/monorepo-and-tooling
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 martian56/claude-engineer --skill monorepo-and-tooling
Clone the repo
git clone --depth 1 https://github.com/martian56/claude-engineer

Made for: Claude Code.

Or install claude-engineer, the plugin that ships this one along with the rest of its 13 skills, 1 command, 2 agents, 3 hooks.

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-and-tooling

README.md
[![agentmods](https://agentmods.dev/badge/skills/martian56/claude-engineer/monorepo-and-tooling/github.svg)](https://agentmods.dev/skills/martian56/claude-engineer/monorepo-and-tooling)
Your own site
<a href="https://agentmods.dev/skills/martian56/claude-engineer/monorepo-and-tooling"><img src="https://agentmods.dev/badge/skills/martian56/claude-engineer/monorepo-and-tooling/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-and-tooling

Your own site · 80×15
<a href="https://agentmods.dev/skills/martian56/claude-engineer/monorepo-and-tooling"><img src="https://agentmods.dev/badge/skills/martian56/claude-engineer/monorepo-and-tooling.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 546 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00056 $0.00546
Opus 5 $0.00028 $0.00273
Sonnet 5 $0.00011 $0.00109
Haiku 4.5 $0.00006 $0.00055

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

Security

Grade A, and why

monorepo-and-tooling 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.

plugins/claude-engineer/skills/monorepo-and-tooling/SKILL.md · 33 lines

What it actually says

Monorepo & Tooling

Announce at start: "I'm using claude-engineer:monorepo-and-tooling to lay out the polyglot monorepo."

The layout (always a monorepo)

One repo, two dependency graphs side by side:

  • JS side - apps/* (React/Next frontends) + packages/* (ui, config, eslint-config, tsconfig), managed by pnpm (default) or Bun workspaces + Turborepo for caching/task orchestration.
  • Python side - services/* (FastAPI) + libs/* (shared libs) as uv workspace members sharing one uv.lock.
  • Bridge - give each Python service a thin package.json whose scripts shell out to uv, so Turborepo is the single task vocabulary across both languages.

Defaults & decisions

  • JS package manager: ask per project (Bun vs pnpm). Default pnpm for stability unless the user prefers Bun.
  • Shared packages/ui holds the design-system components; packages/config holds Tailwind/token config.
  • Root config: turbo.json, pnpm-workspace.yaml (or Bun workspaces), pyproject.toml (uv workspace), root tsconfig/eslint base.

Non-negotiables

  1. Shared code is a package, not copy-paste - design tokens, UI, types, configs live once and are imported.
  2. Tasks run through Turborepo (dev, build, lint, typecheck, test) for caching and one vocabulary.
  3. App runs native; services in Docker (claude-engineer:docker-dev-environment).

Full detail (concrete directory tree, root config files, workspace wiring, pnpm-vs-Bun trade-offs): read references/polyglot-monorepo.md on demand.

Red flags - STOP

  • Duplicated component/token/type code across apps → extract to a packages/*.
  • Running tasks ad-hoc per app instead of through Turborepo.
  • A single-language repo when the project will clearly have both a frontend and a FastAPI backend.
Files

What ships with it

1 file 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.

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 · 33 lines · 56 tokens per session scan A 8ed6091bfc24

Subscribe to this mod's changes

monorepo-and-tooling is a skill published in the GitHub repository martian56/claude-engineer (2 stars, last pushed 2mo ago), licensed MIT. It adds 56 tokens to every session and 546 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-08-31.