@funnycode/myclaude 0.1.21 → 0.1.22
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/CHANGELOG.md +12 -0
- package/dist/myclaude.js +3 -3
- package/dist/myclaude.mjs +3 -3
- package/package.json +125 -121
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.22] - 2026-06-17
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- `/feedback` command now submits issues to the myclaude GitHub repo (fixes #8)
|
|
7
|
+
- GitHub Issues URL redirected from `anthropics/claude-code` to `thomaslwq/myclaude`
|
|
8
|
+
- Claude Code config compatibility: myclaude now explicitly supports reading Claude Code's global configuration (`~/.claude/settings.json`, skills, MCPs, plugins) — both tools share the same config directory (fixes #7)
|
|
9
|
+
- Added `node-domexception` shim package to suppress npm deprecation warning during install (fixes #5)
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Git Bash fork issue on Windows — semaphore-based spawn concurrency limit prevents MSYS2 pty pool exhaustion (#6, already deployed in v0.1.21)
|
|
13
|
+
- npm `node-domexception@1.0.0` deprecated warning eliminated via local shim override
|
|
14
|
+
|
|
3
15
|
## [0.1.21] - 2026-06-17
|
|
4
16
|
|
|
5
17
|
### Fixed
|
package/dist/myclaude.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
// MACRO - build-time constants (injected by build.ts)
|
|
5
5
|
// MACRO injected by build script
|
|
6
6
|
globalThis.MACRO = {
|
|
7
|
-
VERSION: "0.1.
|
|
8
|
-
BUILD_TIME: "2026-06-
|
|
7
|
+
VERSION: "0.1.22",
|
|
8
|
+
BUILD_TIME: "2026-06-16T12:51:32.359Z",
|
|
9
9
|
PACKAGE_URL: "@funnycode/myclaude",
|
|
10
10
|
NATIVE_PACKAGE_URL: "@funnycode/myclaude",
|
|
11
11
|
VERSION_CHANGELOG: '',
|
|
@@ -406333,7 +406333,7 @@ async function submitFeedback(data, signal) {
|
|
|
406333
406333
|
};
|
|
406334
406334
|
}
|
|
406335
406335
|
}
|
|
406336
|
-
var import_react95, jsx_dev_runtime159, GITHUB_URL_LIMIT = 7250, GITHUB_ISSUES_REPO_URL = "https://github.com/
|
|
406336
|
+
var import_react95, jsx_dev_runtime159, GITHUB_URL_LIMIT = 7250, GITHUB_ISSUES_REPO_URL = "https://github.com/thomaslwq/myclaude/issues";
|
|
406337
406337
|
var init_Feedback = __esm(() => {
|
|
406338
406338
|
init_axios2();
|
|
406339
406339
|
init_state();
|
package/dist/myclaude.mjs
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
// MACRO - build-time constants (injected by build.ts)
|
|
5
5
|
// MACRO injected by build script
|
|
6
6
|
globalThis.MACRO = {
|
|
7
|
-
VERSION: "0.1.
|
|
8
|
-
BUILD_TIME: "2026-06-
|
|
7
|
+
VERSION: "0.1.22",
|
|
8
|
+
BUILD_TIME: "2026-06-16T12:51:32.359Z",
|
|
9
9
|
PACKAGE_URL: "@funnycode/myclaude",
|
|
10
10
|
NATIVE_PACKAGE_URL: "@funnycode/myclaude",
|
|
11
11
|
VERSION_CHANGELOG: '',
|
|
@@ -406333,7 +406333,7 @@ async function submitFeedback(data, signal) {
|
|
|
406333
406333
|
};
|
|
406334
406334
|
}
|
|
406335
406335
|
}
|
|
406336
|
-
var import_react95, jsx_dev_runtime159, GITHUB_URL_LIMIT = 7250, GITHUB_ISSUES_REPO_URL = "https://github.com/
|
|
406336
|
+
var import_react95, jsx_dev_runtime159, GITHUB_URL_LIMIT = 7250, GITHUB_ISSUES_REPO_URL = "https://github.com/thomaslwq/myclaude/issues";
|
|
406337
406337
|
var init_Feedback = __esm(() => {
|
|
406338
406338
|
init_axios2();
|
|
406339
406339
|
init_state();
|
package/package.json
CHANGED
|
@@ -1,121 +1,125 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@funnycode/myclaude",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "An open-source AI coding assistant in your terminal - powered by Claude",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"packageManager": "bun@1.3.5",
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "https://gitee.com/thomaslwq/myclaude.git"
|
|
12
|
-
},
|
|
13
|
-
"bugs": {
|
|
14
|
-
"url": "https://gitee.com/thomaslwq/myclaude/issues"
|
|
15
|
-
},
|
|
16
|
-
"homepage": "https://gitee.com/thomaslwq/myclaude",
|
|
17
|
-
"engines": {
|
|
18
|
-
"bun": ">=1.3.5",
|
|
19
|
-
"node": ">=18.0.0"
|
|
20
|
-
},
|
|
21
|
-
"scripts": {
|
|
22
|
-
"dev": "bun run ./src/dev-entry.ts",
|
|
23
|
-
"start": "bun run ./src/dev-entry.ts",
|
|
24
|
-
"build": "bun run ./scripts/build.ts",
|
|
25
|
-
"prepublishOnly": "bun run build",
|
|
26
|
-
"version": "bun run ./src/dev-entry.ts --version"
|
|
27
|
-
},
|
|
28
|
-
"bin": {
|
|
29
|
-
"myclaude": "
|
|
30
|
-
},
|
|
31
|
-
"files": [
|
|
32
|
-
"dist/",
|
|
33
|
-
"bin/",
|
|
34
|
-
"LICENSE",
|
|
35
|
-
"README.md",
|
|
36
|
-
"README.zh-CN.md",
|
|
37
|
-
"CHANGELOG.md",
|
|
38
|
-
"docs/funnycode.png"
|
|
39
|
-
],
|
|
40
|
-
"publishConfig": {
|
|
41
|
-
"access": "public"
|
|
42
|
-
},
|
|
43
|
-
"dependencies": {
|
|
44
|
-
"@alcalzone/ansi-tokenize": "*",
|
|
45
|
-
"@anthropic-ai/claude-agent-sdk": "*",
|
|
46
|
-
"@anthropic-ai/mcpb": "*",
|
|
47
|
-
"@anthropic-ai/sandbox-runtime": "*",
|
|
48
|
-
"@anthropic-ai/sdk": "*",
|
|
49
|
-
"@aws-sdk/client-bedrock-runtime": "*",
|
|
50
|
-
"@commander-js/extra-typings": "*",
|
|
51
|
-
"@growthbook/growthbook": "*",
|
|
52
|
-
"@modelcontextprotocol/sdk": "*",
|
|
53
|
-
"@opentelemetry/api": "*",
|
|
54
|
-
"@opentelemetry/api-logs": "*",
|
|
55
|
-
"@opentelemetry/core": "*",
|
|
56
|
-
"@opentelemetry/resources": "*",
|
|
57
|
-
"@opentelemetry/sdk-logs": "*",
|
|
58
|
-
"@opentelemetry/sdk-metrics": "*",
|
|
59
|
-
"@opentelemetry/sdk-trace-base": "*",
|
|
60
|
-
"@opentelemetry/semantic-conventions": "*",
|
|
61
|
-
"ajv": "*",
|
|
62
|
-
"asciichart": "*",
|
|
63
|
-
"auto-bind": "*",
|
|
64
|
-
"axios": "*",
|
|
65
|
-
"bidi-js": "*",
|
|
66
|
-
"chalk": "*",
|
|
67
|
-
"chokidar": "*",
|
|
68
|
-
"cli-boxes": "*",
|
|
69
|
-
"code-excerpt": "*",
|
|
70
|
-
"diff": "*",
|
|
71
|
-
"emoji-regex": "*",
|
|
72
|
-
"env-paths": "*",
|
|
73
|
-
"execa": "*",
|
|
74
|
-
"figures": "*",
|
|
75
|
-
"fuse.js": "*",
|
|
76
|
-
"get-east-asian-width": "*",
|
|
77
|
-
"google-auth-library": "*",
|
|
78
|
-
"highlight.js": "*",
|
|
79
|
-
"https-proxy-agent": "*",
|
|
80
|
-
"ignore": "*",
|
|
81
|
-
"indent-string": "*",
|
|
82
|
-
"ink": "*",
|
|
83
|
-
"jsonc-parser": "*",
|
|
84
|
-
"lodash-es": "*",
|
|
85
|
-
"lru-cache": "*",
|
|
86
|
-
"marked": "*",
|
|
87
|
-
"p-map": "*",
|
|
88
|
-
"picomatch": "*",
|
|
89
|
-
"proper-lockfile": "*",
|
|
90
|
-
"qrcode": "*",
|
|
91
|
-
"react": "*",
|
|
92
|
-
"react-reconciler": "*",
|
|
93
|
-
"semver": "*",
|
|
94
|
-
"shell-quote": "*",
|
|
95
|
-
"signal-exit": "*",
|
|
96
|
-
"stack-utils": "*",
|
|
97
|
-
"strip-ansi": "*",
|
|
98
|
-
"supports-hyperlinks": "*",
|
|
99
|
-
"tree-kill": "*",
|
|
100
|
-
"type-fest": "*",
|
|
101
|
-
"undici": "*",
|
|
102
|
-
"usehooks-ts": "*",
|
|
103
|
-
"vscode-jsonrpc": "*",
|
|
104
|
-
"vscode-languageserver-protocol": "*",
|
|
105
|
-
"vscode-languageserver-types": "*",
|
|
106
|
-
"wrap-ansi": "*",
|
|
107
|
-
"ws": "*",
|
|
108
|
-
"xss": "*",
|
|
109
|
-
"yaml": "*",
|
|
110
|
-
"zod": "*"
|
|
111
|
-
},
|
|
112
|
-
"optionalDependencies": {
|
|
113
|
-
"@ant/claude-for-chrome-mcp": "file:./shims/ant-claude-for-chrome-mcp",
|
|
114
|
-
"@ant/computer-use-input": "file:./shims/ant-computer-use-input",
|
|
115
|
-
"@ant/computer-use-mcp": "file:./shims/ant-computer-use-mcp",
|
|
116
|
-
"@ant/computer-use-swift": "file:./shims/ant-computer-use-swift",
|
|
117
|
-
"color-diff-napi": "file:./shims/color-diff-napi",
|
|
118
|
-
"modifiers-napi": "file:./shims/modifiers-napi",
|
|
119
|
-
"
|
|
120
|
-
|
|
121
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@funnycode/myclaude",
|
|
3
|
+
"version": "0.1.22",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "An open-source AI coding assistant in your terminal - powered by Claude",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"packageManager": "bun@1.3.5",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://gitee.com/thomaslwq/myclaude.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://gitee.com/thomaslwq/myclaude/issues"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://gitee.com/thomaslwq/myclaude",
|
|
17
|
+
"engines": {
|
|
18
|
+
"bun": ">=1.3.5",
|
|
19
|
+
"node": ">=18.0.0"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "bun run ./src/dev-entry.ts",
|
|
23
|
+
"start": "bun run ./src/dev-entry.ts",
|
|
24
|
+
"build": "bun run ./scripts/build.ts",
|
|
25
|
+
"prepublishOnly": "bun run build",
|
|
26
|
+
"version": "bun run ./src/dev-entry.ts --version"
|
|
27
|
+
},
|
|
28
|
+
"bin": {
|
|
29
|
+
"myclaude": "bin/myclaude.cjs"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist/",
|
|
33
|
+
"bin/",
|
|
34
|
+
"LICENSE",
|
|
35
|
+
"README.md",
|
|
36
|
+
"README.zh-CN.md",
|
|
37
|
+
"CHANGELOG.md",
|
|
38
|
+
"docs/funnycode.png"
|
|
39
|
+
],
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@alcalzone/ansi-tokenize": "*",
|
|
45
|
+
"@anthropic-ai/claude-agent-sdk": "*",
|
|
46
|
+
"@anthropic-ai/mcpb": "*",
|
|
47
|
+
"@anthropic-ai/sandbox-runtime": "*",
|
|
48
|
+
"@anthropic-ai/sdk": "*",
|
|
49
|
+
"@aws-sdk/client-bedrock-runtime": "*",
|
|
50
|
+
"@commander-js/extra-typings": "*",
|
|
51
|
+
"@growthbook/growthbook": "*",
|
|
52
|
+
"@modelcontextprotocol/sdk": "*",
|
|
53
|
+
"@opentelemetry/api": "*",
|
|
54
|
+
"@opentelemetry/api-logs": "*",
|
|
55
|
+
"@opentelemetry/core": "*",
|
|
56
|
+
"@opentelemetry/resources": "*",
|
|
57
|
+
"@opentelemetry/sdk-logs": "*",
|
|
58
|
+
"@opentelemetry/sdk-metrics": "*",
|
|
59
|
+
"@opentelemetry/sdk-trace-base": "*",
|
|
60
|
+
"@opentelemetry/semantic-conventions": "*",
|
|
61
|
+
"ajv": "*",
|
|
62
|
+
"asciichart": "*",
|
|
63
|
+
"auto-bind": "*",
|
|
64
|
+
"axios": "*",
|
|
65
|
+
"bidi-js": "*",
|
|
66
|
+
"chalk": "*",
|
|
67
|
+
"chokidar": "*",
|
|
68
|
+
"cli-boxes": "*",
|
|
69
|
+
"code-excerpt": "*",
|
|
70
|
+
"diff": "*",
|
|
71
|
+
"emoji-regex": "*",
|
|
72
|
+
"env-paths": "*",
|
|
73
|
+
"execa": "*",
|
|
74
|
+
"figures": "*",
|
|
75
|
+
"fuse.js": "*",
|
|
76
|
+
"get-east-asian-width": "*",
|
|
77
|
+
"google-auth-library": "*",
|
|
78
|
+
"highlight.js": "*",
|
|
79
|
+
"https-proxy-agent": "*",
|
|
80
|
+
"ignore": "*",
|
|
81
|
+
"indent-string": "*",
|
|
82
|
+
"ink": "*",
|
|
83
|
+
"jsonc-parser": "*",
|
|
84
|
+
"lodash-es": "*",
|
|
85
|
+
"lru-cache": "*",
|
|
86
|
+
"marked": "*",
|
|
87
|
+
"p-map": "*",
|
|
88
|
+
"picomatch": "*",
|
|
89
|
+
"proper-lockfile": "*",
|
|
90
|
+
"qrcode": "*",
|
|
91
|
+
"react": "*",
|
|
92
|
+
"react-reconciler": "*",
|
|
93
|
+
"semver": "*",
|
|
94
|
+
"shell-quote": "*",
|
|
95
|
+
"signal-exit": "*",
|
|
96
|
+
"stack-utils": "*",
|
|
97
|
+
"strip-ansi": "*",
|
|
98
|
+
"supports-hyperlinks": "*",
|
|
99
|
+
"tree-kill": "*",
|
|
100
|
+
"type-fest": "*",
|
|
101
|
+
"undici": "*",
|
|
102
|
+
"usehooks-ts": "*",
|
|
103
|
+
"vscode-jsonrpc": "*",
|
|
104
|
+
"vscode-languageserver-protocol": "*",
|
|
105
|
+
"vscode-languageserver-types": "*",
|
|
106
|
+
"wrap-ansi": "*",
|
|
107
|
+
"ws": "*",
|
|
108
|
+
"xss": "*",
|
|
109
|
+
"yaml": "*",
|
|
110
|
+
"zod": "*"
|
|
111
|
+
},
|
|
112
|
+
"optionalDependencies": {
|
|
113
|
+
"@ant/claude-for-chrome-mcp": "file:./shims/ant-claude-for-chrome-mcp",
|
|
114
|
+
"@ant/computer-use-input": "file:./shims/ant-computer-use-input",
|
|
115
|
+
"@ant/computer-use-mcp": "file:./shims/ant-computer-use-mcp",
|
|
116
|
+
"@ant/computer-use-swift": "file:./shims/ant-computer-use-swift",
|
|
117
|
+
"color-diff-napi": "file:./shims/color-diff-napi",
|
|
118
|
+
"modifiers-napi": "file:./shims/modifiers-napi",
|
|
119
|
+
"node-domexception": "file:./shims/node-domexception",
|
|
120
|
+
"url-handler-napi": "file:./shims/url-handler-napi"
|
|
121
|
+
},
|
|
122
|
+
"overrides": {
|
|
123
|
+
"node-domexception": "file:./shims/node-domexception"
|
|
124
|
+
}
|
|
125
|
+
}
|