@maestria/cursor 0.1.0 → 0.1.2
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/commands/blitz.md +4 -4
- package/commands/fein.md +5 -9
- package/commands/sonar.md +5 -8
- package/package.json +2 -2
package/commands/blitz.md
CHANGED
|
@@ -3,14 +3,14 @@ name: blitz
|
|
|
3
3
|
description: Fast Maestria implementation via builder (skip recon/design unless unknown)
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
<!-- Auto-generated from @maestria/core. Do not edit directly.
|
|
7
|
+
Edit the canonical file at packages/core/agent-directives/ instead. -->
|
|
8
|
+
|
|
6
9
|
[MODE: blitz]
|
|
7
10
|
|
|
8
11
|
## MODE: blitz (Fast Implementation)
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
- Skip reconnaissance and design unless the codebase is genuinely unknown.
|
|
13
|
-
- Skip review unless the result needs validation (or the user asks).
|
|
13
|
+
Speed mode: skip reconnaissance and design gates. Go directly to builder for implementation. Only use adventurer if the codebase context is genuinely unknown (not as a default step). Skip reviewer unless the user explicitly requests review.
|
|
14
14
|
|
|
15
15
|
Load the `orchestrator` skill if coordination is needed. Prefer a single `Task` to `builder` with a clear handoff.
|
|
16
16
|
|
package/commands/fein.md
CHANGED
|
@@ -1,20 +1,16 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: fein
|
|
3
|
-
description: Run the full Maestria pipeline (recon
|
|
3
|
+
description: Run the full Maestria pipeline (recon -> design -> implement -> review)
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
<!-- Auto-generated from @maestria/core. Do not edit directly.
|
|
7
|
+
Edit the canonical file at packages/core/agent-directives/ instead. -->
|
|
8
|
+
|
|
6
9
|
[MODE: fein]
|
|
7
10
|
|
|
8
11
|
## MODE: fein (Full Pipeline)
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
1. **adventurer** — reconnaissance (mandatory)
|
|
13
|
-
2. **architect** or **planner** — design / plan
|
|
14
|
-
3. **builder** — implementation
|
|
15
|
-
4. **reviewer** — validation
|
|
16
|
-
|
|
17
|
-
Do NOT skip any phase unless the user explicitly overrides in the same turn.
|
|
13
|
+
Default role-based pipeline: thinker (recon/design/plan) -> worker (implementation) -> verifier (review). Verifier acceptance terminates the pipeline for that unit of work. Roles and order may adapt to task needs - this is the default, not a fixed requirement. Do NOT skip any phase unless the user explicitly overrides in the same turn.
|
|
18
14
|
|
|
19
15
|
Load the `orchestrator` skill for delegation methodology. Use the `Task` tool to spawn each specialist agent with a complete handoff contract.
|
|
20
16
|
|
package/commands/sonar.md
CHANGED
|
@@ -1,19 +1,16 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: sonar
|
|
3
|
-
description: Research-only Maestria mode (recon
|
|
3
|
+
description: Research-only Maestria mode (recon -> design, no implementation)
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
<!-- Auto-generated from @maestria/core. Do not edit directly.
|
|
7
|
+
Edit the canonical file at packages/core/agent-directives/ instead. -->
|
|
8
|
+
|
|
6
9
|
[MODE: sonar]
|
|
7
10
|
|
|
8
11
|
## MODE: sonar (Research Only)
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
1. **adventurer** — reconnaissance
|
|
13
|
-
2. **architect** or **planner** — design / plan
|
|
14
|
-
3. **STOP** — do not implement
|
|
15
|
-
|
|
16
|
-
Return findings. Do NOT call builder or edit production code.
|
|
13
|
+
Research mode: reconnaissance and design only. Delegate to adventurer (recon) followed by architect or planner (analysis/design). STOP after delivering findings and design. Do NOT implement, write code, or create any production files.
|
|
17
14
|
|
|
18
15
|
Load the `orchestrator` skill for delegation methodology. Use the `Task` tool to spawn specialists with a complete handoff contract.
|
|
19
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maestria/cursor",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Maestria methodology plugin for Cursor IDE and Cursor CLI - specialists, orchestrator, and workflow commands",
|
|
6
6
|
"keywords": [
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"provenance": true
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@types/node": "^
|
|
40
|
+
"@types/node": "^26",
|
|
41
41
|
"typescript": "^6.0.3"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|