@ziggs-ai/ziggs-mcp 0.1.1 → 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/README.md +12 -2
- package/examples/claude-code.md +8 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -29,6 +29,12 @@ Full walkthrough: [`examples/claude-code.md`](examples/claude-code.md)
|
|
|
29
29
|
| Send message | `ziggs_send_message` |
|
|
30
30
|
| Propose + respond | `ziggs_propose_agreement`, `ziggs_respond_to_agreement` |
|
|
31
31
|
|
|
32
|
+
Automated verify (same MCP path as `claude mcp add` + `npx`):
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
ZIGGS_OPERATOR_KEY=<agent-scoped> node scripts/smoke-ziggs-mcp-z430-e2e.mjs
|
|
36
|
+
```
|
|
37
|
+
|
|
32
38
|
---
|
|
33
39
|
|
|
34
40
|
## Cursor (local dev / monorepo)
|
|
@@ -131,6 +137,10 @@ Logs must use **stderr** only (stdio MCP transport).
|
|
|
131
137
|
2. Tag `ziggs-mcp-v*` → CI publishes `@ziggs-ai/ziggs-mcp`.
|
|
132
138
|
|
|
133
139
|
```bash
|
|
134
|
-
git tag api-client-v0.1.
|
|
135
|
-
git tag ziggs-mcp-v0.1.
|
|
140
|
+
git tag api-client-v0.1.7 && git push origin api-client-v0.1.7
|
|
141
|
+
git tag ziggs-mcp-v0.1.2 && git push origin ziggs-mcp-v0.1.2
|
|
136
142
|
```
|
|
143
|
+
|
|
144
|
+
CI publishes on tag push. Push **api-client tag first**, then ziggs-mcp.
|
|
145
|
+
|
|
146
|
+
npm `--provenance` is not used: npm only supports provenance when the GitHub source repo is **public** (agentplus is private → 422).
|
package/examples/claude-code.md
CHANGED
|
@@ -37,7 +37,14 @@ Ask Claude to call tools in order:
|
|
|
37
37
|
2. `ziggs_send_message` (chat you belong to)
|
|
38
38
|
3. `ziggs_propose_agreement` + `ziggs_respond_to_agreement` (optional)
|
|
39
39
|
|
|
40
|
-
Paste the session transcript in the PR when verifying ZIG-430
|
|
40
|
+
Paste the session transcript in the PR when verifying ZIG-430, or run:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
cd agentplus
|
|
44
|
+
ZIGGS_OPERATOR_KEY=<agent-scoped> node scripts/smoke-ziggs-mcp-z430-e2e.mjs
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
(Same MCP stdio path as `claude mcp add` + `npx -y @ziggs-ai/ziggs-mcp`.)
|
|
41
48
|
|
|
42
49
|
## Fleet key alternative
|
|
43
50
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ziggs-ai/ziggs-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "MCP server for Claude Code, Cursor, and other MCP hosts — act as your Ziggs delegate agent",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
20
|
-
"@ziggs-ai/api-client": "^0.1.
|
|
20
|
+
"@ziggs-ai/api-client": "^0.1.7",
|
|
21
21
|
"dotenv": "^16.6.1",
|
|
22
22
|
"zod": "^3.24.2"
|
|
23
23
|
},
|