lace-mcp 0.0.2-alpha.2 → 0.0.2-alpha.20
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/README.md +7 -6
- package/SKILL.md +9 -7
- package/dist/cli.js +74801 -14364
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ MCP server for [Lace](https://inlace.co). Connects your coding agent to approved
|
|
|
5
5
|
## How it works
|
|
6
6
|
|
|
7
7
|
1. You review your product in Lace and approve a decision on the [Decision Canvas](https://docs.inlace.co/concepts/decision-canvas)
|
|
8
|
-
2. Your coding agent calls `
|
|
8
|
+
2. Your coding agent calls `search_decisions` to find what's been approved
|
|
9
9
|
3. It calls `apply_decision` to get screenshots, element targeting, and step-by-step instructions
|
|
10
10
|
4. The agent writes the code change and you review the diff
|
|
11
11
|
|
|
@@ -28,18 +28,19 @@ The Lace desktop app must be open and signed in for the MCP server to work.
|
|
|
28
28
|
|
|
29
29
|
| Tool | Description |
|
|
30
30
|
| --- | --- |
|
|
31
|
-
| `
|
|
32
|
-
| `
|
|
33
|
-
| `
|
|
31
|
+
| `search_decisions` | Search and filter resolved decisions with pagination. No params returns the top 20 |
|
|
32
|
+
| `apply_decision` | Implementation kit for a decision: screenshots, targeting, instructions. `include` controls detail level |
|
|
33
|
+
| `list_canvases` | Browse review canvases with page names and decision counts |
|
|
34
|
+
| `list_projects` | Browse projects with thread and canvas counts |
|
|
34
35
|
|
|
35
|
-
Use `apply_decision`
|
|
36
|
+
Use `search_decisions` to discover, then `apply_decision` to act. Use `list_canvases` and `list_projects` to find IDs for filtering.
|
|
36
37
|
|
|
37
38
|
## Usage
|
|
38
39
|
|
|
39
40
|
Once installed, ask your coding agent:
|
|
40
41
|
|
|
41
42
|
```
|
|
42
|
-
"
|
|
43
|
+
"Search Lace decisions"
|
|
43
44
|
```
|
|
44
45
|
|
|
45
46
|
Or to implement directly:
|
package/SKILL.md
CHANGED
|
@@ -9,13 +9,15 @@ Lace surfaces adoption insights as actionable decisions. When a decision is appr
|
|
|
9
9
|
|
|
10
10
|
## Steps
|
|
11
11
|
|
|
12
|
-
1. Call the `
|
|
13
|
-
2. If
|
|
14
|
-
3.
|
|
15
|
-
4.
|
|
16
|
-
5.
|
|
12
|
+
1. Call the `search_decisions` MCP tool with no params to see recently approved decisions, or pass filters such as `query`, `canvasId`, `projectId`, `appName`, or `elementRole` when the user has given scope.
|
|
13
|
+
2. If the workspace has many canvases or projects, call `list_canvases` or `list_projects` first and use the returned IDs/titles to scope `search_decisions`.
|
|
14
|
+
3. If there is exactly one relevant decision, proceed with it. If there are multiple plausible matches, ask the user which one to implement.
|
|
15
|
+
4. Call `apply_decision` with the chosen decision ID.
|
|
16
|
+
5. Use `include: "instructions"` by default. Use `include: "crop"` for a cropped element image, `include: "discussion"` for thread rationale, or `include: "all"` when you need screenshots, cropped image, and rationale together.
|
|
17
|
+
6. Follow the implementation instructions returned by `apply_decision` exactly — they include screenshots, element targeting, and constraints.
|
|
18
|
+
7. Implement the minimal code change described. Do not refactor or modify anything outside the target element.
|
|
17
19
|
|
|
18
20
|
## Troubleshooting
|
|
19
21
|
|
|
20
|
-
- If `
|
|
21
|
-
- If no decisions are returned, the user may need to approve a decision in the Lace overlay first.
|
|
22
|
+
- If `search_decisions` returns an authentication error, tell the user to run `npx lace-mcp install <editor>` to re-authenticate.
|
|
23
|
+
- If no decisions are returned, the user may need to approve a decision in the Lace overlay first or provide a narrower canvas/project scope.
|