wangchuan 2.17.0 → 2.17.1
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
CHANGED
|
@@ -155,7 +155,7 @@ repo/
|
|
|
155
155
|
| `settings.json` | ✔ | 权限、插件、模型配置 / Permissions, plugins, model |
|
|
156
156
|
| `.claude.json` → `mcpServers` | ✔ | JSON 字段级提取,仅同步 MCP 配置 / Field-level extraction, MCP config only |
|
|
157
157
|
|
|
158
|
-
默认路径 / Default path:`~/.claude
|
|
158
|
+
默认路径 / Default path:`~/.claude/`
|
|
159
159
|
|
|
160
160
|
### Gemini(默认开启 / enabled by default)
|
|
161
161
|
|
|
@@ -191,7 +191,7 @@ Config at `~/.wangchuan/config.json`, see [.wangchuan/config.example.json](.wang
|
|
|
191
191
|
"profiles": {
|
|
192
192
|
"default": {
|
|
193
193
|
"openclaw": { "enabled": true, "workspacePath": "~/.openclaw/workspace", ... },
|
|
194
|
-
"claude": { "enabled": true, "workspacePath": "~/.claude
|
|
194
|
+
"claude": { "enabled": true, "workspacePath": "~/.claude", ... },
|
|
195
195
|
"gemini": { "enabled": true, "workspacePath": "~/.gemini", ... }
|
|
196
196
|
}
|
|
197
197
|
},
|
package/dist/bin/wangchuan.js
CHANGED
|
@@ -7,7 +7,7 @@ export const claude = {
|
|
|
7
7
|
name: 'claude',
|
|
8
8
|
profile: {
|
|
9
9
|
enabled: true,
|
|
10
|
-
workspacePath: path.join(os.homedir(), '.claude
|
|
10
|
+
workspacePath: path.join(os.homedir(), '.claude'),
|
|
11
11
|
syncFiles: [
|
|
12
12
|
{ src: 'CLAUDE.md', encrypt: false },
|
|
13
13
|
{ src: 'settings.json', encrypt: true },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"claude.js","sourceRoot":"","sources":["../../../src/agents/claude.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,IAAI,MAAM,MAAM,CAAC;AAGxB,MAAM,CAAC,MAAM,MAAM,GAAoB;IACrC,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE;QACP,OAAO,EAAE,IAAI;QACb,aAAa,EAAE,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,EAAE,
|
|
1
|
+
{"version":3,"file":"claude.js","sourceRoot":"","sources":["../../../src/agents/claude.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,IAAI,MAAM,MAAM,CAAC;AAGxB,MAAM,CAAC,MAAM,MAAM,GAAoB;IACrC,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE;QACP,OAAO,EAAE,IAAI;QACb,aAAa,EAAE,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,EAAE,SAAS,CAAC;QACjD,SAAS,EAAE;YACT,EAAE,GAAG,EAAE,WAAW,EAAM,OAAO,EAAE,KAAK,EAAE;YACxC,EAAE,GAAG,EAAE,eAAe,EAAE,OAAO,EAAE,IAAI,EAAG;SACzC;QACD,UAAU,EAAE;YACV;gBACE,GAAG,EAAO,cAAc;gBACxB,MAAM,EAAI,CAAC,YAAY,CAAC;gBACxB,QAAQ,EAAE,iBAAiB;gBAC3B,OAAO,EAAG,IAAI;aACf;SACF;KACF;IACD,YAAY,EAAE,EAAE,GAAG,EAAE,SAAS,EAAE;IAChC,SAAS,EAAE,EAAE,GAAG,EAAE,cAAc,EAAE,KAAK,EAAE,YAAY,EAAE;CACxD,CAAC"}
|
package/package.json
CHANGED
package/skill/claude/SKILL.md
CHANGED
|
@@ -23,8 +23,8 @@ At the end of each task session, evaluate whether the conversation produced any
|
|
|
23
23
|
|
|
24
24
|
| Category | What to look for | Where to update |
|
|
25
25
|
|----------|-----------------|-----------------|
|
|
26
|
-
| **New skill learned** | Reusable workflow, automation pattern, or domain knowledge | Create/update skill in `~/.claude
|
|
27
|
-
| **User preference discovered** | Coding style, tool preference, communication preference | Append to `~/.claude
|
|
26
|
+
| **New skill learned** | Reusable workflow, automation pattern, or domain knowledge | Create/update skill in `~/.claude/skills/` |
|
|
27
|
+
| **User preference discovered** | Coding style, tool preference, communication preference | Append to `~/.claude/CLAUDE.md` |
|
|
28
28
|
| **Memory worth preserving** | Key decisions, project context, recurring patterns | Append to agent memory file |
|
|
29
29
|
| **Config change made** | MCP servers added, settings changed, permissions updated | Already tracked by file sync |
|
|
30
30
|
|