Audience: developers and orchestrators exploring Rosetta-powered workspaces.
Use when: "what can you do", "how do I use X", "how to develop with Rosetta", "what workflows are available", or any capability discovery question.
Provides: guides user on how to use Rosetta and its capabilities; live overview of available skills, workflows, and agents; detailed guidance on matched capabilities; seamless handoff to any discovered workflow within the same session; Consider user sees this first time, you must explain, be clear, specific, non-ambiguous, user should just be able to follow it.
When presenting capabilities to users, always show concrete slash command examples following this pattern:
/[command-name] [request in natural language]
QUICKSTART REFERENCE PATTERN — use this exact style for all examples shown to users:
/coding-flow Implement side bar on the home page, ...
/coding-flow Identify and implement fix, ...
/coding-flow Improve unit tests coverage to 85% for ...
/requirements-authoring-flow Extract detailed business and technical requirements from ... using subagents.
/modernization-flow Perform modernization phase 1 to reuse library refsrc/... using subagents.
/research-flow Investigate OAuth 2.0 implementation options for our stack
/ui-aqa-flow Create UI test automation for the checkout flow
/api-aqa-flow Automate backend API tests for TC-1234 with Swagger: https://api.example.com/swagger.json
HOW WORKFLOWS EXECUTE:
Workflows are multi-phase pipelines. The AI guides the user through each phase automatically — HITL gates pause for user review and approval at critical decisions. Users invoke the workflow once with a slash command and follow AI guidance; they do not manage phases manually.
DIRECT SKILL INVOCATION (also supported):
Skills can be invoked directly. Slash command = folder name of the skill.
Naming rule: skills/[folder-name]/SKILL.md → /[folder-name] [request]
WHAT MAKES A VALID DIRECT SKILL EXAMPLE — a valid request must have all three:
- Specific artifact or target (not "this error" or "the tests" — name the file, log, or exact thing)
- Explicit method or action (not "investigate" alone — state what to produce and how)
- Explicit scope constraint (state what NOT to do, or what the boundary is)
WORKFLOWS ARE SELF-CONTAINED — they invoke skills internally:
coding-flow handles all coding tasks and invokes debugging, testing, and other skills itself as needed. Similarly, every other workflow invokes its own skills internally. Users should never manually invoke /debugging, /testing, /coding, or similar skills for work that belongs inside a workflow — the workflow handles that automatically.
BAD examples (do NOT show these — they are wrong):
/coding Debug this error in auth.py — /coding is an IMPLEMENTATION skill invoked internally by coding-flow, not a standalone tool; and coding-flow invokes /debugging itself when needed
/debugging Investigate why payment tests fail — too vague: no specific artifact, no expected output, no constraint; and if a fix is needed afterward, this belongs in coding-flow entirely
/research Compare event sourcing vs CRUD for our order service — this IS what /research-flow is for; using the skill directly bypasses the structured research workflow; PRIORITY RULE applies
GOOD examples:
/natural-writing Rewrite the executive summary in docs/CONTEXT.md — remove AI clichés, max 4 sentences, audience is a new engineer joining the project
/debugging Read the stack trace in agents/TEMP/error.log — identify root cause only, do NOT propose fixes, report findings
DIRECT SUBAGENT INVOCATION (also supported):
Subagents can be invoked directly. Slash command = file name without .md.
Naming rule: agents/[name].md → /[name] [request]
Same rule applies — each example must specify the artifact, method, and constraints. Vague requests like "Design the auth module" or "Implement the payment service" require a full workflow, not direct subagent invocation.
GOOD examples:
/architect Question me and initialize as a loop a project-brief.md as concise dense document for business context, technical context, architecture, tech stack, etc. No coding.
/reviewer Check current git changes, understand what was changed and why, validate against AC, find gaps or possible issues according to DoD
/reviewer Validate implemented changes by actually running the code and using manual QA by AI
PRIORITY RULE — WORKFLOWS ARE PREFERRED:
When a workflow and a skill or subagent share a similar name or purpose, always recommend the WORKFLOW.
Reason: workflows provide the full structured process — discovery, specs, plan, review, HITL gates, subagent delegation, and validation — that open-ended or multi-step requests require.
Direct skill and subagent invocation is ONLY appropriate for targeted, self-contained, one-pass tasks where the user already knows exactly what they want done and it does not require phases, plan approval, or review by a separate agent.
<prerequisites phase="0", applies="ALL">
- All Rosetta prep steps MUST be FULLY completed, SKILL
load-project-context loaded and fully executed.
- MUST use todo tasks for reliability
- Phases are sequential. Orchestrator coordinates; trust skills and subagents to execute.
- Scale: conversational — output is a message, no files, no state tracking.
- List capabilities from KB with XML format:
LIST workflows
LIST skills, then LIST skills/<name> for each.
LIST agents
- Build
Capability Catalog: name, type (workflow/skill/agent), description — from frontmatter only.
- Input: user request. Output:
Capability Catalog.
- Recommended skills: any currently useful.
- Match user request against
Capability Catalog.
- For each match, load it:
READ FLOW <name>.md / READ SKILL <name> / READ SUBAGENT <name> per its type (e.g., READ FLOW coding-flow.md).
- Extract: purpose, when to use, what to expect, inputs/outputs, HITL gates.
- Input: user request +
Capability Catalog. Output: Matched Capabilities.
- Recommended skills: any currently useful.
- Synthesize
Capability Catalog and Matched Capabilities into developer-friendly guidance at 101 level.
- Brief table of all capabilities.
- Matched: what it does, when to use, what to expect, how to invoke.
- For "how to invoke": MUST follow the slash command pattern in
<invocation_guidance> — show real examples using the QUICKSTART format.
- Concrete next actions relevant to user request.
- Do not give templates => apply it yourself and give fully correct instruction
- Input:
Capability Catalog + Matched Capabilities + user request. Output: guidance message.
- USE SKILL
natural-writing for final user-facing output.
- Recommended skills:
reasoning, and any currently useful.
- HITL: present guide; ask if deeper drill-down is needed.
- Triggered when user shifts from help to action (e.g., "run that workflow", "let's do coding").
READ FLOW <selected workflow>.md if not already loaded.
- Adopt acquired workflow as active flow; start from its phase 1.
- Help-flow yields control — does not wrap the adopted workflow.
1---2name: help-flow3description: Help about Rosetta: explains capabilities and usage.4---56<help_flow>78<description_and_purpose>910Audience: developers and orchestrators exploring Rosetta-powered workspaces.11Use when: "what can you do", "how do I use X", "how to develop with Rosetta", "what workflows are available", or any capability discovery question.12Provides: guides user on how to use Rosetta and its capabilities; live overview of available skills, workflows, and agents; detailed guidance on matched capabilities; seamless handoff to any discovered workflow within the same session; Consider user sees this first time, you must explain, be clear, specific, non-ambiguous, user should just be able to follow it.1314</description_and_purpose>1516<invocation_guidance>1718When presenting capabilities to users, always show concrete slash command examples following this pattern:19`/[command-name] [request in natural language]`2021QUICKSTART REFERENCE PATTERN — use this exact style for all examples shown to users:22```23/coding-flow Implement side bar on the home page, ...24/coding-flow Identify and implement fix, ...25/coding-flow Improve unit tests coverage to 85% for ...26/requirements-authoring-flow Extract detailed business and technical requirements from ... using subagents.27/modernization-flow Perform modernization phase 1 to reuse library refsrc/... using subagents.28/research-flow Investigate OAuth 2.0 implementation options for our stack29/ui-aqa-flow Create UI test automation for the checkout flow30/api-aqa-flow Automate backend API tests for TC-1234 with Swagger: https://api.example.com/swagger.json31```3233HOW WORKFLOWS EXECUTE:34Workflows are multi-phase pipelines. The AI guides the user through each phase automatically — HITL gates pause for user review and approval at critical decisions. Users invoke the workflow once with a slash command and follow AI guidance; they do not manage phases manually.3536DIRECT SKILL INVOCATION (also supported):37Skills can be invoked directly. Slash command = folder name of the skill.38Naming rule: `skills/[folder-name]/SKILL.md` → `/[folder-name] [request]`3940WHAT MAKES A VALID DIRECT SKILL EXAMPLE — a valid request must have all three:411. Specific artifact or target (not "this error" or "the tests" — name the file, log, or exact thing)422. Explicit method or action (not "investigate" alone — state what to produce and how)433. Explicit scope constraint (state what NOT to do, or what the boundary is)4445WORKFLOWS ARE SELF-CONTAINED — they invoke skills internally:46`coding-flow` handles all coding tasks and invokes debugging, testing, and other skills itself as needed. Similarly, every other workflow invokes its own skills internally. Users should never manually invoke `/debugging`, `/testing`, `/coding`, or similar skills for work that belongs inside a workflow — the workflow handles that automatically.4748BAD examples (do NOT show these — they are wrong):49- `/coding Debug this error in auth.py` — `/coding` is an IMPLEMENTATION skill invoked internally by `coding-flow`, not a standalone tool; and `coding-flow` invokes `/debugging` itself when needed50- `/debugging Investigate why payment tests fail` — too vague: no specific artifact, no expected output, no constraint; and if a fix is needed afterward, this belongs in `coding-flow` entirely51- `/research Compare event sourcing vs CRUD for our order service` — this IS what `/research-flow` is for; using the skill directly bypasses the structured research workflow; PRIORITY RULE applies5253GOOD examples:54- `/natural-writing Rewrite the executive summary in docs/CONTEXT.md — remove AI clichés, max 4 sentences, audience is a new engineer joining the project`55- `/debugging Read the stack trace in agents/TEMP/error.log — identify root cause only, do NOT propose fixes, report findings`5657DIRECT SUBAGENT INVOCATION (also supported):58Subagents can be invoked directly. Slash command = file name without `.md`.59Naming rule: `agents/[name].md` → `/[name] [request]`6061Same rule applies — each example must specify the artifact, method, and constraints. Vague requests like "Design the auth module" or "Implement the payment service" require a full workflow, not direct subagent invocation.6263GOOD examples:64- `/architect Question me and initialize as a loop a project-brief.md as concise dense document for business context, technical context, architecture, tech stack, etc. No coding.`65- `/reviewer Check current git changes, understand what was changed and why, validate against AC, find gaps or possible issues according to DoD`66- `/reviewer Validate implemented changes by actually running the code and using manual QA by AI`6768PRIORITY RULE — WORKFLOWS ARE PREFERRED:69When a workflow and a skill or subagent share a similar name or purpose, always recommend the WORKFLOW.70Reason: workflows provide the full structured process — discovery, specs, plan, review, HITL gates, subagent delegation, and validation — that open-ended or multi-step requests require.71Direct skill and subagent invocation is ONLY appropriate for targeted, self-contained, one-pass tasks where the user already knows exactly what they want done and it does not require phases, plan approval, or review by a separate agent.7273</invocation_guidance>7475<workflow_phases>7677<prerequisites phase="0", applies="ALL">78791. All Rosetta prep steps MUST be FULLY completed, SKILL `load-project-context` loaded and fully executed.802. MUST use todo tasks for reliability813. Phases are sequential. Orchestrator coordinates; trust skills and subagents to execute.824. Scale: conversational — output is a message, no files, no state tracking.8384</prerequisites>8586<list_capabilities phase="1" subagent="discoverer" role="KB catalog lister">87881. List capabilities from KB with XML format:89 - `LIST workflows`90 - `LIST skills`, then `LIST skills/<name>` for each.91 - `LIST agents`922. Build `Capability Catalog`: name, type (workflow/skill/agent), description — from frontmatter only.933. Input: user request. Output: `Capability Catalog`.944. Recommended skills: any currently useful.9596</list_capabilities>9798<match_and_acquire phase="2" subagent="discoverer" role="Capability matcher">991001. Match user request against `Capability Catalog`.1012. For each match, load it: `READ FLOW <name>.md` / `READ SKILL <name>` / `READ SUBAGENT <name>` per its type (e.g., `READ FLOW coding-flow.md`).1023. Extract: purpose, when to use, what to expect, inputs/outputs, HITL gates.1034. Input: user request + `Capability Catalog`. Output: `Matched Capabilities`.1045. Recommended skills: any currently useful.105106</match_and_acquire>107108<guide phase="3" subagent="discoverer" role="Capability guide">1091101. Synthesize `Capability Catalog` and `Matched Capabilities` into developer-friendly guidance at 101 level.111 - Brief table of all capabilities.112 - Matched: what it does, when to use, what to expect, how to invoke.113 - For "how to invoke": MUST follow the slash command pattern in `<invocation_guidance>` — show real examples using the QUICKSTART format.114 - Concrete next actions relevant to user request.115 - Do not give templates => apply it yourself and give fully correct instruction1162. Input: `Capability Catalog` + `Matched Capabilities` + user request. Output: guidance message.1173. USE SKILL `natural-writing` for final user-facing output.1184. Recommended skills: `reasoning`, and any currently useful.1195. HITL: present guide; ask if deeper drill-down is needed.120121</guide>122123<handoff phase="4" optional="true" type="orchestrator">1241251. Triggered when user shifts from help to action (e.g., "run that workflow", "let's do coding").1262. `READ FLOW <selected workflow>.md` if not already loaded.1273. Adopt acquired workflow as active flow; start from its phase 1.1284. Help-flow yields control — does not wrap the adopted workflow.129130</handoff>131132</workflow_phases>133134<pitfalls>135- Overloading a person with deep details -> adjust depth according how narrow question is136- Showing trees instead of forest137- Mechanical answers instead of looking at those from user perspective who will use those workflow with AI executing those instructions (not user)138- Only answering -> proactively ask what is unclear, what is needed, how can you help139- Overloading with a lot of text -> use simple, clear, short sentences, < 15 words each, < 5 sentences140- Using only text -> use diagrams, use ASCII art, use colors, formatting141- Using workflows files only -> in plugins mode entire repo is cloned, use PLUGIN ROOT relative paths `../../user-guide/{README,*}.md`, `../../user-guide/scenarios/*.md`, `../../docs/web/docs/*-flow.md`142</pitfalls>143144</help_flow>