@massa-ai/codex-plugin 1.32.0 → 1.34.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.
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +2 -0
- package/package.json +1 -1
- package/skills/adr.md +14 -0
- package/skills/architecture-audit.md +14 -0
- package/skills/architecture-fix.md +14 -0
- package/skills/bugs-audit.md +14 -0
- package/skills/bugs-fix.md +14 -0
- package/skills/code-quality-audit.md +14 -0
- package/skills/code-quality-fix.md +14 -0
- package/skills/commit.md +14 -0
- package/skills/debug.md +14 -0
- package/skills/design.md +14 -0
- package/skills/discovery.md +14 -0
- package/skills/exploration.md +14 -0
- package/skills/feature.md +14 -0
- package/skills/furps-refinement.md +14 -0
- package/skills/general.md +14 -0
- package/skills/implementation-audit.md +14 -0
- package/skills/implementation-fix.md +14 -0
- package/skills/judge-with-debate.md +14 -0
- package/skills/long-session.md +14 -0
- package/skills/maestro-audit.md +14 -0
- package/skills/maestro-fix.md +14 -0
- package/skills/maestro.md +14 -0
- package/skills/mobile-figma-audit.md +14 -0
- package/skills/mobile-figma-fix.md +14 -0
- package/skills/onboarding.md +14 -0
- package/skills/pr-review.md +14 -0
- package/skills/refactor.md +14 -0
- package/skills/requirements-audit.md +14 -0
- package/skills/requirements-fix.md +14 -0
- package/skills/rfc.md +14 -0
- package/skills/security-audit.md +14 -0
- package/skills/security-fix.md +14 -0
- package/skills/skill-architect.md +14 -0
- package/skills/spec-driven.md +14 -0
- package/skills/tdd.md +14 -0
- package/skills/tests-audit.md +14 -0
- package/skills/tests-fix.md +14 -0
- package/skills/the-fool.md +14 -0
- package/skills/ticket.md +14 -0
- package/skills/to-prd.md +14 -0
package/README.md
CHANGED
|
@@ -15,6 +15,8 @@ Skills (invocable via Codex `$` mentions):
|
|
|
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 (`$debug`, 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 `~/.codex/config.toml` 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
|
Hooks: 6 Codex lifecycle events wired to the shared `massa-ai-hook` binary (fire-and-forget POSTs to the tools-api):
|
package/package.json
CHANGED
package/skills/adr.md
ADDED
|
@@ -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
|
package/skills/commit.md
ADDED
|
@@ -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
|
package/skills/debug.md
ADDED
|
@@ -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
|
package/skills/design.md
ADDED
|
@@ -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: "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
|
|
@@ -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 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
|
package/skills/rfc.md
ADDED
|
@@ -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
|
package/skills/tdd.md
ADDED
|
@@ -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
|
package/skills/ticket.md
ADDED
|
@@ -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
|
package/skills/to-prd.md
ADDED
|
@@ -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
|