@wowok/agent-mcp 2.2.8 → 2.2.11
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 +5 -5
- package/dist/index.d.ts +388 -388
- package/dist/index.js +1 -1
- package/dist/schema/call/allocation.d.ts +23 -23
- package/dist/schema/call/arbitration.d.ts +23 -23
- package/dist/schema/call/base.d.ts +72 -72
- package/dist/schema/call/base.js +1 -1
- package/dist/schema/call/contact.d.ts +23 -23
- package/dist/schema/call/demand.d.ts +23 -23
- package/dist/schema/call/guard.d.ts +45 -45
- package/dist/schema/call/handler.d.ts +1 -1
- package/dist/schema/call/handler.js +1 -1
- package/dist/schema/call/machine.d.ts +28 -28
- package/dist/schema/call/order.d.ts +23 -23
- package/dist/schema/call/payment.d.ts +5 -5
- package/dist/schema/call/permission.d.ts +23 -23
- package/dist/schema/call/personal.d.ts +31 -31
- package/dist/schema/call/progress.d.ts +23 -23
- package/dist/schema/call/proof.d.ts +10 -10
- package/dist/schema/call/repository.d.ts +49 -49
- package/dist/schema/call/reward.d.ts +23 -23
- package/dist/schema/call/service.d.ts +38 -38
- package/dist/schema/call/treasury.d.ts +23 -23
- package/dist/schema/common/index.d.ts +1 -1
- package/dist/schema/common/index.js +1 -1
- package/dist/schema/local/index.d.ts +63 -63
- package/dist/schema/messenger/index.d.ts +3 -3
- package/dist/schema/query/index.d.ts +1446 -1446
- package/dist/schema/query/index.js +2 -2
- package/dist/schema/utils/guard-query-utils.d.ts +1 -1
- package/dist/schema/utils/guard-query-utils.js +1 -1
- package/dist/schema/utils/permission-index-utils.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# WoWok Agent (MCP Server)
|
|
2
2
|
Making It Easy for AI Agents to Communicate, Collaborate, Trade, and Trust.
|
|
3
3
|
|
|
4
|
-
GitHub: [https://github.com/wowok-ai/agent](https://github.com/wowok-ai/agent)
|
|
4
|
+
GitHub: [https://github.com/wowok-ai/agent](https://github.com/wowok-ai/agent)
|
|
5
5
|
|
|
6
|
-
AI Skills: [https://github.com/wowok-ai/skills](https://github.com/wowok-ai/skills)
|
|
6
|
+
AI Skills: [https://github.com/wowok-ai/skills](https://github.com/wowok-ai/skills)
|
|
7
7
|
|
|
8
|
-
Docs: [https://github.com/wowok-ai/docs/](https://github.com/wowok-ai/docs/)
|
|
8
|
+
Docs: [https://github.com/wowok-ai/docs/](https://github.com/wowok-ai/docs/)
|
|
9
9
|
|
|
10
10
|
## Quick Start
|
|
11
11
|
|
|
@@ -18,7 +18,7 @@ Docs: [https://github.com/wowok-ai/docs/](https://github.com/wowok-ai/docs/)
|
|
|
18
18
|
"command": "npx",
|
|
19
19
|
"args": [
|
|
20
20
|
"-y",
|
|
21
|
-
"
|
|
21
|
+
"@wowok/agent-mcp"
|
|
22
22
|
]
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -30,7 +30,7 @@ Docs: [https://github.com/wowok-ai/docs/](https://github.com/wowok-ai/docs/)
|
|
|
30
30
|
**Skills significantly reduce the learning curve and usage difficulty of the MCP Server.**
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npm install -g wowok
|
|
33
|
+
npm install -g @wowok/skills
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
Skills provide structured guidance for AI assistants:
|