teamix-evo 0.11.0 → 0.12.0

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +5 -2
  3. package/package.json +17 -17
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Teamix Evo Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -197,8 +197,11 @@ TEAMIX_DEBUG=1 teamix-evo tokens init opentrek
197
197
  | `teamix-evo ui promote-to-biz <id...>` | 把 ui 组件提升为业务组件(8 模式:Coexist/Preset/Wrapper/Compose/Variant/Fork/TokenOnly/ManualReview) |
198
198
  | `teamix-evo biz-ui list-variants` | 列出 biz-ui 包内提供的业务变体 |
199
199
  | `teamix-evo biz-ui add <id...> --variant <name>` | 安装变体感知业务组件(`--variant` 必填) |
200
- | `teamix-evo templates list-variants` | 列出 templates 包内提供的页面模板变体 |
201
- | `teamix-evo templates add <id...> --variant <name>` | 安装变体感知页面模板(`--variant` 必填) |
200
+ | `teamix-evo blocks add <id...>` | 安装营销页区块(保留目录结构) |
201
+ | `teamix-evo blocks list [--installed] [--json]` | 列出可用/已安装区块 |
202
+ | `teamix-evo blocks upgrade [<id...>]` | 升级已安装的区块源码 |
203
+ | `teamix-evo templates list-variants` | _(deprecated → blocks)_ 列出 templates 包内提供的页面模板变体 |
204
+ | `teamix-evo templates add <id...> --variant <name>` | _(deprecated → blocks)_ 安装变体感知页面模板 |
202
205
  | `teamix-evo lint init [-y]` | 一键安装 ESLint + Stylelint token-discipline 规则集 |
203
206
  | `teamix-evo logs analyze [...]` | 分析 vibe-logger AI 调用链(`.log/ai/**/*.jsonl`) |
204
207
  | `teamix-evo logs trace [...]` | 按会话还原 AI 调用链(prompt → PreToolUse → PostToolUse → Stop) |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "teamix-evo",
3
- "version": "0.11.0",
3
+ "version": "0.12.0",
4
4
  "description": "AI Coding toolkit for product development - CLI entry point",
5
5
  "type": "module",
6
6
  "bin": {
@@ -22,26 +22,18 @@
22
22
  "files": [
23
23
  "dist"
24
24
  ],
25
- "scripts": {
26
- "build": "tsup",
27
- "dev": "tsup --watch",
28
- "test": "vitest run",
29
- "test:watch": "vitest",
30
- "typecheck": "tsc --noEmit",
31
- "lint": "tsc --noEmit"
32
- },
33
25
  "dependencies": {
34
- "@teamix-evo/biz-ui": "workspace:*",
35
- "@teamix-evo/tokens": "workspace:*",
36
- "@teamix-evo/registry": "workspace:*",
37
- "@teamix-evo/skills": "workspace:*",
38
- "@teamix-evo/blocks": "workspace:*",
39
- "@teamix-evo/ui": "workspace:*",
40
26
  "commander": "^12.0.0",
41
27
  "@clack/prompts": "^0.8.0",
42
28
  "handlebars": "^4.7.0",
43
29
  "execa": "^9.0.0",
44
- "kolorist": "^1.8.0"
30
+ "kolorist": "^1.8.0",
31
+ "@teamix-evo/registry": "0.12.0",
32
+ "@teamix-evo/biz-ui": "0.4.2",
33
+ "@teamix-evo/skills": "0.10.0",
34
+ "@teamix-evo/tokens": "0.7.2",
35
+ "@teamix-evo/ui": "0.6.0",
36
+ "@teamix-evo/blocks": "0.2.0"
45
37
  },
46
38
  "devDependencies": {
47
39
  "@types/node": "^20.0.0",
@@ -52,5 +44,13 @@
52
44
  "publishConfig": {
53
45
  "access": "public",
54
46
  "registry": "https://registry.npmjs.org/"
47
+ },
48
+ "scripts": {
49
+ "build": "tsup",
50
+ "dev": "tsup --watch",
51
+ "test": "vitest run",
52
+ "test:watch": "vitest",
53
+ "typecheck": "tsc --noEmit",
54
+ "lint": "tsc --noEmit"
55
55
  }
56
- }
56
+ }