@teamix-evo/skills 0.10.0 → 0.10.1
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/package.json
CHANGED
|
@@ -209,7 +209,16 @@ npx teamix-evo init --variant <name> -y
|
|
|
209
209
|
|
|
210
210
|
> 提示:`teamix-evo-manage` 是 entry skill,推荐**全局**装一次(`npx teamix-evo skills add teamix-evo-manage --scope global`)。create CLI 不会装它到 project,scaffold 完成后的 next-steps 会提示用户。
|
|
211
211
|
|
|
212
|
-
|
|
212
|
+
### 第三步:提交 init 产出(必做)
|
|
213
|
+
|
|
214
|
+
`teamix-evo init` 会生成大量文件(tokens / skills / ui 组件 / lint 配置等),**必须立刻 commit**,否则 IDE 会显示满屏 untracked 文件,后续协作极易冲突:
|
|
215
|
+
|
|
216
|
+
```bash
|
|
217
|
+
git add .
|
|
218
|
+
git commit -m "chore: init teamix-evo (<variant>)"
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
### 第四步:验证
|
|
213
222
|
|
|
214
223
|
```bash
|
|
215
224
|
pnpm dev # 立刻可跑
|
|
@@ -284,6 +293,12 @@ CLI 在 partial 状态会打印“恢复指引”面板:失败步骤名、错
|
|
|
284
293
|
|
|
285
294
|
- 已落地的 step 列表 + variant / IDE / scope。
|
|
286
295
|
- 全局 entry skill:若 `~/.qoder/skills/teamix-evo-manage` 不存在,补一句 `npx teamix-evo skills add teamix-evo-manage --scope global -y`(ADR 0033)。
|
|
296
|
+
- **必须 commit init 产出**:init 会生成 tokens / skills / agents-md / ui / lint 等大量文件,不提交会导致 IDE 满屏 untracked 文件。AI 必须在 init 成功后立即执行:
|
|
297
|
+
|
|
298
|
+
```bash
|
|
299
|
+
git add .
|
|
300
|
+
git commit -m "chore: init teamix-evo (<variant>)"
|
|
301
|
+
```
|
|
287
302
|
|
|
288
303
|
## 场景 4 · 升级
|
|
289
304
|
|