atelier-orchestrator
Skill routing and workflow orchestration. Selects Inline Plan or Spec-backed Plan, routes to the correct workflow skill, and manages transitions between…
Configure a repository for Atelier's development workflow. Use only when explicitly invoked; inspect existing guidance, issue-tracker and domain-document conventions, preview the proposed configuration, and write only after approval. It does not install Atelier or initialize
$ npx -y skills add martinffx/atelier --skill atelier-setup --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/atelier-setupContext preview
The summary Claude sees to decide when to auto-load this skill.
Configure a repository for Atelier's development workflow. Use only when explicitly invoked; inspect existing guidance, issue-tracker and domain-document conventions, preview the proposed configuration, and write only after approval. It does not install Atelier or initialize
name: atelier-setup description: Configure a repository for Atelier's development workflow. Use only when explicitly invoked; inspect existing guidance, issue-tracker and domain-document conventions, preview the proposed configuration, and write only after approval. It does not install Atelier or initialize external tooling. user-invocable: true disable-model-invocation: true
Set up repository guidance that Atelier skills need without taking ownership of the developer's installation, harness configuration, or project structure. Explore first, present every proposed edit exactly, and write only after the developer approves it.
Read the repository before proposing any change:
heading.
directories, and project guidance.
with their own source directories.
Do not create, install, configure, or modify anything during exploration.
Summarize what exists and recommend a domain-document layout:
decisions belong in root `docs/adr/`.
contexts. `CONTEXT-MAP.md` belongs at the root and points to each context's `CONTEXT.md` and `docs/adr/` directory.
Explain that domain documents remain lazy: do not create `CONTEXT.md`, `CONTEXT-MAP.md`, or an ADR directory until another Atelier skill has resolved terminology or made a decision worth recording.
Select or confirm the issue tracker:
1. If `docs/agents/issue-tracker.md` already defines one, preserve it unless the developer asks to change it. 2. Otherwise recommend the tracker indicated by existing repository practice, then ask the developer to confirm or describe their tracker. 3. Accept GitHub, GitLab, local Markdown, another tracker described by the developer, or `none`. 4. Record the chosen workflow in `docs/agents/issue-tracker.md`; do not install, initialize, or create external tracker resources.
Select the instruction file to edit:
1. If both files exist, ask which file should own the agent guidance; do not duplicate it. 2. Otherwise use root `AGENTS.md` when it exists. 3. Otherwise use root `CLAUDE.md` when it exists. 4. If neither exists, ask which instruction file to create; do not choose on the developer's behalf.
Show the developer the selected file, domain layout, and exact contents for:
Stop and wait for explicit approval.
Add the following block to the selected instruction file:
## Agent skills ### Planning and implementation Use `atelier-orchestrator` at the start of development work. It selects an Inline Plan for bounded changes or a Spec-backed Plan when durable design and coordination artifacts are warranted. ### Issue tracking Read `docs/agents/issue-tracker.md` when issue tracking is relevant. It defines this repository's tracker workflow; `plan.json` remains authoritative for Spec-backed task details and dependencies. ### Domain documentation Read `docs/agents/domain.md` before working in a domain area. It defines how to locate and use this repository's context documents and ADRs.
If an `## Agent skills` section already exists, update the `### Planning and implementation`, `### Issue tracking`, and `### Domain documentation` subsections in place rather than appending duplicates. Preserve other subsections and all content outside the section, including user edits.
Create `docs/agents/` when needed, then write the approved tracker and domain documents. Do not create any other files or directories.
State which instruction file and agent documents changed, the selected tracker, and the chosen domain-document layout. Remind the developer that the layout is a convention only: the first domain-modelling or architectural-decision task creates the relevant documents when it has substantive content.
A personal development toolkit for AI agents. It covers spec-driven development, code quality, and deep thinking. Atelier gives coding agents a disciplined way to move from an idea to reviewed, verified code without taking control away from the developer.
Repo: martinffx/atelier
Skill routing and workflow orchestration. Selects Inline Plan or Spec-backed Plan, routes to the correct workflow skill, and manages transitions between…
Generate and validate conventional commit messages following the conventionalcommits.org spec. Use whenever the user wants to commit code, mentions commit…
Compact the current conversation into a handoff document for another agent to pick up.
Manage GitHub pull requests or GitLab merge requests: create, read/leave/respond to comments, and merge. Triggers on "open a PR", "make a PR", "merge this PR",…
Multi-agent code review with parallel specialized reviewers, architecture validation, challenge validation, and durable handling of previously decided…
Implementation subagent dispatch patterns. Use when independent implementation work is available and subagents can execute it. Covers parallel dispatch,…