teamai-cli 0.20.0 → 0.21.0-beta.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/README.md +4 -2
- package/README.zh-CN.md +4 -2
- package/dist/index.js +2718 -1655
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
Make every AI coding agent work by the same harness.
|
|
18
18
|
|
|
19
|
-
Git-native management of skills, rules, and docs across Claude Code / Codex / CodeBuddy / WorkBuddy and more.
|
|
19
|
+
Git-native management of skills, rules, and docs across Claude Code / Codex / CodeBuddy / WorkBuddy / OpenCode and more.
|
|
20
20
|
|
|
21
21
|
For you or your whole team.
|
|
22
22
|
|
|
@@ -30,10 +30,12 @@ npm install -g teamai-cli
|
|
|
30
30
|
|
|
31
31
|
### Team admin / solo user
|
|
32
32
|
|
|
33
|
-
Create a shared-experience repo on your git host (GitHub, TGit, or
|
|
33
|
+
Create a shared-experience repo on your git host (GitHub, TGit, CNB, or a self-hosted Git service), **grant write access to team members**, then have them run `teamai init https://github.com/yourorg/yourrepo`.
|
|
34
34
|
|
|
35
35
|
> Solo use needs no separate repo setup: `teamai init` checks the target repo and creates it automatically if it doesn't exist.
|
|
36
36
|
|
|
37
|
+
> Self-hosted GitLab/Gitea-style services use your HTTPS credential helper or SSH key. Create the repository first; merge requests are created manually for now. See [Git Provider docs](docs/providers.md).
|
|
38
|
+
|
|
37
39
|
> **No team repo yet?** Start from a template pre-loaded with production-ready skills, rules, and review agents. Browse the [teamai-hub](https://github.com/teamai-hub) org, click **Use this template**, then `teamai init` against your new repo.
|
|
38
40
|
|
|
39
41
|
### Team members
|
package/README.zh-CN.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
面向 AI 智能体的团队 Harness 分发工具。
|
|
18
18
|
|
|
19
|
-
通过 Git 统一管理 skills、rules、docs,驾驭 Claude Code / Codex / CodeBuddy / WorkBuddy 等多种 AI 工具。
|
|
19
|
+
通过 Git 统一管理 skills、rules、docs,驾驭 Claude Code / Codex / CodeBuddy / WorkBuddy / OpenCode 等多种 AI 工具。
|
|
20
20
|
|
|
21
21
|
一个人也能用,团队用更强。
|
|
22
22
|
|
|
@@ -30,10 +30,12 @@ npm install -g teamai-cli
|
|
|
30
30
|
|
|
31
31
|
### 团队管理员 / 个人使用者
|
|
32
32
|
|
|
33
|
-
在 Git 托管平台(GitHub、TGit
|
|
33
|
+
在 Git 托管平台(GitHub、TGit、CNB 或自建 Git 服务)创建共享经验仓库,**授予团队成员写权限**,然后让他们运行 `teamai init https://github.com/yourorg/yourrepo`。
|
|
34
34
|
|
|
35
35
|
> 个人使用无需单独建仓:`teamai init` 会检查目标仓库,不存在时自动创建。
|
|
36
36
|
|
|
37
|
+
> 自建 GitLab/Gitea 等服务支持 HTTPS Credential Helper 或 SSH Key;需预先创建仓库,MR 暂时手动创建。详见 [Git Provider 说明](docs/providers.md)。
|
|
38
|
+
|
|
37
39
|
> **还没有团队仓库?** 可以从内置了成套 skills、rules、review agents 的模板起步。浏览 [teamai-hub](https://github.com/teamai-hub) org,点 **Use this template** 生成自己的仓库,再对它执行 `teamai init`。
|
|
38
40
|
|
|
39
41
|
### 团队成员
|