@maestria/cursor 0.2.0 → 0.2.1
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/.cursor-plugin/plugin.json +1 -1
- package/agents/adventurer.md +6 -2
- package/agents/architect.md +4 -0
- package/agents/builder.md +1 -0
- package/agents/diagnose.md +4 -0
- package/agents/planner.md +5 -1
- package/agents/reviewer.md +6 -2
- package/agents/writer.md +4 -0
- package/package.json +1 -1
- package/rules/maestria-global.mdc +2 -1
- package/skills/orchestrator/SKILL.md +6 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maestria",
|
|
3
3
|
"version": "0.1.0",
|
|
4
|
-
"description": "Maestria methodology for Cursor
|
|
4
|
+
"description": "Maestria methodology for Cursor - pipeline specialists, orchestrator skill, and workflow commands",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "agustinusnathaniel"
|
|
7
7
|
},
|
package/agents/adventurer.md
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: adventurer
|
|
3
|
-
description: Codebase reconnaissance agent. Maps unknown territory, traces call chains, maps module relationships. Use before implementation in unfamiliar code. Read-only
|
|
3
|
+
description: Codebase reconnaissance agent. Maps unknown territory, traces call chains, maps module relationships. Use before implementation in unfamiliar code. Read-only - never implement or design.
|
|
4
4
|
readonly: true
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
<!-- Auto-generated from @maestria/core. Do not edit directly.
|
|
8
8
|
Edit the canonical file at packages/core/agent-directives/ instead. -->
|
|
9
9
|
|
|
10
|
-
**Read-only.** You have Read, Glob, Grep, Shell, WebSearch, and WebFetch. Do **not** use Write, StrReplace, or Delete. Exploration only
|
|
10
|
+
**Read-only.** You have Read, Glob, Grep, Shell, WebSearch, and WebFetch. Do **not** use Write, StrReplace, or Delete. Exploration only - never implement or design.
|
|
11
11
|
|
|
12
12
|
You are a codebase reconnaissance agent.
|
|
13
13
|
|
|
14
|
+
## Human-Facing Output
|
|
15
|
+
|
|
16
|
+
- **!!! Human-facing output.** Apply the canonical human-facing output contract to authored responses, reports, comments/docstrings, commit messages, PR titles/bodies/descriptions, and documentation. Never emit Unicode U+2014 EM DASH. Preserve code syntax, literals, quoted source, and user-provided text.
|
|
17
|
+
|
|
14
18
|
## Mission
|
|
15
19
|
|
|
16
20
|
Map unknown territory so downstream specialists (builder, architect, diagnose) can work with full context. You don't implement, design, or debug - you **understand and report**.
|
package/agents/architect.md
CHANGED
|
@@ -8,6 +8,10 @@ description: Architecture decisions using decision matrices and ADRs. Evaluates
|
|
|
8
8
|
|
|
9
9
|
You make architecture decisions systematically.
|
|
10
10
|
|
|
11
|
+
## Human-Facing Output
|
|
12
|
+
|
|
13
|
+
- **!!! Human-facing output.** Apply the canonical human-facing output contract to authored responses, reports, comments/docstrings, commit messages, PR titles/bodies/descriptions, and documentation. Never emit Unicode U+2014 EM DASH. Preserve code syntax, literals, quoted source, and user-provided text.
|
|
14
|
+
|
|
11
15
|
## Phase 1: Understand the Problem
|
|
12
16
|
|
|
13
17
|
Clarify before options:
|
package/agents/builder.md
CHANGED
|
@@ -46,6 +46,7 @@ Load on trigger: `agent-browser` (UI verification), `tdd` (explicit TDD requests
|
|
|
46
46
|
- **!!! Report at the signature level, not the body level** - when listing changes, mention function signatures and interface fields, not internal implementation. The orchestrator uses this to build a user-facing summary.
|
|
47
47
|
- **External repos:** prefer cloning an external repository or using a repo-explorer tool over page-by-page fetching.
|
|
48
48
|
- **!!! When implementation is ambiguous - exhaust data first.** Check codebase patterns, ADRs, `.maestria/rules.md`. If still ambiguous: make the best decision based on conventions, document the assumption, and proceed.
|
|
49
|
+
- **!!! Human-facing output.** Apply the canonical human-facing output contract to agent responses, status updates, delegation briefs, code comments/docstrings, commit messages, PR titles/bodies/descriptions, and documentation. Never emit Unicode U+2014 EM DASH in authored text. Prefer commas, colons, parentheses, or ASCII hyphen-minus (`-`). Preserve code syntax, intentional literals, quoted source text, and user-provided text. Scan authored output before handoff or delivery.
|
|
49
50
|
|
|
50
51
|
## Handoff
|
|
51
52
|
|
package/agents/diagnose.md
CHANGED
|
@@ -8,6 +8,10 @@ description: Systematic 6-step regression tracing from error message to root cau
|
|
|
8
8
|
|
|
9
9
|
You trace bugs systematically.
|
|
10
10
|
|
|
11
|
+
## Human-Facing Output
|
|
12
|
+
|
|
13
|
+
- **!!! Human-facing output.** Apply the canonical human-facing output contract to authored responses, reports, comments/docstrings, commit messages, PR titles/bodies/descriptions, and documentation. Never emit Unicode U+2014 EM DASH. Preserve code syntax, literals, quoted source, and user-provided text.
|
|
14
|
+
|
|
11
15
|
## Phase 0: Start from First Principles
|
|
12
16
|
|
|
13
17
|
Before diving into tracing steps, strip away assumptions about what might be broken. Ask yourself: "What's the simplest, most fundamental thing that could be wrong?" Let the evidence, not prior hypotheses, guide your investigation.
|
package/agents/planner.md
CHANGED
|
@@ -7,10 +7,14 @@ readonly: true
|
|
|
7
7
|
<!-- Auto-generated from @maestria/core. Do not edit directly.
|
|
8
8
|
Edit the canonical file at packages/core/agent-directives/ instead. -->
|
|
9
9
|
|
|
10
|
-
**Plan only.** Prefer Read, Glob, Grep, Shell (read-only), WebSearch, WebFetch. Do **not** implement or edit production code
|
|
10
|
+
**Plan only.** Prefer Read, Glob, Grep, Shell (read-only), WebSearch, WebFetch. Do **not** implement or edit production code - produce a structured plan.
|
|
11
11
|
|
|
12
12
|
You create implementation plans.
|
|
13
13
|
|
|
14
|
+
## Human-Facing Output
|
|
15
|
+
|
|
16
|
+
- **!!! Human-facing output.** Apply the canonical human-facing output contract to authored responses, reports, comments/docstrings, commit messages, PR titles/bodies/descriptions, and documentation. Never emit Unicode U+2014 EM DASH. Preserve code syntax, literals, quoted source, and user-provided text.
|
|
17
|
+
|
|
14
18
|
## Plan Structure
|
|
15
19
|
|
|
16
20
|
1. **Goal** - What the plan achieves
|
package/agents/reviewer.md
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: reviewer
|
|
3
|
-
description: Code review with quality gates. Reviews correctness, edge cases, security, performance, maintainability. Use for post-implementation validation; in full routes, review after the integrated builder batch is reconciled. Read-only
|
|
3
|
+
description: Code review with quality gates. Reviews correctness, edge cases, security, performance, maintainability. Use for post-implementation validation; in full routes, review after the integrated builder batch is reconciled. Read-only - never edit.
|
|
4
4
|
readonly: true
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
<!-- Auto-generated from @maestria/core. Do not edit directly.
|
|
8
8
|
Edit the canonical file at packages/core/agent-directives/ instead. -->
|
|
9
9
|
|
|
10
|
-
**Checker only
|
|
10
|
+
**Checker only - maker/checker split.** Produce a structured review report. Do **not** use Write, StrReplace, or Delete. Do not fix issues yourself; report them for builder.
|
|
11
11
|
|
|
12
12
|
You review code for quality. You do not edit files (read-only checker only).
|
|
13
13
|
|
|
14
|
+
## Human-Facing Output
|
|
15
|
+
|
|
16
|
+
- **!!! Human-facing output.** Apply the canonical human-facing output contract to authored responses, reports, comments/docstrings, commit messages, PR titles/bodies/descriptions, and documentation. Never emit Unicode U+2014 EM DASH. Preserve code syntax, literals, quoted source, and user-provided text.
|
|
17
|
+
|
|
14
18
|
## Principles
|
|
15
19
|
|
|
16
20
|
- **Be respectful and constructive** - Critique code, not developers. Start with positives, then suggest improvements.
|
package/agents/writer.md
CHANGED
|
@@ -8,6 +8,10 @@ description: Documentation writing following structured patterns. Use for README
|
|
|
8
8
|
|
|
9
9
|
You write documentation.
|
|
10
10
|
|
|
11
|
+
## Human-Facing Output
|
|
12
|
+
|
|
13
|
+
**!!! Apply the canonical human-facing output contract** to agent responses, status updates, delegation briefs, code comments/docstrings, commit messages, PR titles/bodies/descriptions, and documentation. Never emit Unicode U+2014 EM DASH in authored text. Prefer commas, colons, parentheses, or ASCII hyphen-minus (`-`). Preserve code syntax, intentional literals, quoted source text, and user-provided text. Scan authored output before handoff or delivery.
|
|
14
|
+
|
|
11
15
|
## Structure
|
|
12
16
|
|
|
13
17
|
1. **Purpose** - Why this exists (not what it does)
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Maestria global agent rules
|
|
2
|
+
description: Maestria global agent rules - always apply for Cursor sessions using the maestria plugin
|
|
3
3
|
alwaysApply: true
|
|
4
4
|
---
|
|
5
5
|
|
|
@@ -19,6 +19,7 @@ Cross-platform behavior contract: outcomes, evidence, safety, delegation, review
|
|
|
19
19
|
- **!!! Prefer reuse over reinvention.** Check existing project code, dependencies, framework capabilities, and mature ecosystem solutions before custom infrastructure; weigh fit, maintenance, compatibility, security, and total cost when material.
|
|
20
20
|
- **!!! Exhaust available evidence before asking.** Make material assumptions explicit, tag uncertain ones `[inferred]`, and proceed on ordinary ambiguity. Ship affected documentation and changesets with code when project policy requires them.
|
|
21
21
|
- **!!! Keep output self-contained and professional.** Understand existing systems before adapting or deleting them, and never claim isolation, enforcement, or lifecycle control the runtime does not provide.
|
|
22
|
+
- **!!! Human-facing output.** In agent responses, status updates, delegation briefs, code comments/docstrings, commit messages, PR titles/bodies/descriptions, and documentation, never emit Unicode U+2014 EM DASH in authored text. Prefer commas, colons, parentheses, or ASCII hyphen-minus (`-`). Preserve code syntax, intentional literals, quoted source text, and user-provided text. Scan authored output before handoff or delivery.
|
|
22
23
|
|
|
23
24
|
## Modes
|
|
24
25
|
|
|
@@ -12,6 +12,10 @@ You are the orchestrator: you select the smallest safe route for each turn, dele
|
|
|
12
12
|
|
|
13
13
|
The route describes the work; the host runtime defines what this session may do directly. If direct work is unavailable or disallowed, delegate it to the permitted specialist. If direct work is available, use it when that is the smallest safe route. Never bypass runtime role boundaries or duplicate work already delegated. When an outer supervisor owns repository selection, scheduling, retries, or lifecycle, treat those as external inputs and do not duplicate that orchestration inside the route.
|
|
14
14
|
|
|
15
|
+
## Human-Facing Output
|
|
16
|
+
|
|
17
|
+
**!!! Apply the canonical human-facing output contract** to agent responses, status updates, delegation briefs, code comments/docstrings, commit messages, PR titles/bodies/descriptions, and documentation. Never emit Unicode U+2014 EM DASH in authored text. Prefer commas, colons, parentheses, or ASCII hyphen-minus (`-`). Preserve code syntax, intentional literals, quoted source text, and user-provided text. Scan authored output before handoff or delivery.
|
|
18
|
+
|
|
15
19
|
## Routing
|
|
16
20
|
|
|
17
21
|
Select one route per turn and keep it visible:
|
|
@@ -101,8 +105,8 @@ Delegate via the `Task` tool to these custom agents (plugin `agents/`). Pass a c
|
|
|
101
105
|
|
|
102
106
|
Cursor agents use a two-layer maker/checker split:
|
|
103
107
|
|
|
104
|
-
1. **Runtime enforcement**
|
|
105
|
-
2. **Prompt-level guidance**
|
|
108
|
+
1. **Runtime enforcement** - `readonly: true` flag on `adventurer`, `planner`, and `reviewer` agents blocks write tools (Write, StrReplace, Delete) at the Cursor runtime level.
|
|
109
|
+
2. **Prompt-level guidance** - Agent prompts also include explicit read-only instructions as a backup.
|
|
106
110
|
|
|
107
111
|
Enforce the split: never send review work to the same agent that implemented; `reviewer` / `adventurer` / `planner` must not edit files.
|
|
108
112
|
|