teamai-cli 0.24.0-beta.5 → 0.24.0-beta.7
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 +5 -1
- package/README.zh-CN.md +5 -1
- package/dist/index.js +1647 -1501
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,7 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
17
17
|
### 📝 Documentation
|
|
18
18
|
|
|
19
19
|
- Align the public usage guides, drop internal-only details, and cover the missing commands and configuration ([#442](https://github.com/Tencent/teamai-cli/pull/442)).
|
|
20
|
+
- Document `teamai projects` in the bilingual READMEs as the lead distribution control, including learnings isolation ([#490](https://github.com/Tencent/teamai-cli/pull/490), for [#487](https://github.com/Tencent/teamai-cli/issues/487)).
|
|
20
21
|
|
|
21
22
|
## [0.23.0](https://github.com/Tencent/teamai-cli/compare/v0.22.0...v0.23.0) (2026-09-08)
|
|
22
23
|
|
package/README.md
CHANGED
|
@@ -103,10 +103,13 @@ Team-wide settings an admin configures once and delivers to every member on `tea
|
|
|
103
103
|
|
|
104
104
|
| Capability | Command | What it does |
|
|
105
105
|
|------------|---------|--------------|
|
|
106
|
+
| **Projects** | `teamai projects` | Bind a working directory to one or more logical projects so it syncs that project's skills, knowledge, and isolated learnings. Orthogonal to roles. |
|
|
106
107
|
| **Roles** | `teamai roles` | Define role → namespace mappings so each member syncs only the skills for their role. |
|
|
107
108
|
| **Tags** | `teamai tags` | Tag skills / rules so members subscribe to just the tags they need. |
|
|
108
109
|
| **Sources** | `teamai source` | Subscribe to additional skill repos — other teams' public repos, or shared/public repos within your own org; subscribed skills sync automatically on pull. |
|
|
109
110
|
|
|
111
|
+
Learnings isolation: `learnings/` at the repo root is shared with everyone; `learnings/<project-id>/` is project-private. See the [usage guide](docs/usage-guide.md#multi-project-project-as-a-dimension-orthogonal-to-role).
|
|
112
|
+
|
|
110
113
|
## Team Execution
|
|
111
114
|
|
|
112
115
|
> One Team. One Harness. Every Agent.
|
|
@@ -237,7 +240,7 @@ Insight into how the team actually uses its AI tools, and a starting point for t
|
|
|
237
240
|
| `teamai pull` | Pull team resources and inject into local AI tools |
|
|
238
241
|
| `teamai push` | Push local resources to a branch and open a Merge Request |
|
|
239
242
|
| `teamai packages [install] [target]` | Install declared npm packages and Claude plugins; with a target, also update `teamai.yaml`. Bare `teamai packages` installs everything; `teamai packages install <target>` adds one |
|
|
240
|
-
| `teamai status` | Show local vs team repo diff |
|
|
243
|
+
| `teamai status` | Show local vs team repo diff and resource counts, including namespaced skills and nested docs |
|
|
241
244
|
| `teamai contribute` | Share session experience to team repo |
|
|
242
245
|
| `teamai recall <query>` | Search the team knowledge base (BM25 + graph-boost) |
|
|
243
246
|
| `teamai recall enable/disable/status` | Toggle or check recall state |
|
|
@@ -250,6 +253,7 @@ Insight into how the team actually uses its AI tools, and a starting point for t
|
|
|
250
253
|
| `teamai codebase --lint` | Knowledge graph health check |
|
|
251
254
|
| `teamai ci extract-mr --url <url>` | CI: extract knowledge from MR, post comments, write after merge |
|
|
252
255
|
| `teamai members` | List team members |
|
|
256
|
+
| `teamai projects` | Bind a working directory to one or more logical projects |
|
|
253
257
|
| `teamai roles` | Manage team roles and namespaces |
|
|
254
258
|
| `teamai tags` | Manage tag-based skill/rule filtering |
|
|
255
259
|
| `teamai skill exclude add/remove/list` | Manage skills excluded from local sync ([usage guide](docs/usage-guide.md#excluding-skills-you-dont-need)) |
|
package/README.zh-CN.md
CHANGED
|
@@ -103,10 +103,13 @@ teamai init https://github.com/yourorg/yourrepo --scope user
|
|
|
103
103
|
|
|
104
104
|
| 能力 | 命令 | 作用 |
|
|
105
105
|
|------|------|------|
|
|
106
|
+
| **项目(Projects)** | `teamai projects` | 将工作目录绑定到一个或多个逻辑项目,使其同步该项目的 skills、knowledge 以及隔离的 learnings。与角色正交。 |
|
|
106
107
|
| **角色(Roles)** | `teamai roles` | 定义「角色 → 命名空间」映射,让每位成员只同步与自身角色匹配的 skills。 |
|
|
107
108
|
| **标签(Tags)** | `teamai tags` | 给 skills / rules 打标签,成员只订阅自己需要的标签。 |
|
|
108
109
|
| **订阅源(Sources)** | `teamai source` | 订阅额外的 skill 仓库——其他团队的公开仓库,或本团队内的公共/共享仓库;已订阅的 skills 会在 pull 时自动同步。 |
|
|
109
110
|
|
|
111
|
+
learnings 隔离:仓库 `learnings/` 根目录对所有人共享;`learnings/<project-id>/` 为项目私有。详见[使用指南](docs/usage-guide.zh-CN.md#多项目project-作为与-role-正交的维度)。
|
|
112
|
+
|
|
110
113
|
## Team Execution
|
|
111
114
|
|
|
112
115
|
> One Team. One Harness. Every Agent.
|
|
@@ -237,7 +240,7 @@ teamai recall maintenance --update-quality # 为过时 skills / docs 生
|
|
|
237
240
|
| `teamai pull` | 拉取团队资源并注入到本地 AI 工具 |
|
|
238
241
|
| `teamai push` | 推送本地资源到分支并创建合并请求 |
|
|
239
242
|
| `teamai packages [install] [target]` | 安装团队 npm 包和 Claude 插件。裸 `teamai packages` 安装全部;`teamai packages install <target>` 添加单个并更新声明 |
|
|
240
|
-
| `teamai status` |
|
|
243
|
+
| `teamai status` | 显示本地与团队仓库的差异及资源数量,包含 namespace 下的技能和子目录中的文档 |
|
|
241
244
|
| `teamai contribute` | 将 session 经验分享到团队仓库 |
|
|
242
245
|
| `teamai recall <query>` | 搜索团队知识库(BM25 + 图谱增强) |
|
|
243
246
|
| `teamai recall enable/disable/status` | 开关或查看 recall 状态 |
|
|
@@ -250,6 +253,7 @@ teamai recall maintenance --update-quality # 为过时 skills / docs 生
|
|
|
250
253
|
| `teamai codebase --lint` | 知识图谱健康检查 |
|
|
251
254
|
| `teamai ci extract-mr --url <url>` | CI:从 MR 提取知识、发评论、合并后写入 |
|
|
252
255
|
| `teamai members` | 查看团队成员 |
|
|
256
|
+
| `teamai projects` | 将工作目录绑定到一个或多个逻辑项目 |
|
|
253
257
|
| `teamai roles` | 管理团队角色和命名空间 |
|
|
254
258
|
| `teamai tags` | 管理基于标签的 skill/rule 过滤 |
|
|
255
259
|
| `teamai skill exclude add/remove/list` | 管理不参与本地同步的 skills([使用指南](docs/usage-guide.zh-CN.md#排除个人不需要的-skill)) |
|