@funnycode/myclaude 0.1.3 → 0.1.5

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.5] - 2026-06-12
4
+
5
+ ### Changed
6
+ - Updated README.md and README.zh-CN.md to reflect actual project state
7
+ - Added multi-model provider support documentation
8
+ - Added missing commands (review, feedback, summary, thinkback)
9
+ - Updated repository links and build instructions
10
+
3
11
  ## [0.1.0] - 2025-03-01
4
12
 
5
13
  ### Added
package/README.md CHANGED
@@ -1,104 +1,241 @@
1
- # myclaude
1
+ # @funnycode/myclaude
2
2
 
3
- An open-source AI coding assistant in your terminal powered by Claude.
3
+ **myclaude**一款开源的 AI 编程助手,运行在你的终端中。
4
+ 本项目是 Claude Code 的 fork/rebrand,致力于提供独立、开放的 AI 编码体验。
4
5
 
5
6
  ```bash
6
7
  npx @funnycode/myclaude
7
8
  ```
8
9
 
9
- Or install globally:
10
+ ---
10
11
 
11
- ```bash
12
- npm install -g @thomaslwq/myclaude
13
- npx @thomaslwq/myclaude
14
- ```
12
+ ## 特性
13
+
14
+ - **AI 对话** — 通过自然语言编写、重构、调试和解释代码
15
+ - **80+ 斜杠命令** — `/commit`, `/review`, `/plan`, `/test`, `/doctor` 等
16
+ - **文件操作** — 在 AI 指导下编辑、写入、创建和搜索文件
17
+ - **Git 集成** — 自动生成提交信息、管理分支、创建 PR
18
+ - **MCP 支持** — Model Context Protocol 可扩展工具集成
19
+ - **插件系统** — 安装和管理来自市场的插件
20
+ - **Agent 模式** — 多步自主任务执行
21
+ - **技能系统** — 通过可复用技能扩展能力
22
+ - **终端 UI** — React Ink 界面,支持语法高亮、主题和 Vim 模式
23
+ - **多模型支持** — Anthropic、AWS Bedrock、Google Vertex AI、Microsoft Foundry
15
24
 
16
25
  ---
17
26
 
18
- ## Features
27
+ ## 快速开始
19
28
 
20
- - **Natural Language Coding** — Write, refactor, debug, and explain code by chatting with AI
21
- - **Slash Commands** — 80+ built-in commands: `/commit`, `/review`, `/test`, `/doc`, and more
22
- - **Git Integration** — Automatic commit messages, PR creation, branch management
23
- - **MCP Support** — Extensible tool integrations via Model Context Protocol
24
- - **Plugin System** — Extend with community plugins
25
- - **Terminal UI** — Beautiful React Ink-based interface with syntax highlighting
29
+ ### 环境要求
26
30
 
27
- ---
31
+ - **Node.js >= 18**(也可以用 Bun)
32
+ - **Git**(部分功能需要)
33
+ - **Anthropic API 密钥** 或兼容的 AI 提供商
28
34
 
29
- ## Quick Start
35
+ ### 安装 & 运行
36
+
37
+ ```bash
38
+ npx @funnycode/myclaude
39
+ ```
30
40
 
31
- ### 1. Install
41
+ 或全局安装:
32
42
 
33
43
  ```bash
34
- npm install -g @thomaslwq/myclaude
44
+ npm install -g @funnycode/myclaude
45
+ myclaude
35
46
  ```
36
47
 
37
- ### 2. Set your API key
48
+ ### 设置 API Key
38
49
 
39
50
  ```bash
40
51
  export ANTHROPIC_API_KEY=sk-ant-...
41
- # Or use the myclaude alias:
52
+ # 或使用 myclaude 别名:
42
53
  export MYCLAUDE_API_KEY=sk-ant-...
43
54
  ```
44
55
 
45
- ### 3. Run
56
+ ---
57
+
58
+ ## 使用方式
46
59
 
47
60
  ```bash
48
- myclaude
61
+ npx @funnycode/myclaude # 启动交互式 REPL
62
+ npx @funnycode/myclaude -p "解释这个项目" # 直接运行 prompt
63
+ npx @funnycode/myclaude --version # 显示版本
64
+ npx @funnycode/myclaude --help # 显示帮助
49
65
  ```
50
66
 
51
67
  ---
52
68
 
53
- ## Usage
69
+ ## 斜杠命令
70
+
71
+ ### 核心
72
+ | 命令 | 描述 |
73
+ |------|------|
74
+ | `/help` | 显示帮助 |
75
+ | `/clear` | 清除对话 |
76
+ | `/exit` | 退出 |
77
+ | `/resume` | 恢复之前的会话 |
78
+ | `/rewind` | 回退对话 |
79
+ | `/rename` | 重命名当前会话 |
80
+ | `/config` | 配置设置 |
81
+ | `/doctor` | 诊断和验证安装 |
82
+
83
+ ### 代码 & Git
84
+ | 命令 | 描述 |
85
+ |------|------|
86
+ | `/commit` | 生成 Git 提交信息 |
87
+ | `/diff` | 显示 Git 差异 |
88
+ | `/branch` | 切换/创建分支 |
89
+ | `/plan` | 创建实施计划 |
90
+ | `/review` | 审查代码 |
91
+
92
+ ### AI & 模型
93
+ | 命令 | 描述 |
94
+ |------|------|
95
+ | `/model` | 切换 AI 模型 |
96
+ | `/effort` | 设置努力级别 |
97
+ | `/fast` | 切换快速模式 |
98
+ | `/brief` | 切换简报模式 |
99
+ | `/output-style` | 设置输出风格 |
100
+
101
+ ### 文件 & 上下文
102
+ | 命令 | 描述 |
103
+ |------|------|
104
+ | `/add-dir` | 添加目录到上下文 |
105
+ | `/context` | 显示当前上下文 |
106
+ | `/files` | 文件操作 |
107
+ | `/copy` | 复制内容 |
108
+
109
+ ### MCP & 插件
110
+ | 命令 | 描述 |
111
+ |------|------|
112
+ | `/mcp` | 管理 MCP 服务器 |
113
+ | `/plugin` | 管理插件和市场 |
114
+ | `/reload-plugins` | 重新加载所有插件 |
115
+ | `/hooks` | 管理钩子 |
116
+
117
+ ### 系统
118
+ | 命令 | 描述 |
119
+ |------|------|
120
+ | `/status` | 显示认证和会话状态 |
121
+ | `/stats` | 显示使用统计 |
122
+ | `/cost` | 显示费用信息 |
123
+ | `/color` | 设置颜色主题 |
124
+ | `/theme` | 设置 UI 主题 |
125
+ | `/keybindings` | 配置按键绑定 |
126
+ | `/vim` | 切换 Vim 模式 |
127
+ | `/terminal-setup` | 终端设置 |
128
+ | `/memory` | 管理 AI 记忆 |
129
+ | `/skills` | 管理技能 |
130
+ | `/sandbox` | 切换沙盒模式 |
131
+ | `/session` | 会话管理 |
132
+ | `/tag` | 标记当前会话 |
133
+ | `/export` | 导出会话 |
134
+ | `/upgrade` | 检查更新 |
135
+ | `/feedback` | 提交反馈 |
136
+ | `/summary` | 生成会话摘要 |
137
+ | `/thinkback` | 回溯思考过程 |
138
+
139
+ ---
140
+
141
+ ## 已确认可用的功能
142
+
143
+ 以下功能已经过测试并确认可用:
144
+
145
+ - ✅ 交互式 REPL(与 AI 对话)
146
+ - ✅ 打印模式(`-p` 参数)
147
+ - ✅ 模型切换(`/model`)
148
+ - ✅ 大多数斜杠命令
149
+ - ✅ MCP 服务器添加/删除/列表
150
+ - ✅ 插件安装
151
+ - ✅ Git 提交信息生成
152
+ - ✅ 文件编辑和创建
153
+ - ✅ 技能系统
154
+ - ✅ Vim 模式
155
+ - ✅ 配置管理
156
+ - ✅ Doctor 诊断
157
+ - ✅ 深色/浅色主题
158
+ - ✅ 按键绑定自定义
159
+ - ✅ API 密钥认证(兼容任何 Anthropic API 提供商)
160
+ - ✅ 多模型提供商(Bedrock / Vertex / Foundry)
161
+
162
+ ---
163
+
164
+ ## 环境变量
165
+
166
+ 支持 `MYCLAUDE_*` 和 `CLAUDE_CODE_*` 两种命名方式。
167
+ 两者同时设置时,`CLAUDE_CODE_*` 优先。
168
+
169
+ | 变量 | 描述 |
170
+ |------|------|
171
+ | `ANTHROPIC_API_KEY` / `MYCLAUDE_API_KEY` | API 密钥(必填) |
172
+ | `ANTHROPIC_BASE_URL` / `MYCLAUDE_BASE_URL` | 自定义 API 地址 |
173
+ | `MYCLAUDE_MODEL` | 模型覆盖 |
174
+ | `MYCLAUDE_SIMPLE` | 简洁模式(无 TUI) |
175
+ | `MYCLAUDE_BRIEF` | 简报模式 |
176
+ | `MYCLAUDE_DISABLE_THINKING` | 禁用思考 |
177
+ | `MYCLAUDE_PROACTIVE` | 主动模式 |
178
+ | `MYCLAUDE_USE_BEDROCK` | 使用 AWS Bedrock |
179
+ | `MYCLAUDE_USE_VERTEX` | 使用 Google Vertex AI |
180
+ | `MYCLAUDE_USE_FOUNDRY` | 使用 Microsoft Foundry |
181
+ | `MYCLAUDE_DISABLE_AUTO_MEMORY` | 禁用自动记忆 |
182
+ | `MYCLAUDE_SYNTAX_HIGHLIGHT` | 语法高亮主题 |
183
+ | `MYCLAUDE_IDLE_THRESHOLD_MINUTES` | 空闲超时(默认 75 分钟) |
184
+ | `MYCLAUDE_EFFORT_LEVEL` | 努力级别 |
185
+
186
+ ---
187
+
188
+ ## 开发
54
189
 
55
190
  ```bash
56
- myclaude # Start interactive REPL
57
- myclaude -p "explain this project" # Run with a prompt
58
- myclaude --version # Show version
59
- myclaude --help # Show help
191
+ git clone https://gitee.com/thomaslwq/myclaude.git
192
+ cd myclaude
193
+ bun install
194
+ bun run dev # 开发模式
195
+ bun run build # 构建到 dist/myclaude.js
196
+ bun run version # 验证 CLI 启动
197
+ ```
198
+
199
+ ### 构建产物
200
+
201
+ 构建脚本会将 `src/entrypoints/cli.tsx` 打包为单文件 `dist/myclaude.js`,并注入版本号等编译时常量。
202
+
203
+ ### 目录结构
204
+
60
205
  ```
206
+ src/
207
+ ├── commands/ # 斜杠命令实现
208
+ ├── components/ # React Ink UI 组件
209
+ ├── services/ # 后端服务(API、MCP、分析)
210
+ ├── tools/ # 工具实现
211
+ ├── utils/ # 共享工具函数
212
+ ├── entrypoints/ # CLI 入口
213
+ └── main.tsx # TUI 主入口
214
+ ```
215
+
216
+ ---
217
+
218
+ ## 贡献
61
219
 
62
- ### Common Commands
220
+ 欢迎提交 PR 参与贡献!
63
221
 
64
- | Command | Description |
65
- |---------|-------------|
66
- | `/commit` | Generate a git commit message |
67
- | `/review` | Review code changes |
68
- | `/test` | Generate and run tests |
69
- | `/doc` | Generate documentation |
70
- | `/config` | Configure settings |
71
- | `/doctor` | Diagnose installation |
72
- | `/model` | Change AI model |
73
- | `/clear` | Clear conversation |
74
- | `/cost` | Show usage statistics |
222
+ ### 指南
223
+
224
+ - Fork 仓库并创建功能分支
225
+ - 保持改动聚焦且最小化
226
+ - 提交前测试你的改动
227
+ - `main` 分支发起 PR
75
228
 
76
229
  ---
77
230
 
78
- ## Environment Variables
79
-
80
- You can use either `MYCLAUDE_*` or `CLAUDE_CODE_*` names.
81
- `CLAUDE_CODE_*` takes priority if both are set.
82
-
83
- | Variable | Description |
84
- |----------|-------------|
85
- | `ANTHROPIC_API_KEY` / `MYCLAUDE_API_KEY` | API key (required) |
86
- | `ANTHROPIC_BASE_URL` / `MYCLAUDE_BASE_URL` | Custom API base URL |
87
- | `MYCLAUDE_MODEL` | Model override |
88
- | `MYCLAUDE_SIMPLE` | Simple mode (no TUI) |
89
- | `MYCLAUDE_BRIEF` | Brief mode (shorter output) |
90
- | `MYCLAUDE_DISABLE_THINKING` | Disable thinking |
91
- | `MYCLAUDE_PROACTIVE` | Proactive mode |
92
- | `MYCLAUDE_USE_BEDROCK` | Use AWS Bedrock |
93
- | `MYCLAUDE_USE_VERTEX` | Use Google Vertex AI |
94
- | `MYCLAUDE_USE_FOUNDRY` | Use Microsoft Foundry |
95
- | `MYCLAUDE_DISABLE_AUTO_MEMORY` | Disable auto memory |
96
- | `MYCLAUDE_SYNTAX_HIGHLIGHT` | Syntax highlight theme |
97
- | `MYCLAUDE_IDLE_THRESHOLD_MINUTES` | Idle timeout (default: 75) |
98
- | `MYCLAUDE_EFFORT_LEVEL` | Effort level |
231
+ ## 相关链接
232
+
233
+ - **Gitee**: [https://gitee.com/thomaslwq/myclaude](https://gitee.com/thomaslwq/myclaude)
234
+ - **GitHub**: [https://github.com/thomaslwq/myclaude](https://github.com/thomaslwq/myclaude)
235
+ - **npm**: [https://www.npmjs.com/package/@funnycode/myclaude](https://www.npmjs.com/package/@funnycode/myclaude)
99
236
 
100
237
  ---
101
238
 
102
- ## License
239
+ ## 许可证
103
240
 
104
241
  MIT
package/README.zh-CN.md CHANGED
@@ -1,45 +1,56 @@
1
- # myclaude
1
+ # @funnycode/myclaude
2
2
 
3
- 开源的 AI 编码助手,运行在你的终端中——由 Claude 驱动。
3
+ **myclaude** — 开源的 AI 编程助手,运行在你的终端中。
4
+ 本项目是 Claude Code 的 fork/rebrand,致力于提供独立、开放的 AI 编码体验。
4
5
 
5
6
  ```bash
6
- npm install -g @funnycode/myclaude
7
- myclaude
7
+ npx @funnycode/myclaude
8
8
  ```
9
9
 
10
10
  ---
11
11
 
12
12
  ## 功能特性
13
13
 
14
- - **自然语言编程**通过对话编写、重构、调试和解释代码
15
- - **斜杠命令**80+ 内置命令:`/commit`、`/review`、`/test`、`/doc` 等
16
- - **Git 集成** 自动生成提交信息、创建 PR、管理分支
17
- - **MCP 支持**通过 Model Context Protocol 扩展工具集成
18
- - **插件系统**社区插件扩展
19
- - **终端 UI** 基于 React Ink 的界面,支持语法高亮
14
+ - **AI 对话** 通过自然语言编写、重构、调试和解释代码
15
+ - **80+ 斜杠命令** `/commit`、`/review`、`/plan`、`/test`、`/doctor` 等
16
+ - **文件操作** AI 指导下编辑、写入、创建和搜索文件
17
+ - **Git 集成**自动生成提交信息、管理分支、创建 PR
18
+ - **MCP 支持** Model Context Protocol 可扩展工具集成
19
+ - **插件系统**安装和管理市场插件
20
+ - **Agent 模式** — 多步自主任务执行
21
+ - **技能系统** — 通过可复用技能扩展能力
22
+ - **终端 UI** — React Ink 界面,支持语法高亮、主题和 Vim 模式
23
+ - **多模型支持** — Anthropic、AWS Bedrock、Google Vertex AI、Microsoft Foundry
20
24
 
21
25
  ---
22
26
 
23
27
  ## 快速开始
24
28
 
25
- ### 1. 安装
29
+ ### 环境要求
30
+
31
+ - **Node.js >= 18**(也可以用 Bun)
32
+ - **Git**(部分功能需要)
33
+ - **Anthropic API 密钥** 或兼容的 AI 提供商
34
+
35
+ ### 安装运行
26
36
 
27
37
  ```bash
28
- npm install -g @funnycode/myclaude
38
+ npx @funnycode/myclaude
29
39
  ```
30
40
 
31
- ### 2. 设置 API Key
41
+ 或全局安装:
32
42
 
33
43
  ```bash
34
- export ANTHROPIC_API_KEY=sk-ant-...
35
- # 或使用 myclaude 别名:
36
- export MYCLAUDE_API_KEY=sk-ant-...
44
+ npm install -g @funnycode/myclaude
45
+ myclaude
37
46
  ```
38
47
 
39
- ### 3. 运行
48
+ ### 设置 API Key
40
49
 
41
50
  ```bash
42
- myclaude
51
+ export ANTHROPIC_API_KEY=sk-ant-...
52
+ # 或使用 myclaude 别名:
53
+ export MYCLAUDE_API_KEY=sk-ant-...
43
54
  ```
44
55
 
45
56
  ---
@@ -47,25 +58,106 @@ myclaude
47
58
  ## 使用方法
48
59
 
49
60
  ```bash
50
- myclaude # 启动交互式会话
51
- myclaude -p "解释这个项目" # 直接执行 prompt
52
- myclaude --version # 查看版本
53
- myclaude --help # 查看帮助
61
+ npx @funnycode/myclaude # 启动交互式会话
62
+ npx @funnycode/myclaude -p "解释这个项目" # 直接执行 prompt
63
+ npx @funnycode/myclaude --version # 查看版本
64
+ npx @funnycode/myclaude --help # 查看帮助
54
65
  ```
55
66
 
56
- ### 常用命令
67
+ ---
68
+
69
+ ## 斜杠命令
70
+
71
+ ### 核心
72
+ | 命令 | 说明 |
73
+ |------|------|
74
+ | `/help` | 帮助 |
75
+ | `/clear` | 清除对话 |
76
+ | `/exit` | 退出 |
77
+ | `/resume` | 恢复之前的会话 |
78
+ | `/rewind` | 回退对话 |
79
+ | `/rename` | 重命名当前会话 |
80
+ | `/config` | 配置设置 |
81
+ | `/doctor` | 诊断和验证安装 |
57
82
 
83
+ ### 代码和 Git
58
84
  | 命令 | 说明 |
59
85
  |------|------|
60
86
  | `/commit` | 生成 Git 提交信息 |
87
+ | `/diff` | 查看 Git 差异 |
88
+ | `/branch` | 切换/创建分支 |
89
+ | `/plan` | 创建实施计划 |
61
90
  | `/review` | 代码审查 |
62
- | `/test` | 生成和运行测试 |
63
- | `/doc` | 生成文档 |
64
- | `/config` | 配置设置 |
65
- | `/doctor` | 诊断安装 |
91
+
92
+ ### AI 和模型
93
+ | 命令 | 说明 |
94
+ |------|------|
66
95
  | `/model` | 切换 AI 模型 |
67
- | `/clear` | 清除对话 |
68
- | `/cost` | 查看使用统计 |
96
+ | `/effort` | 设置努力级别 |
97
+ | `/fast` | 切换快速模式 |
98
+ | `/brief` | 切换简报模式 |
99
+ | `/output-style` | 设置输出风格 |
100
+
101
+ ### 文件和上下文
102
+ | 命令 | 说明 |
103
+ |------|------|
104
+ | `/add-dir` | 添加目录到上下文 |
105
+ | `/context` | 显示当前上下文 |
106
+ | `/files` | 文件操作 |
107
+ | `/copy` | 复制内容 |
108
+
109
+ ### MCP 和插件
110
+ | 命令 | 说明 |
111
+ |------|------|
112
+ | `/mcp` | 管理 MCP 服务器 |
113
+ | `/plugin` | 管理插件和市场 |
114
+ | `/reload-plugins` | 重新加载所有插件 |
115
+ | `/hooks` | 管理钩子 |
116
+
117
+ ### 系统
118
+ | 命令 | 说明 |
119
+ |------|------|
120
+ | `/status` | 显示认证和会话状态 |
121
+ | `/stats` | 显示使用统计 |
122
+ | `/cost` | 显示费用信息 |
123
+ | `/color` | 设置颜色主题 |
124
+ | `/theme` | 设置 UI 主题 |
125
+ | `/keybindings` | 配置按键绑定 |
126
+ | `/vim` | 切换 Vim 模式 |
127
+ | `/terminal-setup` | 终端设置 |
128
+ | `/memory` | 管理 AI 记忆 |
129
+ | `/skills` | 管理技能 |
130
+ | `/sandbox` | 切换沙盒模式 |
131
+ | `/session` | 会话管理 |
132
+ | `/tag` | 标记当前会话 |
133
+ | `/export` | 导出会话 |
134
+ | `/upgrade` | 检查更新 |
135
+ | `/feedback` | 提交反馈 |
136
+ | `/summary` | 生成会话摘要 |
137
+ | `/thinkback` | 回溯思考过程 |
138
+
139
+ ---
140
+
141
+ ## 已确认可用的功能
142
+
143
+ 以下功能已经过测试并确认可用:
144
+
145
+ - ✅ 交互式 REPL(与 AI 对话)
146
+ - ✅ 打印模式(`-p` 参数)
147
+ - ✅ 模型切换(`/model`)
148
+ - ✅ 大多数斜杠命令
149
+ - ✅ MCP 服务器添加/删除/列表
150
+ - ✅ 插件安装
151
+ - ✅ Git 提交信息生成
152
+ - ✅ 文件编辑和创建
153
+ - ✅ 技能系统
154
+ - ✅ Vim 模式
155
+ - ✅ 配置管理
156
+ - ✅ Doctor 诊断
157
+ - ✅ 深色/浅色主题
158
+ - ✅ 按键绑定自定义
159
+ - ✅ API 密钥认证(兼容任何 Anthropic API 提供商)
160
+ - ✅ 多模型提供商(Bedrock / Vertex / Foundry)
69
161
 
70
162
  ---
71
163
 
@@ -93,6 +185,57 @@ myclaude --help # 查看帮助
93
185
 
94
186
  ---
95
187
 
188
+ ## 开发
189
+
190
+ ```bash
191
+ git clone https://gitee.com/thomaslwq/myclaude.git
192
+ cd myclaude
193
+ bun install
194
+ bun run dev # 开发模式
195
+ bun run build # 构建到 dist/myclaude.js
196
+ bun run version # 验证 CLI 启动
197
+ ```
198
+
199
+ ### 构建产物
200
+
201
+ 构建脚本会将 `src/entrypoints/cli.tsx` 打包为单文件 `dist/myclaude.js`,并注入版本号等编译时常量。
202
+
203
+ ### 目录结构
204
+
205
+ ```
206
+ src/
207
+ ├── commands/ # 斜杠命令实现
208
+ ├── components/ # React Ink UI 组件
209
+ ├── services/ # 后端服务(API、MCP、分析)
210
+ ├── tools/ # 工具实现
211
+ ├── utils/ # 共享工具函数
212
+ ├── entrypoints/ # CLI 入口
213
+ └── main.tsx # TUI 主入口
214
+ ```
215
+
216
+ ---
217
+
218
+ ## 贡献
219
+
220
+ 欢迎提交 PR 参与贡献!
221
+
222
+ ### 指南
223
+
224
+ - Fork 仓库并创建功能分支
225
+ - 保持改动聚焦且最小化
226
+ - 提交前测试你的改动
227
+ - 向 `main` 分支发起 PR
228
+
229
+ ---
230
+
231
+ ## 相关链接
232
+
233
+ - **Gitee**: [https://gitee.com/thomaslwq/myclaude](https://gitee.com/thomaslwq/myclaude)
234
+ - **GitHub**: [https://github.com/thomaslwq/myclaude](https://github.com/thomaslwq/myclaude)
235
+ - **npm**: [https://www.npmjs.com/package/@funnycode/myclaude](https://www.npmjs.com/package/@funnycode/myclaude)
236
+
237
+ ---
238
+
96
239
  ## 许可证
97
240
 
98
241
  MIT
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.3",
8
- BUILD_TIME: "2026-06-12T12:35:23.304Z",
7
+ VERSION: "0.1.5",
8
+ BUILD_TIME: "2026-06-12T13:00:37.604Z",
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.3",
3
+ "version": "0.1.5",
4
4
  "private": false,
5
5
  "description": "An open-source AI coding assistant in your terminal - powered by Claude",
6
6
  "license": "MIT",