@maestria/cursor 0.2.2 → 0.2.3
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/INSTALL.md +3 -3
- package/README.md +2 -2
- package/assets/logo.svg +27 -0
- package/package.json +2 -1
package/INSTALL.md
CHANGED
|
@@ -18,10 +18,10 @@ The CLI pulls `@maestria/cursor` from npm (`npm pack @maestria/cursor@latest`) a
|
|
|
18
18
|
~/.cursor/plugins/local/maestria
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
Restart Cursor IDE so Customize → Plugins picks up the local plugin.
|
|
21
|
+
Restart Cursor IDE, or use **Developer: Reload Window**, so Customize → Plugins picks up the local plugin. The current Cursor CLI is `agent` (`cursor-agent` remains a compatibility alias) and discovers local plugins from the same directory:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
agent
|
|
24
|
+
agent
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
### Updating
|
|
@@ -34,7 +34,7 @@ pnpx maestria@latest status
|
|
|
34
34
|
To pin to a specific version:
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
|
-
pnpx maestria@latest update cursor
|
|
37
|
+
pnpx maestria@latest update cursor --version 0.2.2
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
## Verify
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @maestria/cursor
|
|
2
2
|
|
|
3
|
-
A declarative [Cursor](https://cursor.com/) plugin that brings Maestria's structured agent orchestration to Cursor IDE and Cursor CLI (`agent`) - 7 specialist Task agents, an orchestrator skill, always-on global rules, and workflow commands.
|
|
3
|
+
A declarative [Cursor](https://cursor.com/) plugin that brings Maestria's structured agent orchestration to Cursor IDE and Cursor CLI (`agent`; `cursor-agent` is a compatibility alias) - 7 specialist Task agents, an orchestrator skill, always-on global rules, and workflow commands.
|
|
4
4
|
|
|
5
5
|
> This package is part of the Maestria project. See [VISION.md](https://github.com/agustinusnathaniel/maestria/blob/main/VISION.md) for the project vision, motivation, and scope.
|
|
6
6
|
|
|
@@ -11,7 +11,7 @@ A declarative [Cursor](https://cursor.com/) plugin that brings Maestria's struct
|
|
|
11
11
|
pnpx maestria@latest install cursor
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Restart Cursor IDE
|
|
14
|
+
Restart Cursor IDE (or use **Developer: Reload Window**). Cursor CLI uses `agent` and discovers local plugins from `~/.cursor/plugins/local/maestria`. See [INSTALL.md](https://github.com/agustinusnathaniel/maestria/blob/main/packages/cursor/INSTALL.md) for the full checklist, manual setup, verification, and uninstall.
|
|
15
15
|
|
|
16
16
|
## What It Provides
|
|
17
17
|
|
package/assets/logo.svg
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="bg" x1="0" y1="0" x2="1" y2="1">
|
|
4
|
+
<stop offset="0%" stop-color="#1a1a2e"/>
|
|
5
|
+
<stop offset="100%" stop-color="#16213e"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
<linearGradient id="accent" x1="0" y1="0" x2="1" y2="1">
|
|
8
|
+
<stop offset="0%" stop-color="#6c63ff"/>
|
|
9
|
+
<stop offset="100%" stop-color="#a855f7"/>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
</defs>
|
|
12
|
+
<!-- Rounded square background -->
|
|
13
|
+
<rect width="512" height="512" rx="96" fill="url(#bg)"/>
|
|
14
|
+
<!-- Subtle border -->
|
|
15
|
+
<rect x="2" y="2" width="508" height="508" rx="94" fill="none" stroke="#2a2a4a" stroke-width="4"/>
|
|
16
|
+
<!-- M letterform composed of pipeline blocks -->
|
|
17
|
+
<!-- Left vertical bar -->
|
|
18
|
+
<rect x="96" y="120" width="48" height="272" rx="16" fill="url(#accent)"/>
|
|
19
|
+
<!-- Right vertical bar -->
|
|
20
|
+
<rect x="368" y="120" width="48" height="272" rx="16" fill="url(#accent)"/>
|
|
21
|
+
<!-- Diagonal left -->
|
|
22
|
+
<rect x="130" y="156" width="48" height="272" rx="16" fill="url(#accent)" transform="rotate(48, 154, 156)"/>
|
|
23
|
+
<!-- Diagonal right -->
|
|
24
|
+
<rect x="334" y="156" width="48" height="272" rx="16" fill="url(#accent)" transform="rotate(-48, 358, 156)"/>
|
|
25
|
+
<!-- Center diamond node -->
|
|
26
|
+
<rect x="224" y="224" width="64" height="64" rx="16" fill="url(#accent)" transform="rotate(45, 256, 256)"/>
|
|
27
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maestria/cursor",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Maestria methodology plugin for Cursor IDE and Cursor CLI - specialists, orchestrator, and workflow commands",
|
|
6
6
|
"keywords": [
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"skills",
|
|
29
29
|
"rules",
|
|
30
30
|
"commands",
|
|
31
|
+
"assets",
|
|
31
32
|
"INSTALL.md",
|
|
32
33
|
"README.md"
|
|
33
34
|
],
|