@funnycode/myclaude 0.1.30 → 0.1.32

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
@@ -32,7 +32,7 @@ npx @funnycode/myclaude
32
32
 
33
33
  ### Prerequisites
34
34
 
35
- - **Node.js >= 18** (works with Bun too)
35
+ - **Bun >= 1.3.5** (works with Node.js >= 18 too)
36
36
  - **Git** (for some features)
37
37
  - **Anthropic API key** or compatible provider
38
38
 
@@ -202,6 +202,43 @@ Unlock achievements as you use myclaude. Track your progress with `/achievements
202
202
 
203
203
  ---
204
204
 
205
+ ## Built-in Integrations
206
+
207
+ ### CodeGraph — Semantic Code Intelligence
208
+
209
+ [CodeGraph](https://github.com/colbymchenry/codegraph) provides surgical code context for faster, more accurate edits.
210
+
211
+ **Setup:**
212
+ ```bash
213
+ # 1. Install CodeGraph CLI (one-time)
214
+ npm i -g @colbymchenry/codegraph
215
+
216
+ # 2. Initialize in your project
217
+ cd your-project
218
+ codegraph init
219
+
220
+ # 3. Enable the plugin in myclaude
221
+ /plugin enable codegraph
222
+ ```
223
+
224
+ Once enabled, CodeGraph's MCP server starts automatically and provides semantic code intelligence in every session.
225
+
226
+ ### ECC — Agent Operating System
227
+
228
+ [ECC](https://github.com/affaan-m/ECC) is a cross-harness agent ecosystem with 200+ skills, agents, hooks, and rules.
229
+
230
+ ECC is pre-registered as a marketplace — no manual setup needed.
231
+
232
+ ```bash
233
+ # Browse available ECC plugins
234
+ /plugin
235
+
236
+ # Install a plugin from ECC marketplace
237
+ /plugin install <plugin-name>@ecc
238
+ ```
239
+
240
+ ---
241
+
205
242
  ## Verified Working Features
206
243
 
207
244
  The following features have been tested and confirmed working:
package/README.zh-CN.md CHANGED
@@ -32,7 +32,7 @@ npx @funnycode/myclaude
32
32
 
33
33
  ### 环境要求
34
34
 
35
- - **Node.js >= 18**(也可以用 Bun
35
+ - **Bun >= 1.3.5**(也可以用 Node.js >= 18)
36
36
  - **Git**(部分功能需要)
37
37
  - **Anthropic API 密钥** 或兼容的 AI 提供商
38
38
 
@@ -223,6 +223,41 @@ myclaude 内置了一个终端电子宠物。每只宠物都根据你的用户 I
223
223
  - ✅ API 密钥认证(兼容任何 Anthropic API 提供商)
224
224
  - ✅ 多模型提供商(Bedrock / Vertex / Foundry)
225
225
 
226
+ ## 内置集成
227
+
228
+ ### CodeGraph — 语义代码智能
229
+
230
+ [CodeGraph](https://github.com/colbymchenry/codegraph) 提供精确的代码上下文,让 AI 更快更准确地完成编辑。
231
+
232
+ **配置方法:**
233
+ ```bash
234
+ # 1. 安装 CodeGraph CLI(一次性)
235
+ npm i -g @colbymchenry/codegraph
236
+
237
+ # 2. 在项目中初始化
238
+ cd your-project
239
+ codegraph init
240
+
241
+ # 3. 在 myclaude 中启用插件
242
+ /plugin enable codegraph
243
+ ```
244
+
245
+ 启用后,CodeGraph 的 MCP 服务器会自动启动,在每轮会话中提供语义代码智能。
246
+
247
+ ### ECC — 跨平台代理操作系统
248
+
249
+ [ECC](https://github.com/affaan-m/ECC) 是一个跨 harness 的代理生态系统,包含 200+ 技能、代理、hooks 和规则。
250
+
251
+ ECC 已预注册为市场源,无需手动添加。
252
+
253
+ ```bash
254
+ # 浏览可用的 ECC 插件
255
+ /plugin
256
+
257
+ # 从 ECC 市场安装插件
258
+ /plugin install <插件名>@ecc
259
+ ```
260
+
226
261
  ---
227
262
 
228
263
  ## 环境变量
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.30",
8
- BUILD_TIME: "2026-06-23T12:43:05.483Z",
7
+ VERSION: "0.1.32",
8
+ BUILD_TIME: "2026-06-23T13:14:30.622Z",
9
9
  PACKAGE_URL: "@funnycode/myclaude",
10
10
  NATIVE_PACKAGE_URL: "@funnycode/myclaude",
11
11
  VERSION_CHANGELOG: '',
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.30",
8
- BUILD_TIME: "2026-06-23T12:43:05.483Z",
7
+ VERSION: "0.1.32",
8
+ BUILD_TIME: "2026-06-23T13:14:30.622Z",
9
9
  PACKAGE_URL: "@funnycode/myclaude",
10
10
  NATIVE_PACKAGE_URL: "@funnycode/myclaude",
11
11
  VERSION_CHANGELOG: '',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funnycode/myclaude",
3
- "version": "0.1.30",
3
+ "version": "0.1.32",
4
4
  "private": false,
5
5
  "description": "An open-source AI coding assistant in your terminal - powered by Claude",
6
6
  "license": "MIT",