@massa-ai/cursor-plugin 1.33.0 → 1.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/.cursor-plugin/plugin.json +1 -1
  2. package/README.md +2 -0
  3. package/install.sh +8 -6
  4. package/package.json +1 -1
  5. package/skills/adr/SKILL.md +14 -0
  6. package/skills/architecture-audit/SKILL.md +14 -0
  7. package/skills/architecture-fix/SKILL.md +14 -0
  8. package/skills/bugs-audit/SKILL.md +14 -0
  9. package/skills/bugs-fix/SKILL.md +14 -0
  10. package/skills/code-quality-audit/SKILL.md +14 -0
  11. package/skills/code-quality-fix/SKILL.md +14 -0
  12. package/skills/commit/SKILL.md +14 -0
  13. package/skills/debug/SKILL.md +14 -0
  14. package/skills/design/SKILL.md +14 -0
  15. package/skills/discovery/SKILL.md +14 -0
  16. package/skills/exploration/SKILL.md +14 -0
  17. package/skills/feature/SKILL.md +14 -0
  18. package/skills/furps-refinement/SKILL.md +14 -0
  19. package/skills/general/SKILL.md +14 -0
  20. package/skills/implementation-audit/SKILL.md +14 -0
  21. package/skills/implementation-fix/SKILL.md +14 -0
  22. package/skills/judge-with-debate/SKILL.md +14 -0
  23. package/skills/long-session/SKILL.md +14 -0
  24. package/skills/maestro/SKILL.md +14 -0
  25. package/skills/maestro-audit/SKILL.md +14 -0
  26. package/skills/maestro-fix/SKILL.md +14 -0
  27. package/skills/massa-ai/references/implementation-delivery.md +9 -0
  28. package/skills/massa-ai/workflows/architecture/architecture-fix.md +2 -0
  29. package/skills/massa-ai/workflows/bugs/bugs-fix.md +2 -0
  30. package/skills/massa-ai/workflows/code-quality/code-quality-fix.md +2 -0
  31. package/skills/massa-ai/workflows/debug.md +2 -0
  32. package/skills/massa-ai/workflows/design.md +2 -0
  33. package/skills/massa-ai/workflows/feature.md +2 -0
  34. package/skills/massa-ai/workflows/general.md +2 -0
  35. package/skills/massa-ai/workflows/implementation/implementation-fix.md +2 -0
  36. package/skills/massa-ai/workflows/maestro/maestro-fix.md +2 -0
  37. package/skills/massa-ai/workflows/maestro/maestro.md +2 -0
  38. package/skills/massa-ai/workflows/mobile-figma/mobile-figma-fix.md +2 -0
  39. package/skills/massa-ai/workflows/refactor.md +2 -0
  40. package/skills/massa-ai/workflows/requirements/requirements-fix.md +2 -0
  41. package/skills/massa-ai/workflows/security/security-fix.md +2 -0
  42. package/skills/massa-ai/workflows/spec-driven.md +2 -0
  43. package/skills/massa-ai/workflows/tests/tests-fix.md +2 -0
  44. package/skills/mobile-figma-audit/SKILL.md +14 -0
  45. package/skills/mobile-figma-fix/SKILL.md +14 -0
  46. package/skills/onboarding/SKILL.md +14 -0
  47. package/skills/pr-review/SKILL.md +14 -0
  48. package/skills/refactor/SKILL.md +14 -0
  49. package/skills/requirements-audit/SKILL.md +14 -0
  50. package/skills/requirements-fix/SKILL.md +14 -0
  51. package/skills/rfc/SKILL.md +14 -0
  52. package/skills/security-audit/SKILL.md +14 -0
  53. package/skills/security-fix/SKILL.md +14 -0
  54. package/skills/skill-architect/SKILL.md +14 -0
  55. package/skills/spec-driven/SKILL.md +14 -0
  56. package/skills/tdd/SKILL.md +14 -0
  57. package/skills/tests-audit/SKILL.md +14 -0
  58. package/skills/tests-fix/SKILL.md +14 -0
  59. package/skills/the-fool/SKILL.md +14 -0
  60. package/skills/ticket/SKILL.md +14 -0
  61. package/skills/to-prd/SKILL.md +14 -0
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "massa-ai",
3
- "version": "1.33.0",
3
+ "version": "1.35.0",
4
4
  "description": "massa-ai — semantic code search, memory, and context compression for Cursor"
5
5
  }
package/README.md CHANGED
@@ -15,6 +15,8 @@ Skills (auto-loaded from `skills/<name>/SKILL.md`):
15
15
  | `graph` | Reference graph (who calls / imports / extends) |
16
16
  | `status` | Workspaces health + search analytics |
17
17
 
18
+ Plus 40 generated workflow commands, one per massa-ai workflow, each auto-loaded the same way (`skills/debug/SKILL.md`, etc.) — see [Workflow Commands](../../FEATURES.md#workflow-commands-generated-slash-commands) in the root feature reference for the full naming table.
19
+
18
20
  MCP server: `massa-ai` (`npx @massa-ai/mcp-client` with `MASSA_AI_API_URL`) — registered into `~/.cursor/mcp.json` by `scripts/install-agents.sh`, which this installer calls for you. That script is the single writer of host MCP config; the plugin ships no `mcp.json`.
19
21
 
20
22
  Subagent: `massa-ai-navigator` — a code exploration specialist that queries the massa-ai semantic index before falling back to file reads.
package/install.sh CHANGED
@@ -581,15 +581,17 @@ else
581
581
  cp "$SCRIPT_DIR/.cursor-plugin/plugin.json" "$PLUGIN_DIR/.cursor-plugin/plugin.json"
582
582
  vecho " + .cursor-plugin/plugin.json"
583
583
 
584
- # Copy the 6 host-command skills (each in a subdirectory: skills/<name>/SKILL.md).
585
- # massa-ai/, persona-router/, and agents/ are the PDO-06 harness bundle, not a
586
- # Cursor command skill they are installed separately, into the shared
587
- # harness skills directory (see "Skills bundling" below), not into this
588
- # plugin-cache skills/ tree.
584
+ # Copy the host-command skills (each in a subdirectory: skills/<name>/SKILL.md),
585
+ # quick + generated workflow commands alike. massa-ai/, persona-router/,
586
+ # agents/, and profile/ are the PDO-06 harness bundle, not a Cursor command
587
+ # skill they are installed separately, into the shared harness skills
588
+ # directory (see "Skills bundling" below), not into this plugin-cache
589
+ # skills/ tree. `profile` was missing from this exclusion pre-fix, which
590
+ # leaked it into the command-skill cache mislabeled as `/profile`.
589
591
  for src in "$SCRIPT_DIR/skills/"*/SKILL.md; do
590
592
  name="$(basename "$(dirname "$src")")"
591
593
  case "$name" in
592
- massa-ai|persona-router|agents) continue ;;
594
+ massa-ai|persona-router|agents|profile) continue ;;
593
595
  esac
594
596
  mkdir -p "$PLUGIN_DIR/skills/$name"
595
597
  cp "$src" "$PLUGIN_DIR/skills/$name/SKILL.md"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@massa-ai/cursor-plugin",
3
- "version": "1.33.0",
3
+ "version": "1.35.0",
4
4
  "description": "massa-ai plugin for Cursor — semantic code search, memory, and context compression",
5
5
  "files": [
6
6
  "agents",
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Use this workflow to record a finalized or being-finalized architecture decision; route open options to rfc and implementation planning to tdd. — explicit massa-ai 'adr' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `adr`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `adr` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Findings-only audit workflow for domain boundaries, bounded contexts, coupling, and architecture health against a concrete target; not for SOLID or code quality scans. — explicit massa-ai 'architecture-audit' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `architecture-audit`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `architecture-audit` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Executes fixes from a saved architecture audit report; not for findings-only review or broad new design work with missing requirements. — explicit massa-ai 'architecture-fix' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `architecture-fix`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `architecture-fix` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Findings-only bug discovery workflow for a concrete target; route known broken behavior to debug and code-quality concerns to code-quality-audit. — explicit massa-ai 'bugs-audit' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `bugs-audit`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `bugs-audit` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Executes fixes from a saved bugs audit report; not for findings-only discovery, single known issues without a report, or broad product changes. — explicit massa-ai 'bugs-fix' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `bugs-fix`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `bugs-fix` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Findings-only audit workflow for SOLID, Clean Code, KISS, YAGNI, DRY, maintainability, and code-smell issues in a concrete target; not for architecture concerns. — explicit massa-ai 'code-quality-audit' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `code-quality-audit`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `code-quality-audit` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Executes fixes from a saved code quality audit report; not for findings-only SOLID, Clean Code, KISS, YAGNI, DRY, or overengineering analysis. — explicit massa-ai 'code-quality-fix' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `code-quality-fix`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `code-quality-fix` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Use this workflow to draft a commit message, prepare, or commit current repository changes; not for Jira tickets, release notes, changelogs, or history rewriting. — explicit massa-ai 'commit' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `commit`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `commit` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Use this workflow for evidence-backed root-cause diagnosis of broken behavior, failures, regressions, or crashes; route new capabilities to feature and broad redesign to spec-driven. — explicit massa-ai 'debug' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `debug`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `debug` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Implements or updates a concrete mobile UI from structured Figma evidence or screenshots when no saved audit report exists; route comparisons to mobile-figma-audit. — explicit massa-ai 'design' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `design`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `design` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Product discovery and brainstorming workflow — act as a sharp product thinking partner to explore problem spaces, generate and stress-test ideas, and spar on strategy before anything is spec-ready, ending with a mandatory offer to synthesize the conversation into a PRD via the to-prd workflow. Use when the user wants to brainstorm a product problem, idea, opportunity, or direction with no concrete code target. Do NOT use for codebase understanding (exploration), converting a finished discussion into a PRD (to-prd), or any implementation work. — explicit massa-ai 'discovery' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `discovery`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `discovery` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Read-only workflow for understanding a codebase, module, data flow, runtime behavior, schema, dependency, or architecture area before requesting changes. — explicit massa-ai 'exploration' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `exploration`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `exploration` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Use this workflow to add a new capability, screen, command, integration, or user-facing improvement with clear intent; route broken behavior to debug and broad work to spec-driven. — explicit massa-ai 'feature' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `feature`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `feature` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Findings-only refinement of a PRD and/or ADR against the FURPS+ quality model before implementation, fanning out one sub-agent per dimension with a structured report. — explicit massa-ai 'furps-refinement' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `furps-refinement`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `furps-refinement` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Final fallback workflow for coding, planning, review, or implementation work when no specialized massa-ai workflow is a better match. — explicit massa-ai 'general' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `general`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `general` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Findings-only multi-lens audit of a concrete implementation target that dispatches child audit lenses and saves one durable report for implementation-fix. — explicit massa-ai 'implementation-audit' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `implementation-audit`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `implementation-audit` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Executes confirmed findings from a saved implementation audit report; the saved audits/implementation report is the source of truth, not chat summaries. — explicit massa-ai 'implementation-fix' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `implementation-fix`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `implementation-fix` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Explicit-route workflow to evaluate an artifact through multi-judge debate against a tailored specification, converging on a consensus verdict or honest no-consensus. — explicit massa-ai 'judge-with-debate' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `judge-with-debate`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `judge-with-debate` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Use this workflow for same-session handoff, continuation, or safe stopping when work is unfinished, context budget is low, or verbose context reduces execution quality. — explicit massa-ai 'long-session' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `long-session`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `long-session` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Implements new Maestro mobile E2E flows from Jira/Confluence, prompt text, attached scenario files, or inferred scenarios when no explicit source is supplied. — explicit massa-ai 'maestro' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `maestro`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `maestro` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Findings-only audit of existing Maestro mobile E2E flows, fixtures, setup/teardown, reports, selector stability, flake risk, and scenario coverage; does not edit code. — explicit massa-ai 'maestro-audit' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `maestro-audit`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `maestro-audit` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Child-only workflow to fix confirmed MST-prefixed findings from a saved Maestro audit report or an explicit maestro-audit handoff. — explicit massa-ai 'maestro-fix' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `maestro-fix`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `maestro-fix` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -46,6 +46,15 @@ The only two legal skip reasons:
46
46
  Record the skip reason verbatim in the completion report. Any other reason is a
47
47
  protocol violation, not a shortcut.
48
48
 
49
+ **Record the isolation evidence immediately after creation:** the worktree path
50
+ and branch name go into the session status the moment Stage 1 completes, and
51
+ every subsequent edit happens under that path. **Never switch branches in a
52
+ checkout another session may share** — two sessions sharing one checkout can
53
+ move each other's HEAD mid-run and land commits on the wrong branch (recorded
54
+ incident, `.specs/project/STATE.md` 2026-08-05). This is a cross-**session**
55
+ rule; the cross-**subagent** git-safety rule for concurrently-dispatched agents
56
+ is owned by `references/agent-orchestration.md` and is not restated here.
57
+
49
58
  Set up the worktree's dependencies before the first gate — a fresh worktree has
50
59
  no `node_modules`, no `dist`, and no `.env`. A gate that fails only because the
51
60
  worktree was never provisioned is an environment failure; say so rather than
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  Not for findings-only architecture review — route to `workflows/architecture/architecture-audit.md`. Not for broad new design work with missing requirements — route to `workflows/spec-driven.md`.
18
20
 
19
21
  1. Resolve/reuse `workflowSessionId`: `architecture-fix-[entity]`
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  Not for findings-only bug discovery — route to `workflows/bugs/bugs-audit.md`. Not for one known broken behavior without an audit report — route to `workflows/debug.md`. Not for broad product/design changes — route to `workflows/spec-driven.md`.
18
20
 
19
21
  1. Resolve/reuse `workflowSessionId`: `bugs-fix-[entity]`
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  Not for findings-only SOLID, Clean Code, KISS, YAGNI, DRY, maintainability, or overengineering analysis — route to `workflows/code-quality/code-quality-audit.md`.
18
20
 
19
21
  1. Resolve/reuse `workflowSessionId`: `code-quality-fix-[entity]`
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  1. Generate/reuse `workflowSessionId`: `debug-[entity]`
18
20
  2. Load shared references:
19
21
  - `references/codebase-investigation.md`
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  Not for Flutter, React Native, web UI, generic Figma exploration, variable-only queries, or MCP troubleshooting.
18
20
 
19
21
  1. Resolve/reuse `workflowSessionId`: `design-[entity]`.
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  1. Resolve/reuse `projectId` and `workflowSessionId` (`feature-[entity]`)
18
20
  2. `recall` → load prior decisions and patterns for this area
19
21
  - Use the default recall budget: `limit <= 3`, `minImportance >= 0.7`, and `types=["critical","decision","pattern"]` unless the feature needs broader memory discovery.
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  1. Resolve or reuse `projectId` and a stable `workflowSessionId`: `general-[entity]`.
18
20
  2. Run General fallback preflight before source work: name the specialized workflow considered, the exact rejected reason, and why fallback does not change verification, mutation behavior, or memory scope. Ask the user only when the rejected workflow would change those behaviors.
19
21
  3. Recall relevant durable context with `recall`. Treat recalled memory as a lead until current source confirms it. Confirm against current source before relying on it only when the change touches the enumerated risk-domain set: public API, data loss, auth/PII, migrations, or cross-service contracts. Otherwise trust recalled memory and cite it with a one-line source note.
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  Do not execute from chat summaries, inline review comments, remembered findings, or old PR audit reports. The saved `audits/implementation/<YYYY-MM-DD implementation-audit.md>` report is the source of truth. Route fresh findings work to `workflows/implementation/implementation-audit.md`.
18
20
 
19
21
  1. Resolve/reuse `workflowSessionId`: `implementation-fix-[entity]`.
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  Reject direct use without a saved `audits/maestro/<YYYY-MM-DD maestro-audit.md>` report or a parent audit handoff that includes the same required metadata. Do not execute from chat summaries, remembered findings, inline comments, or unsaved model analysis. The saved report or parent handoff is the source of truth.
18
20
 
19
21
  1. Resolve/reuse `workflowSessionId`: `maestro-fix-[entity]`.
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  Not for findings-only review of existing flows — route to `workflows/maestro/maestro-audit.md`. Not to execute saved audit findings — route to `workflows/maestro/maestro-fix.md`. Not for app bug fixes or product behavior changes — route to `workflows/debug.md`, `workflows/feature.md`, or `workflows/requirements/requirements-audit.md`.
18
20
 
19
21
  1. Resolve/reuse `workflowSessionId`: `maestro-[entity]`.
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  Do not execute from chat summaries, screenshots alone, remembered findings, or an unsaved comparison table. The saved `audits/mobile-figma/<YYYY-MM-DD mobile-figma-audit>.md` report is the source of truth. Route fresh comparison work to `mobile-figma-audit`.
18
20
 
19
21
  1. Resolve/reuse `workflowSessionId`: `mobile-figma-fix-[entity]`.
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  1. Resolve/reuse `workflowSessionId`: `refactor-[entity]`
18
20
  2. `recall` → load architectural decisions and coupling patterns for the area
19
21
  3. Load shared references as needed:
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  Not for findings-only requirements review — route to `workflows/requirements/requirements-audit.md`. Not for broad feature design when acceptance criteria are missing — route to `workflows/spec-driven.md`.
18
20
 
19
21
  1. Resolve/reuse `workflowSessionId`: `requirements-fix-[entity]`
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  Not for findings-only security review — route to `workflows/security/security-audit.md`. Not for generic correctness fixes unless the security report identifies the correctness issue as part of an exploitable path.
18
20
 
19
21
  1. Resolve/reuse `workflowSessionId`: `security-fix-[entity]`
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate), `references/code-annotation.md` (doc blocks, rationale, test coverage), and `references/repo-rules-discovery.md` (enforce the target repo's own `.claude/`/`.cursor/` and module/test conventions). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  ## TLC v3 Flow
18
20
 
19
21
  Run the integrated TLC Spec-Driven v3 flow:
@@ -14,6 +14,8 @@ Load `references/project-context.md` (intake sweep) before the first substantive
14
14
 
15
15
  Before the first repository mutation, load `references/implementation-delivery.md` (delivery chain: worktree, atomic commits, PR, CI watch, merge gate) and `references/code-annotation.md` (doc blocks, rationale, test coverage). After two consecutive failed fixes on one symptom, stop editing and load `references/root-cause-scripts.md`.
16
16
 
17
+ **Isolation Gate — before the first file edit:** execute `references/implementation-delivery.md` Stage 0–1 now (fetch base, create the worktree + branch, work inside it) and record the worktree path + branch — or one of Stage 1's two legal skip reasons, verbatim — before any repository mutation.
18
+
17
19
  Not for findings-only test coverage, assertion quality, fixture health, flakiness, or regression-risk review — route to `workflows/tests/tests-audit.md`. Not for generic "write some tests" work without an audit report — route broad test planning through the relevant feature, debug, refactor, or spec-driven workflow.
18
20
 
19
21
  1. Resolve/reuse `workflowSessionId`: `tests-fix-[entity]`
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Findings-only audit comparing an existing mobile UI implementation against Figma MCP evidence for a concrete feature, file set, screen, or commit range; does not edit code. — explicit massa-ai 'mobile-figma-audit' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `mobile-figma-audit`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `mobile-figma-audit` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Fixes confirmed MFM-prefixed findings from a saved mobile Figma audit report; the saved audit report is the source of truth, not screenshots or chat summaries. — explicit massa-ai 'mobile-figma-fix' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `mobile-figma-fix`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `mobile-figma-fix` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Use this workflow on a first session or with missing project context to resolve project identity, establish memory/index state, and capture an architecture overview. — explicit massa-ai 'onboarding' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `onboarding`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `onboarding` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Explicit-route workflow to review a hosted GitHub Pull Request or GitLab Merge Request across six dimensions — security, requirements, test coverage, architecture, regression, performance — using massa-ai roster subagents, then post inline comments plus one consolidated summary through the host CLI (gh or glab). Use when the user says review PR 128, review this MR, or code review this pull request. Do NOT use for local working-diff review (audit workflows), creating PRs, replying to review comments, or fixing CI. — explicit massa-ai 'pr-review' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `pr-review`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `pr-review` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Behavior-preserving structural cleanup, simplification, decoupling, and testability workflow; route broken behavior to debug and broad boundary redesign to architecture-audit or spec-driven. — explicit massa-ai 'refactor' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `refactor`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `refactor` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Findings-only review of whether a concrete target matches stated requirements without out-of-scope drift; routes correctness, security, and quality findings elsewhere. — explicit massa-ai 'requirements-audit' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `requirements-audit`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `requirements-audit` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Executes fixes from a saved requirements audit report; not for findings-only review or broad feature design when acceptance criteria are missing. — explicit massa-ai 'requirements-fix' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `requirements-fix`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `requirements-fix` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Use this workflow when a significant technical, process, product, vendor, tool, or policy decision is still open and stakeholders need a structured proposal before committing. — explicit massa-ai 'rfc' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `rfc`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `rfc` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Findings-only security review workflow for a concrete target; routes generic correctness bugs and other audit categories to their dedicated workflows. — explicit massa-ai 'security-audit' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `security-audit`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `security-audit` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Executes fixes from a saved security audit report; not for findings-only security review or generic correctness fixes outside an exploitable path. — explicit massa-ai 'security-fix' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `security-fix`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `security-fix` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Expert guide for designing and building high-quality skills from scratch through structured conversation. Use when someone wants to create a new skill, build a skill, design a skill, or asks for help making Agents do something consistently. Also use when someone says \"turn this into a skill\", \"I want to automate this workflow\", \"how do I teach my Agent to do X\", or mentions creating SKILL.md files. Covers standalone skills and MCP-enhanced workflows. Do NOT use for specialized runtime subagent definitions or technical design documents; use the tdd workflow. — explicit massa-ai 'skill-architect' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `skill-architect`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `skill-architect` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Use this workflow for explicit spec-driven requests and broad, ambiguous, migration-heavy, or cross-boundary delivery needing requirements-through-verification control. — explicit massa-ai 'spec-driven' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `spec-driven`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `spec-driven` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Use this workflow to write a Technical Design Document once one product direction is selected and no unresolved API, data, security, or rollout decision blocks implementation. — explicit massa-ai 'tdd' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `tdd`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `tdd` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Findings-only audit of test coverage, regression protection, assertion quality, fixture reliability, and missing deterministic sensors in a concrete target. — explicit massa-ai 'tests-audit' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `tests-audit`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `tests-audit` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Executes fixes from a saved tests audit report; not for findings-only coverage review or generic test-writing work without an audit report. — explicit massa-ai 'tests-fix' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `tests-fix`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `tests-fix` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Use this workflow for direct requests to challenge ideas, plans, decisions, or evidence, and as the configured post-plan challenge gate after other workflows construct a plan. — explicit massa-ai 'the-fool' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `the-fool`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `the-fool` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Use this workflow to draft, review, create, or resume creation of Jira Epics, issues, or sub-tasks through Atlassian MCP, the only tracker and mutation path. — explicit massa-ai 'ticket' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `ticket`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `ticket` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS
@@ -0,0 +1,14 @@
1
+ ---
2
+ description: "Turn the current conversation into a PRD. Use when the user asks to create, synthesize, or convert existing discussion and codebase context into a Product Requirements Document without another interview. Do NOT use for implementation plans, architecture design docs, RFCs, TDDs, or discovery interviews that require new product questioning. — explicit massa-ai 'to-prd' workflow"
3
+ argument-hint: "[task description]"
4
+ ---
5
+ <!-- massa-ai:generated workflow-command -->
6
+
7
+ Explicit massa-ai workflow invocation: `to-prd`.
8
+
9
+ Load the massa-ai router skill if not already loaded (dedupe guard), then
10
+ route to workflow `to-prd` under routing precedence 1 (explicit route) —
11
+ do not reclassify. Pass the following as the task description; if empty,
12
+ the workflow's own intake gathers it.
13
+
14
+ $ARGUMENTS