@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.
Files changed (62) hide show
  1. package/README.md +56 -0
  2. package/dist/index.d.ts +15800 -0
  3. package/dist/index.js +1479 -0
  4. package/dist/schema/call/allocation.d.ts +1430 -0
  5. package/dist/schema/call/allocation.js +24 -0
  6. package/dist/schema/call/arbitration.d.ts +1974 -0
  7. package/dist/schema/call/arbitration.js +92 -0
  8. package/dist/schema/call/base.d.ts +7325 -0
  9. package/dist/schema/call/base.js +138 -0
  10. package/dist/schema/call/contact.d.ts +970 -0
  11. package/dist/schema/call/contact.js +37 -0
  12. package/dist/schema/call/demand.d.ts +1265 -0
  13. package/dist/schema/call/demand.js +47 -0
  14. package/dist/schema/call/guard.d.ts +951 -0
  15. package/dist/schema/call/guard.js +58 -0
  16. package/dist/schema/call/handler.d.ts +38 -0
  17. package/dist/schema/call/handler.js +171 -0
  18. package/dist/schema/call/index.d.ts +18 -0
  19. package/dist/schema/call/index.js +18 -0
  20. package/dist/schema/call/machine.d.ts +3974 -0
  21. package/dist/schema/call/machine.js +152 -0
  22. package/dist/schema/call/order.d.ts +974 -0
  23. package/dist/schema/call/order.js +34 -0
  24. package/dist/schema/call/payment.d.ts +404 -0
  25. package/dist/schema/call/payment.js +17 -0
  26. package/dist/schema/call/permission.d.ts +3017 -0
  27. package/dist/schema/call/permission.js +105 -0
  28. package/dist/schema/call/personal.d.ts +1472 -0
  29. package/dist/schema/call/personal.js +68 -0
  30. package/dist/schema/call/progress.d.ts +725 -0
  31. package/dist/schema/call/progress.js +26 -0
  32. package/dist/schema/call/proof.d.ts +320 -0
  33. package/dist/schema/call/proof.js +27 -0
  34. package/dist/schema/call/repository.d.ts +2358 -0
  35. package/dist/schema/call/repository.js +76 -0
  36. package/dist/schema/call/reward.d.ts +1232 -0
  37. package/dist/schema/call/reward.js +30 -0
  38. package/dist/schema/call/service.d.ts +3494 -0
  39. package/dist/schema/call/service.js +82 -0
  40. package/dist/schema/call/treasury.d.ts +2345 -0
  41. package/dist/schema/call/treasury.js +71 -0
  42. package/dist/schema/common/index.d.ts +843 -0
  43. package/dist/schema/common/index.js +347 -0
  44. package/dist/schema/index.d.ts +7 -0
  45. package/dist/schema/index.js +7 -0
  46. package/dist/schema/local/index.d.ts +17522 -0
  47. package/dist/schema/local/index.js +855 -0
  48. package/dist/schema/local/wip.d.ts +784 -0
  49. package/dist/schema/local/wip.js +187 -0
  50. package/dist/schema/messenger/index.d.ts +4655 -0
  51. package/dist/schema/messenger/index.js +446 -0
  52. package/dist/schema/query/index.d.ts +73445 -0
  53. package/dist/schema/query/index.js +1324 -0
  54. package/dist/schema/utils/guard-parser.d.ts +20 -0
  55. package/dist/schema/utils/guard-parser.js +401 -0
  56. package/dist/schema/utils/guard-query-utils.d.ts +5 -0
  57. package/dist/schema/utils/guard-query-utils.js +22 -0
  58. package/dist/schema/utils/node-parser.d.ts +45 -0
  59. package/dist/schema/utils/node-parser.js +353 -0
  60. package/dist/schema/utils/permission-index-utils.d.ts +2 -0
  61. package/dist/schema/utils/permission-index-utils.js +7 -0
  62. 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
+