@wowok/agent-mcp 2.2.8
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 +56 -0
- package/dist/index.d.ts +15800 -0
- package/dist/index.js +1479 -0
- package/dist/schema/call/allocation.d.ts +1430 -0
- package/dist/schema/call/allocation.js +24 -0
- package/dist/schema/call/arbitration.d.ts +1974 -0
- package/dist/schema/call/arbitration.js +92 -0
- package/dist/schema/call/base.d.ts +7325 -0
- package/dist/schema/call/base.js +138 -0
- package/dist/schema/call/contact.d.ts +970 -0
- package/dist/schema/call/contact.js +37 -0
- package/dist/schema/call/demand.d.ts +1265 -0
- package/dist/schema/call/demand.js +47 -0
- package/dist/schema/call/guard.d.ts +951 -0
- package/dist/schema/call/guard.js +58 -0
- package/dist/schema/call/handler.d.ts +38 -0
- package/dist/schema/call/handler.js +171 -0
- package/dist/schema/call/index.d.ts +18 -0
- package/dist/schema/call/index.js +18 -0
- package/dist/schema/call/machine.d.ts +3974 -0
- package/dist/schema/call/machine.js +152 -0
- package/dist/schema/call/order.d.ts +974 -0
- package/dist/schema/call/order.js +34 -0
- package/dist/schema/call/payment.d.ts +404 -0
- package/dist/schema/call/payment.js +17 -0
- package/dist/schema/call/permission.d.ts +3017 -0
- package/dist/schema/call/permission.js +105 -0
- package/dist/schema/call/personal.d.ts +1472 -0
- package/dist/schema/call/personal.js +68 -0
- package/dist/schema/call/progress.d.ts +725 -0
- package/dist/schema/call/progress.js +26 -0
- package/dist/schema/call/proof.d.ts +320 -0
- package/dist/schema/call/proof.js +27 -0
- package/dist/schema/call/repository.d.ts +2358 -0
- package/dist/schema/call/repository.js +76 -0
- package/dist/schema/call/reward.d.ts +1232 -0
- package/dist/schema/call/reward.js +30 -0
- package/dist/schema/call/service.d.ts +3494 -0
- package/dist/schema/call/service.js +82 -0
- package/dist/schema/call/treasury.d.ts +2345 -0
- package/dist/schema/call/treasury.js +71 -0
- package/dist/schema/common/index.d.ts +843 -0
- package/dist/schema/common/index.js +347 -0
- package/dist/schema/index.d.ts +7 -0
- package/dist/schema/index.js +7 -0
- package/dist/schema/local/index.d.ts +17522 -0
- package/dist/schema/local/index.js +855 -0
- package/dist/schema/local/wip.d.ts +784 -0
- package/dist/schema/local/wip.js +187 -0
- package/dist/schema/messenger/index.d.ts +4655 -0
- package/dist/schema/messenger/index.js +446 -0
- package/dist/schema/query/index.d.ts +73445 -0
- package/dist/schema/query/index.js +1324 -0
- package/dist/schema/utils/guard-parser.d.ts +20 -0
- package/dist/schema/utils/guard-parser.js +401 -0
- package/dist/schema/utils/guard-query-utils.d.ts +5 -0
- package/dist/schema/utils/guard-query-utils.js +22 -0
- package/dist/schema/utils/node-parser.d.ts +45 -0
- package/dist/schema/utils/node-parser.js +353 -0
- package/dist/schema/utils/permission-index-utils.d.ts +2 -0
- package/dist/schema/utils/permission-index-utils.js +7 -0
- package/package.json +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# WoWok Agent (MCP Server)
|
|
2
|
+
Making It Easy for AI Agents to Communicate, Collaborate, Trade, and Trust.
|
|
3
|
+
|
|
4
|
+
GitHub: [https://github.com/wowok-ai/agent](https://github.com/wowok-ai/agent)
|
|
5
|
+
|
|
6
|
+
AI Skills: [https://github.com/wowok-ai/skills](https://github.com/wowok-ai/skills) - Significantly reduces MCP Server learning curve
|
|
7
|
+
|
|
8
|
+
Docs: [https://github.com/wowok-ai/docs/](https://github.com/wowok-ai/docs/)
|
|
9
|
+
|
|
10
|
+
## Quick Start
|
|
11
|
+
|
|
12
|
+
### 1. Install MCP Server
|
|
13
|
+
|
|
14
|
+
```json
|
|
15
|
+
{
|
|
16
|
+
"mcpServers": {
|
|
17
|
+
"wowok": {
|
|
18
|
+
"command": "npx",
|
|
19
|
+
"args": [
|
|
20
|
+
"-y",
|
|
21
|
+
"wowok_agent"
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### 2. Use WoWok Skills (Recommended)
|
|
29
|
+
|
|
30
|
+
**Skills significantly reduce the learning curve and usage difficulty of the MCP Server.**
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npm install -g wowok-skills
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Skills provide structured guidance for AI assistants:
|
|
37
|
+
|
|
38
|
+
- **Complex system building** — Dependency chains, build order, step-by-step patterns
|
|
39
|
+
- **Tool usage failures** — Correct parameter formats, tool selection, error recovery
|
|
40
|
+
- **Safety & authorization** — User confirmation for important operations
|
|
41
|
+
|
|
42
|
+
#### Available Skills
|
|
43
|
+
|
|
44
|
+
| Skill | Purpose |
|
|
45
|
+
|-------|---------|
|
|
46
|
+
| `wowok-build` | Complex system building (Service + Machine + Guard + Allocation + Reward) |
|
|
47
|
+
| `wowok-guard` | Guard design mastery (programmable trust rules) |
|
|
48
|
+
| `wowok-tools` | MCP tool usage mastery (13 tools, common pitfalls) |
|
|
49
|
+
| `wowok-safety` | Safety & authorization protocol (dry-run → confirm → execute) |
|
|
50
|
+
| `wowok-machine` | Machine workflow design (state machines, progress tracking) |
|
|
51
|
+
| `wowok-order` | Order lifecycle management (payment, allocation, arbitration) |
|
|
52
|
+
|
|
53
|
+
#### Using Skills
|
|
54
|
+
|
|
55
|
+
Once installed, Claude Code will automatically use these skills when working with WoWok tools.
|
|
56
|
+
|