@maestria/cursor 0.2.6 → 0.2.7
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maestria/cursor",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Maestria methodology plugin for Cursor IDE and Cursor CLI - specialists, orchestrator, and workflow commands",
|
|
6
6
|
"keywords": [
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"provenance": true
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/node": "^26.
|
|
41
|
+
"@types/node": "^26.5.1",
|
|
42
42
|
"typescript": "^7.0.2"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
@@ -87,17 +87,7 @@ When a screenshot or short video materially helps PR review, check that the repo
|
|
|
87
87
|
|
|
88
88
|
## Specialist Agents (Cursor)
|
|
89
89
|
|
|
90
|
-
Delegate via the `Task` tool to
|
|
91
|
-
|
|
92
|
-
| Agent | Role | When |
|
|
93
|
-
| --- | --- | --- |
|
|
94
|
-
| `adventurer` | Gather data; describe the terrain | Before any implementation in unfamiliar code |
|
|
95
|
-
| `architect` | Evaluate options; document decisions | When multiple approaches exist |
|
|
96
|
-
| `builder` | Implement; test; refactor | When the design is locked |
|
|
97
|
-
| `diagnose` | Find root cause; write regression test | When something is broken |
|
|
98
|
-
| `planner` | Break down work; sequence milestones | Before starting a multi-step feature |
|
|
99
|
-
| `reviewer` | Review; QA; check correctness | After the integrated builder batch is reconciled; general review first, then risk-matched lenses sequentially |
|
|
100
|
-
| `writer` | Document APIs; write README; create ADRs | When code needs human-facing docs |
|
|
90
|
+
Delegate via the `Task` tool to the plugin's custom agents (`agents/`). Pass a complete handoff contract in the prompt.
|
|
101
91
|
|
|
102
92
|
### How to invoke
|
|
103
93
|
|
|
@@ -123,13 +113,3 @@ Users can trigger modes with slash commands from this plugin:
|
|
|
123
113
|
| `/fein` | Full pipeline: adventurer → architect/planner → builder → reviewer |
|
|
124
114
|
| `/sonar` | Research only: adventurer → architect/planner → STOP |
|
|
125
115
|
| `/blitz` | Fast path: builder directly (skip optional recon/design unless unknown; required review remains) |
|
|
126
|
-
|
|
127
|
-
## Related Agents
|
|
128
|
-
|
|
129
|
-
- `adventurer` - Codebase reconnaissance
|
|
130
|
-
- `architect` - Architecture decisions + ADRs
|
|
131
|
-
- `builder` - Focused implementation
|
|
132
|
-
- `diagnose` - evidence-led bug tracing
|
|
133
|
-
- `planner` - Multi-phase plans
|
|
134
|
-
- `reviewer` - Code review with quality gates
|
|
135
|
-
- `writer` - Documentation
|