wowok_agent 2.2.6 → 2.2.7

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 (2) hide show
  1. package/README.md +14 -87
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -3,7 +3,9 @@ Making It Easy for AI Agents to Communicate, Collaborate, Trade, and Trust.
3
3
 
4
4
  GitHub: [https://github.com/wowok-ai/agent](https://github.com/wowok-ai/agent)
5
5
 
6
- Docs: [https://github.com/wowok-ai/docs/](https://github.com/wowok-ai/docs/)
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/)
7
9
 
8
10
  ## Quick Start
9
11
 
@@ -23,97 +25,19 @@ Docs: [https://github.com/wowok-ai/docs/](https://github.com/wowok-ai/docs/)
23
25
  }
24
26
  ```
25
27
 
26
- ### 2. Use Claude Skills (Optional but Recommended)
27
-
28
- This repository includes **Claude Skills** that help AI assistants use WoWok tools correctly. Skills solve common AI challenges:
29
-
30
- - **Complex system building** — Dependency chains, build order, step-by-step patterns
31
- - **Tool usage failures** — Correct parameter formats, tool selection, error recovery
32
- - **Safety & authorization** — User confirmation for important operations
33
-
34
- #### Setup Skills
35
-
36
- This repository includes a pre-configured `.claude/settings.json` that references the `skills/` directory. You have three options:
37
-
38
- **Option A: Use skills directly in this repo (Recommended for development)**
28
+ ### 2. Use WoWok Skills (Recommended)
39
29
 
40
- The repository already contains `.claude/settings.json` configured to use `skills/`:
30
+ **Skills significantly reduce the learning curve and usage difficulty of the MCP Server.**
41
31
 
42
32
  ```bash
43
- git clone https://github.com/wowok-ai/mcp.git
44
- cd mcp
45
- # Claude Code will automatically detect and use the skills
46
- ```
47
-
48
- **Option B: Copy skills to your own project**
49
-
50
- If you want to customize or own the skills in your project:
51
-
52
- ```bash
53
- # From your project directory
54
- mkdir -p .claude/skills
55
- cp -r /path/to/mcp/skills/* .claude/skills/
56
-
57
- # Or clone and copy
58
- git clone https://github.com/wowok-ai/mcp.git /tmp/wowok-mcp
59
- cp -r /tmp/wowok-mcp/skills/* .claude/skills/
60
- ```
61
-
62
- Then create `.claude/settings.json` in your project:
63
-
64
- ```json
65
- {
66
- "skills": {
67
- "directories": [
68
- "./skills"
69
- ]
70
- }
71
- }
72
- ```
73
-
74
- **Option C: Reference skills from mcp repo (Recommended for production)**
75
-
76
- Keep skills in the mcp repo and reference them from your project:
77
-
78
- ```json
79
- // .claude/settings.json in YOUR project
80
- {
81
- "skills": {
82
- "directories": [
83
- "/path/to/mcp/skills"
84
- ]
85
- }
86
- }
33
+ npm install -g wowok-skills
87
34
  ```
88
35
 
89
- This way you get updates when the mcp repo is updated.
90
-
91
- #### Migrating Skills to Your Project
92
-
93
- To fully migrate skills to your own project (for customization):
36
+ Skills provide structured guidance for AI assistants:
94
37
 
95
- ```bash
96
- # 1. Copy all skills
97
- mkdir -p .claude/skills
98
- cp -r /path/to/mcp/skills/* .claude/skills/
99
-
100
- # 2. Create settings.json
101
- cat > .claude/settings.json << 'EOF'
102
- {
103
- "skills": {
104
- "directories": [
105
- "./skills"
106
- ]
107
- }
108
- }
109
- EOF
110
-
111
- # 3. Verify structure
112
- ls -la .claude/skills/
113
- # Should show: wowok-build, wowok-guard, wowok-tools, etc.
114
- ```
115
-
116
- Now you can modify the skills in `.claude/skills/` to suit your needs.
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
117
41
 
118
42
  #### Available Skills
119
43
 
@@ -126,5 +50,8 @@ Now you can modify the skills in `.claude/skills/` to suit your needs.
126
50
  | `wowok-machine` | Machine workflow design (state machines, progress tracking) |
127
51
  | `wowok-order` | Order lifecycle management (payment, allocation, arbitration) |
128
52
 
129
- ## Development
53
+ #### Using Skills
130
54
 
55
+ Once installed, Claude Code will automatically use these skills when working with WoWok tools.
56
+
57
+ ## Development
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "wowok_agent",
3
- "version": "2.2.6",
3
+ "version": "2.2.7",
4
4
  "description": "Making It Easy for AI Agents to Communicate, Collaborate, Trade, and Trust.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "module": "node",
8
8
  "type": "module",
9
9
  "files": [
10
- "dist"
10
+ "dist",
11
+ "README.md"
11
12
  ],
12
13
  "bin": {
13
14
  "wowok_agent": "dist/index.js"