teamai-cli 0.21.0-beta.9 → 0.21.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.
- package/CHANGELOG.md +1 -0
- package/README.md +1 -1
- package/README.zh-CN.md +1 -1
- package/dist/index.js +529 -424
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -24,6 +24,7 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
24
24
|
|
|
25
25
|
### 🐛 修复
|
|
26
26
|
|
|
27
|
+
- **OpenCode recall agent 配置修复**(#332):内置 subagent 现在与团队 subagent 一样按目标工具渲染原生格式,避免启用 recall 后把 Claude 的 `name`/`tools` frontmatter 原样写入 OpenCode 并阻止其启动;不支持的目标格式会跳过并输出可操作警告
|
|
27
28
|
- **项目级 source 配置持久化**(#335):`teamai pull` 自动上报 usage 时不再丢弃 `source add`/`remove` 尚未提交的 `teamai.yaml` 改动,后续 pull 可正常部署订阅 skills 并写入安装清单
|
|
28
29
|
|
|
29
30
|
## [0.14.2] (2026-04-16)
|
package/README.md
CHANGED
|
@@ -109,7 +109,7 @@ teamai push → create branch + MR → reviewer approves + merges
|
|
|
109
109
|
SessionStart hook → teamai pull → synced to local AI tools
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
-
Members push changes via `teamai push`, which opens a Merge Request for review. Once merged, `teamai pull` (triggered automatically on session start via the SessionStart hook) syncs the latest resources locally. Skills sync to `~/.claude/skills/`, `~/.codex/skills/`, `~/.cursor/skills/`, `~/.codebuddy/skills/`, etc.
|
|
112
|
+
Members push changes via `teamai push`, which opens a Merge Request for review. Once merged, `teamai pull` (triggered automatically on session start via the SessionStart hook) syncs the latest resources locally. Skills sync to `~/.claude/skills/`, `~/.codex/skills/`, `~/.cursor/skills/`, `~/.codebuddy/skills/`, etc. In a **project-scope** install, SessionStart first creates that tool's project root (e.g. `<project>/.claude`) if it is missing, then pulls into it — a bare `teamai pull` still will not invent agent directories.
|
|
113
113
|
|
|
114
114
|
### Team Hooks
|
|
115
115
|
|
package/README.zh-CN.md
CHANGED
|
@@ -109,7 +109,7 @@ teamai push → 创建分支 + MR → reviewer 审批合并
|
|
|
109
109
|
SessionStart hook → teamai pull → 同步到本地 AI 工具
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
-
成员通过 `teamai push` 提交变更并创建合并请求供审核。合并后,`teamai pull`(由 SessionStart hook 在会话启动时自动触发)将最新资源同步到本地。Skills 会同步到 `~/.claude/skills/`、`~/.codex/skills/`、`~/.cursor/skills/`、`~/.codebuddy/skills/`
|
|
112
|
+
成员通过 `teamai push` 提交变更并创建合并请求供审核。合并后,`teamai pull`(由 SessionStart hook 在会话启动时自动触发)将最新资源同步到本地。Skills 会同步到 `~/.claude/skills/`、`~/.codex/skills/`、`~/.cursor/skills/`、`~/.codebuddy/skills/` 等目录。在 **project scope** 安装下,SessionStart 会先为当前工具创建项目根目录(例如 `<project>/.claude`),再 pull 写入;单独执行 `teamai pull` 仍不会凭空创建 Agent 目录。
|
|
113
113
|
|
|
114
114
|
### 团队 Hooks
|
|
115
115
|
|