@massa-ai/cursor-plugin 1.14.0 → 1.15.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.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "massa-ai",
3
- "version": "1.14.0",
3
+ "version": "1.15.0",
4
4
  "description": "massa-ai — semantic code search, memory, and context compression for Cursor"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@massa-ai/cursor-plugin",
3
- "version": "1.14.0",
3
+ "version": "1.15.0",
4
4
  "description": "massa-ai plugin for Cursor — semantic code search, memory, and context compression",
5
5
  "files": [
6
6
  "agents",
@@ -79,25 +79,31 @@ dispatch.
79
79
 
80
80
  Before adding a new reusable role, load `references/subagent-design.md` and write a bounded role charter. For one-off tasks, use an existing role plus the prompt contract below instead of inventing a new role.
81
81
 
82
- | Role | Host agent name | Use For | Read/Write | Charter |
83
- |---|---|---|---|---|
84
- | `investigator` | `massa-ai-investigator` | Trace code paths, find entry points, summarize current behavior | read-only | `skills/agents/investigator/SKILL.md` |
85
- | `navigator` | `massa-ai-navigator` | Answer "where is X / who calls Y" from the massa-ai index before reading files | read-only | `skills/agents/navigator/SKILL.md` |
86
- | `implementer` → `builder` | `massa-ai-builder` | Execute one atomic task with a disjoint write set | write | `skills/agents/builder/SKILL.md` |
87
- | `verifier` → `verification-agent` | `massa-ai-verification-agent` | Independently run sensors and inspect whether claims hold | read-only | `skills/agents/verification-agent/SKILL.md` |
88
- | `domain-mapper` → `architecture-specialist` | `massa-ai-architecture-specialist` | Identify subdomains, bounded contexts, language conflicts, cohesion | read-only | `skills/agents/architecture-specialist/SKILL.md` (lens: `domain`) |
89
- | `coupling-auditor` → `architecture-specialist` | `massa-ai-architecture-specialist` | Analyze strength, distance, volatility, and risky dependencies | read-only | `skills/agents/architecture-specialist/SKILL.md` (lens: `coupling`) |
90
- | `deepening-architect` → `architecture-specialist` | `massa-ai-architecture-specialist` | Find shallow modules and deepening opportunities | read-only | `skills/agents/architecture-specialist/SKILL.md` (lens: `deepening`) |
91
- | `audit-specialist` | `massa-ai-audit-specialist` | Findings-only audit through one selected `lens` | read-only | `skills/agents/audit-specialist/SKILL.md` |
92
- | `plan-critic` | `massa-ai-plan-critic` | Stress-test a constructed plan using The Fool mode and return bounded critique | read-only | `skills/agents/plan-critic/SKILL.md` |
93
- | `furps-analyst` | `massa-ai-furps-analyst` | Analyze one FURPS+ dimension of a PRD/ADR against the checklist and return structured findings | read-only | `skills/agents/furps-analyst/SKILL.md` |
94
-
95
- The remaining charters — `planner`, `reviewer`, `context-curator`,
96
- `requirements-analyst`, `test-engineer`, `documentation-agent`,
97
- `mobile-specialist` — follow the same `massa-ai-<role>` convention and are
98
- listed in the Agent Table of `skills/AGENTS.md`.
99
-
100
- **Role mapping:** `investigator`→`investigator` (identical); `implementer`→`builder` (renamed); `verifier`→`verification-agent` (renamed, centralizes Verification Ladder); `domain-mapper`+`coupling-auditor`+`deepening-architect`→`architecture-specialist` (three roles folded into one specialist; the `lens` input field selects the sub-mode). Workflows dispatch the new agent names via named dispatch blocks; the old role names above are kept for traceability only.
82
+ ## Roles
83
+
84
+ **The roster lives in one place: the Agent Table of `skills/AGENTS.md`**, which names
85
+ every shipped specialist with its purpose, trigger, permission, and charter path. Do not
86
+ restate it here. A second roster in this file is what let `judge` and `meta-judge` go
87
+ undocumented for a whole release with every gate green — the guard checked that the
88
+ charter paths *mentioned* here resolve, which a charter that is never mentioned cannot
89
+ fail.
90
+
91
+ This file owns dispatch mechanics. The one roster fact it owns is the **legacy role
92
+ vocabulary**: names earlier workflows dispatched by, kept so an old reference still
93
+ resolves to a current agent.
94
+
95
+ | Legacy role | Current agent | Note |
96
+ |---|---|---|
97
+ | `implementer` | `massa-ai-builder` | renamed |
98
+ | `verifier` | `massa-ai-verification-agent` | renamed; also centralizes the Verification Ladder |
99
+ | `domain-mapper` | `massa-ai-architecture-specialist` | folded in; `lens: domain` |
100
+ | `coupling-auditor` | `massa-ai-architecture-specialist` | folded in; `lens: coupling` |
101
+ | `deepening-architect` | `massa-ai-architecture-specialist` | folded in; `lens: deepening` |
102
+
103
+ `investigator`, `plan-critic` and `furps-analyst` kept their own names; every other
104
+ specialist is new and never had a legacy one. Workflows dispatch the current
105
+ `massa-ai-<role>` name through a named dispatch block — the legacy column is traceability
106
+ only, never a dispatch target.
101
107
 
102
108
  ## Capability Packet
103
109
 
@@ -7,7 +7,7 @@ Use this before making Maestro claims. It defines source authority, fact tags, l
7
7
  1. `official-doc`: current official Maestro documentation, preferably `.md` pages under `https://docs.maestro.dev/`.
8
8
  2. `live-help`: successful local CLI transcript from the installed Maestro binary, including command, exit code, stdout, and stderr.
9
9
  3. `repo-convention`: current repository flows, config, CI, scripts, report paths, and existing naming/tag patterns.
10
- 4. `excluded/unverified`: NotebookLM answers, `/Users/luizmassa/Downloads/questions.md`, blog posts, memory, or assumptions that are not confirmed by the first three sources.
10
+ 4. `excluded/unverified`: NotebookLM answers, a user-supplied coverage checklist, blog posts, memory, or assumptions that are not confirmed by the first three sources.
11
11
 
12
12
  If sources conflict, prefer `official-doc` for product behavior and `live-help` for installed CLI syntax. Mention version drift when `live-help` differs from docs.
13
13
 
@@ -39,7 +39,7 @@ If PATH cannot resolve `maestro`, mark local CLI validation blocked. If the bina
39
39
 
40
40
  ## Coverage Checklist Handling
41
41
 
42
- Use `/Users/luizmassa/Downloads/questions.md` as a checklist to ask "did we cover this surface?" Never cite it as source truth.
42
+ When the user supplies a coverage checklist, use it to ask "did we cover this surface?" Never cite it as source truth, and never assume one exists — if the user supplied none, this section imposes no requirement.
43
43
 
44
44
  Checklist-only facts that must stay non-normative unless independently verified:
45
45
 
@@ -6,7 +6,7 @@ Use this small index from `workflows/maestro/maestro.md`, `workflows/maestro/mae
6
6
 
7
7
  Load `references/maestro/fact-ledger.md` before making any normative Maestro claim. Every Maestro claim must be tagged as `official-doc`, `live-help`, `repo-convention`, or `excluded/unverified`.
8
8
 
9
- Use `/Users/luizmassa/Downloads/questions.md` only as a coverage checklist. If a checklist item is not supported by official Maestro docs, live CLI help, or repository convention, quarantine it as `excluded/unverified`.
9
+ Use a user-supplied coverage checklist, when the user provides one, only as a coverage checklist. If a checklist item is not supported by official Maestro docs, live CLI help, or repository convention, quarantine it as `excluded/unverified`.
10
10
 
11
11
  Official source anchors:
12
12