codegenie-toolbox-win32 0.0.1 → 0.0.2

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 ADDED
@@ -0,0 +1,58 @@
1
+ # CodeGenie Toolbox
2
+
3
+ CodeGenie Toolbox 是一个专为 HarmonyOS 开发者打造的桌面辅助工具箱。它集成了MCP、VSCode插件、Skill等能力,并能将这些能力无缝扩展到 Cursor、Trae、Claude Code 等现代 AI 编程助手和编辑器中。
4
+
5
+ ## ✨ 主要特性
6
+
7
+ - **DevEco MCP 集成**: 提供了一系列强大的开发工具,支持通过 MCP 协议在 AI 编辑器中直接调用:
8
+ - 🔨 **构建项目** (`build_project`)
9
+ - 🔍 **代码检查** (`check_ets_files`)
10
+ - ▶️ **启动应用** (`start_app`)
11
+ - 📱 **获得应用 UI 结构** (`get_app_ui_tree`)
12
+ - ⚡ **执行 UI 操作** (`perform_ui_action`)
13
+ - 📂 **创建 Harmony 工程** (`create_harmony_project`)
14
+
15
+ - **多编辑器支持**: 支持一键将工具配置安装到以下编辑器:
16
+ - Cursor
17
+ - Trae
18
+ - Claude Code
19
+ - OpenCode
20
+
21
+ - **跨平台体验**: 基于 Tauri 构建,提供轻量级、高性能的桌面应用体验。
22
+
23
+ ## 🛠️ 技术栈
24
+
25
+ - **前端**: Vue 3, TypeScript, Vite, Ant Design Vue, Pinia, Vue Router, Vue I18n
26
+ - **后端**: Rust, Tauri 2.0
27
+ - **构建工具**: Vite, Cargo
28
+
29
+ ## 🚀 快速开始
30
+
31
+ ### 环境要求
32
+
33
+ - Node
34
+ - Rust
35
+ - npm
36
+
37
+ ### 安装依赖
38
+
39
+ ```bash
40
+ npm install
41
+ ```
42
+
43
+ ### 开发模式运行
44
+
45
+ 启动开发服务器(前端 + Tauri 后端):
46
+
47
+ ```bash
48
+ npm run tauri dev
49
+ ```
50
+
51
+ ### 构建生产版本
52
+
53
+ 打包生成应用程序安装包:
54
+
55
+ ```bash
56
+ npm run tauri build
57
+ ```
58
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codegenie-toolbox-win32",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "CodeGenie Toolbox - Windows x64 version",
5
5
  "main": "index.js",
6
6
  "scripts": {},
@@ -25,8 +25,7 @@
25
25
  },
26
26
  "files": [
27
27
  "win32/",
28
- "README.md",
29
- "LICENSE"
28
+ "README.md"
30
29
  ],
31
30
  "os": [
32
31
  "win32"
@@ -38,6 +37,6 @@
38
37
  "node": ">=16.0.0"
39
38
  },
40
39
  "dist": {
41
- "tarball": "https://registry.npmjs.org/codegenie-toolbox-win32/-/codegenie-toolbox-win32-0.0.1.tgz"
40
+ "tarball": "https://registry.npmjs.org/codegenie-toolbox-win32/-/codegenie-toolbox-win32-0.0.2.tgz"
42
41
  }
43
42
  }