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 agentmods add skills/big-emotion/agent-atelier/setupnpx skills add big-emotion/agent-atelier --skill setupgit clone --depth 1 https://github.com/big-emotion/agent-atelierWrote 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/big-emotion/agent-atelier/setup)<a href="https://agentmods.dev/skills/big-emotion/agent-atelier/setup"><img src="https://agentmods.dev/badge/skills/big-emotion/agent-atelier/setup.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 | $0.00125 | $0.01932 |
| Opus 5 | $0.00063 | $0.00966 |
| Sonnet 5 | $0.00025 | $0.00386 |
| Haiku 4.5 | $0.00013 | $0.00193 |
Grade A, and why
setup 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 4d 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 — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Big Emotion Project Setup
Every Big Emotion project ships the same toolset. This skill installs it, module by module, on any repo — or audits an existing repo against it. The full rationale lives in SPEC.md at the root of the agent-atelier repository.
| Module | What | Reference |
|---|---|---|
| M1 | CI quality gates (gitleaks, lint, typecheck, format, test, build) | references/m1-ci.md |
| M2 | Husky hooks (pre-commit → lint-staged, commit-msg → commitlint) | references/m2-hooks.md |
| M3 | Project skills <slug>-{release,audit,spec,ticket,bootstrap-confluence} |
references/m3-skills.md |
| M4 | Atlassian wiring (Jira board, Confluence spec tree, config) | references/m4-atlassian.md |
| M5 | Ferry (router model, claude-code path) | references/m5-ferry.md |
| M6 | Branch & release model (develop/main, tag v* → deploy) |
references/m6-branch-release.md |
| M7 | Infrastructure & secrets (OVH VPS + Traefik, Azure variant, M365 mail, secrets doctrine) | references/m7-infra.md |
Reference paths above are relative to ${CLAUDE_PLUGIN_ROOT}/skills/setup/. Templates live in ${CLAUDE_PLUGIN_ROOT}/skills/setup/templates/; the placeholder registry is templates/params.json.
Operating rules
- Never write before the plan is confirmed. Steps 1–3 are read-only; a single explicit confirmation covers the whole install plan.
- Idempotent. On a compliant repo, report "compliant" and change nothing. Never overwrite a project's existing customization of a module without flagging it as drift and asking.
- Modules are independent. Install only what the user selected; missing prerequisites between modules (M5 needs M4's board; M3's spec skill needs M4's config) are declared in the plan, not silently added.
- Everything written is in English (code, comments, docs). User-facing trigger phrases inside skills may stay French.
- Adapt, don't force. Templates ship in pnpm/TypeScript form; adapt commands to the interview answers (package manager, toolchain layout, no-TS repos) per each module's reference doc.
- Secret names, never values. The skill documents where every secret lives, what it is called, and how to obtain it — it never writes, echoes, or stores a secret value (not in rendered files, not in conversation output, not in this plugin). Values are entered by a human directly at their destination (GitHub secret, VPS
.env, provider portal). This plugin is public and ships no infrastructure coordinates — no hostnames, IPs, SSH ports, account handles or resource names. Collect them from the user at interview time and never write them back into the plugin.
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.
- references/m1-ci.md 7.7 KB
- references/m2-hooks.md 4.8 KB
- references/m3-skills.md 8.4 KB
- references/m4-atlassian.md 8.1 KB
- references/m5-ferry.md 16 KB
- references/m6-branch-release.md 5.0 KB
- references/m7-infra.md 14 KB
- templates/m1-ci/approve-agent-ci.yml 4.0 KB
- templates/m1-ci/ci.yml 3.6 KB
- templates/m1-ci/claude.yml 2.0 KB
- templates/m1-ci/gitleaks.toml 1.7 KB
- templates/m2-hooks/commit-msg 33 B
- templates/m2-hooks/commitlint.config.mjs 353 B runs code
- templates/m2-hooks/editorconfig 188 B
- templates/m2-hooks/lint-staged.config.mjs 345 B runs code
- templates/m2-hooks/pre-commit 22 B
- templates/m2-hooks/prettierrc.json 107 B
- templates/m3-skills/audit.SKILL.md 11 KB
- templates/m3-skills/bootstrap-confluence.SKILL.md 14 KB
- templates/m3-skills/release.SKILL.md 11 KB
- templates/m3-skills/spec.SKILL.md 23 KB
- templates/m3-skills/ticket.SKILL.md 14 KB
- templates/m4-atlassian/confluence-spec-config.json 848 B
- templates/m4-atlassian/jira-ticket-template.md 2.8 KB
- templates/m5-ferry/ferry.config.json 788 B
- templates/m5-ferry/ferry.local.yml 2.0 KB
- templates/m5-ferry/jira-automation-rule.md 5.1 KB
- templates/m5-ferry/prompts-local-overlay-example.md 4.6 KB
- templates/m6-release/deploy-production.yml 3.6 KB
- templates/m7-infra/docker-compose.deploy.yml 2.8 KB
- templates/m7-infra/dockerfile.next 1.6 KB
- templates/m7-infra/env.template 1.7 KB
- templates/params.json 2.8 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.
- 4d ago First seen · 83 lines · 125 tokens per session scan A 50a9e9b96ecd
setup is a skill published in the GitHub repository big-emotion/agent-atelier (2 stars, last pushed 1mo ago), licensed MIT. It adds 125 tokens to every session and 1,932 once invoked, about $0.0006 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.
Other skills, from other repositories
setup-pipeline
Sets up a Power Platform Pipeline for automated Power Pages deployments. Power Platform Pipelines is Microsoft's native CI/CD tool built into the Power Platform — no external infrastructure required. Use when asked to: "set up ci/cd", "create pipeline", "setup pipeline", "set up power platform pipelines", "create…
configure-env-variables
Configures environment variables for Power Pages site settings to support ALM across environments. Creates environment variable definitions in Dataverse, guides the user through linking site settings to those variables via the Power Pages Management app, adds the variables to the solution, and generates a…
add-azuredevops
Adds Azure DevOps connector to a Power Apps code app. Use when querying work items, creating bugs, managing pipelines, or making ADO API calls.
pr-watch
Local PR watcher. Monitors CI status, automatically fixes failing checks by reading failure logs and applying targeted fixes, then optionally merges when all checks pass. Local CLI analog to Claude Code's cloud auto-fix feature.
push-ci
Push to remote and monitor CI. Validates branch safety, executes git push WITH explicit user approval, then monitors CI run status via gh CLI. Use when: user says 'push', 'push and watch CI', 'ship it', 'push-ci'. Not for: committing (use /smart-commit), creating PRs (use /create-pr), merging (use /merge-prep).
cloudflare-workers-ci-cd
Complete CI/CD guide for Cloudflare Workers using GitHub Actions and GitLab CI. Use for automated testing, deployment pipelines, preview environments, secrets management, or encountering deployment failures, workflow errors, environment configuration issues.