Customise Workflow (prd-taskmaster)
An AI-led interview that writes and validates the prd-taskmaster plugin config at .atlas-ai/config/atlas.json so you never hand-edit JSON.
AutomationIntermediate★ 587⑂ 58AI score 7/10Last updated: Aug 14, 2026
What it does
- Replaces manual JSON editing: the AI asks curated questions one at a time and turns plain-English answers into config keys.
- Follows a fixed
LOAD → ASK → VALIDATE → WRITE → VERIFYloop, runningvalidate-answeron every response before anything is written. - Stores per-project preferences in
.atlas-ai/config/atlas.json: provider/model trio (main, research, fallback), validation strictness and minimum passing grade, default execution mode, template, autonomous flags, phase gates, andtoken_economyused for model-tier routing. - Power-user needs beyond the questionnaire are routed to
.atlas-ai/customizations/(templates, prompts, gates), which this skill never overwrites.
Who it's for
- Existing users of the
prd-taskmaster/ Atlas plugin who re-pick the same options on every run. - Teams standardising provider choice and PRD quality thresholds per repository.
- Anyone who would rather answer questions than memorise a config schema.
Example uses
- Say "customise workflow" and get walked through provider, validation strictness, and execution mode, ending with a written config.
- Say "make PRD validation lenient" and only that key is re-asked, re-validated, and rewritten idempotently.
- Run
show-configto review current settings, orreset-configto drop back to documented defaults.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/anombyte93/prd-taskmaster/HEAD/skills/customise-workflow/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/customise-workflow folder from the GitHub repo anombyte93/prd-taskmaster into my ~/.claude/skills/customise-workflow/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/anombyte93/prd-taskmaster.git /tmp/prd-taskmaster && mkdir -p ~/.claude/skills && cp -r /tmp/prd-taskmaster/skills/customise-workflow ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and clone the repo:
git clone https://github.com/anombyte93/prd-taskmaster.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill in:
cp -r prd-taskmaster/skills/customise-workflow ~/.claude/skills/ - Confirm Python 3 is available with
python3 --version(the bundled script.py needs it). - Install the main
prd-taskmasterplugin too — this is a companion skill and the phase skills are what read the config. - Launch Claude Code inside your project directory and type "customise workflow", then answer each question.
- Verify that
.atlas-ai/config/atlas.jsonwas created in the project.
View source on GitHub ↗License: MIT