@deveco-test/deveco-code-darwin-arm64 0.2.0-1.1 → 0.2.0-1.11

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,35 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.1.4 (2026-07-24)
4
+
5
+ ### DevEco Code 核心
6
+
7
+ #### 新特性
8
+
9
+ - 新增崩溃检测与日志自动上传,上传前对敏感信息做脱敏处理(`a7d9157`、`17e1bc4`、`99dafcc`、`3722c14`)
10
+ - 新增 TUI 使用遥测与会话级 AI 追踪打点(`0e9ff88`、`ab5d917`、`5f0ec58`)
11
+ - 同步会话级调试能力,增强 debug 命令的会话诊断(`2e41d04`)
12
+
13
+ #### 优化
14
+
15
+ - 清理冗余 `.ts` 技能脚本源文件(`af8bf56`)
16
+ - 修复斜杠命令需额外空格才能退出搜索模式的问题(`8754402`)
17
+ - 技能默认资源新增 `customize-deveco`,修复 `deveco-create-project` 的 codeCheck 校验规则(`89f9fd0`、`21a76ef`)
18
+ - 0-1 技能新增 `AGENTS.md` 配置引导,修复 goal 模式 `plan.md` 未指定 v2 状态管理(`845fa8d`、`7cd45ac`)
19
+
20
+ ### TUI 终端界面
21
+
22
+ #### 新特性
23
+
24
+ - 新增 `/btw` 浮层,支持会话中随时提追问(`3902edf`)
25
+ - 智能 Esc 中断:单击中断生成,再按确认取消对话(`510cbca`)
26
+ - 登录页展示错误信息,未通过时即时反馈原因(`29afa10`)
27
+
28
+ #### 缺陷修复
29
+
30
+ - 修复 JetBrains Terminal 下鼠标悬停异常(`806bd0a`)
31
+ - 修复反复 `Ctrl+C` 重启后终端黑屏(`cefa9a8`)
32
+
3
33
  ## v0.1.3 (2026-07-17)
4
34
 
5
35
  ### DevEco Code 核心
package/README.md CHANGED
@@ -241,7 +241,6 @@ DevEco Code 集成了常用 HarmonyOS 开发工具能力:
241
241
  | `hdc_log` | 收集/清理设备日志/查看连接模拟器 |
242
242
  | `verify_ui` | 执行 UI 操作验证功能是否正确 |
243
243
  | `arkts_check` | ArkTS 静态语法检查 |
244
- | `arkts_knowledge_search` | HarmonyOS 知识搜索 |
245
244
  | `switch_cwd` | 切换构建项目路径 |
246
245
 
247
246
  常见场景包括:从零到一创建 HarmonyOS 工程、增量开发页面、修复编译报错、真机调试。
package/bin/deveco CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deveco-test/deveco-code-darwin-arm64",
3
- "version": "0.2.0-1.1",
3
+ "version": "0.2.0-1.11",
4
4
  "preferUnplugged": true,
5
5
  "os": [
6
6
  "darwin"
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "ui-verification-mcp",
3
+ "version": "0.0.16",
4
+ "description": "",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "ui-verification-mcp": "bin/ui-verification-mcp.cjs"
9
+ },
10
+ "exports": {},
11
+ "files": [
12
+ "dist",
13
+ "bin"
14
+ ],
15
+ "engines": {
16
+ "node": ">=18"
17
+ },
18
+ "scripts": {
19
+ "build": "vite build",
20
+ "prepublishOnly": "npm run build",
21
+ "test": "vitest",
22
+ "test:real": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/",
23
+ "test:real:phone": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common",
24
+ "test:real:pc": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common tests/realCases/pc",
25
+ "test:emu:common": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples",
26
+ "test:emu:pc": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples tests/realCases/pc/preset tests/realCases/pc/customSamples",
27
+ "test:emu:tripleFold": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples tests/realCases/tripleFold/preset tests/realCases/tripleFold/customSamples",
28
+ "test:emu:wideFold": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples tests/realCases/wideFold/preset tests/realCases/wideFold/customSamples",
29
+ "test:emu:2in1Foldable": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples tests/realCases/2in1Foldable",
30
+ "test:emu:devSelfTest": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/published tests/realCases/common/customSamples/driverExam tests/realCases/common/customSamples/musicPlayer tests/realCases/common/customSamples/oh-bill tests/realCases/common/customSamples/readingApp",
31
+ "prelint": "tsc --noEmit",
32
+ "lint": "eslint . --ext .ts --report-unused-disable-directives --max-warnings 0",
33
+ "lint:fix": "eslint . --ext .ts --fix"
34
+ },
35
+ "keywords": [],
36
+ "author": "",
37
+ "dependencies": {
38
+ "ajv": "8.18.0"
39
+ },
40
+ "devDependencies": {
41
+ "@eslint/js": "^9.39.3",
42
+ "@modelcontextprotocol/sdk": "^1.29.0",
43
+ "@types/node": "24.10.1",
44
+ "eslint": "^9.39.3",
45
+ "eslint-config-prettier": "^10.1.8",
46
+ "eslint-plugin-prettier": "^5.2.6",
47
+ "eslint-plugin-simple-import-sort": "^12.1.1",
48
+ "globals": "^17.4.0",
49
+ "openai": "^6.39.1",
50
+ "tsx": "^4.22.4",
51
+ "typescript": "^5.9.3",
52
+ "typescript-eslint": "^8.55.0",
53
+ "vite": "^7.3.5",
54
+ "vitest": "^4.1.4"
55
+ },
56
+ "allowScripts": {
57
+ "esbuild@0.28.1": true
58
+ }
59
+ }