teamai-cli 0.25.0-beta.0 โ 0.25.0-beta.2
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 +9 -0
- package/README.ja.md +278 -0
- package/README.ko.md +278 -0
- package/README.md +5 -4
- package/README.th.md +278 -0
- package/README.zh-CN.md +5 -4
- package/dist/index.js +1305 -689
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,9 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
6
6
|
|
|
7
7
|
### โจ Features
|
|
8
8
|
|
|
9
|
+
- `teamai remove` accepts `--force` to skip its confirmation prompt, spelled the same way as `teamai uninstall --force`. Without a TTY the prompt answers itself with no, so this is the only way to remove a resource from a script or a test (for [#591](https://github.com/Tencent/teamai-cli/issues/591)).
|
|
9
10
|
- MCP servers in `mcp/mcp.yaml` and hooks in `hooks/hooks.yaml` accept an optional `roles:` list and ship only to members holding one of those roles; a role change removes the previous role's entries on the next pull, and `teamai mcp list` / `teamai hooks list` show the restriction (for [#563](https://github.com/Tencent/teamai-cli/issues/563)).
|
|
11
|
+
- Agents can be scoped by role or project: `agents/<namespace>/` ships only to members whose `roles.yaml` / `projects.yaml` entry lists that namespace under a new optional `agents:` key, and a role change removes the previous namespaces' agents on the next pull (for [#563](https://github.com/Tencent/teamai-cli/issues/563)).
|
|
10
12
|
- First-class Kiro support: skills, steering rules, JSON subagents with CLI `agentSpawn` session-start hooks, and MCP sync to `.kiro/` (for [#500](https://github.com/Tencent/teamai-cli/issues/500)).
|
|
11
13
|
- Multi-project management: `role` and `project` together resolve resource namespaces, and project-private learnings are isolated ([#426](https://github.com/Tencent/teamai-cli/pull/426), for [#375](https://github.com/Tencent/teamai-cli/issues/375)).
|
|
12
14
|
- Data partitions auto-migrate a legacy `.teamai`, resume interrupted migrations, smoke-check the clone, and keep a git-ignored backup ([#439](https://github.com/Tencent/teamai-cli/pull/439), for [#374](https://github.com/Tencent/teamai-cli/issues/374)).
|
|
@@ -14,13 +16,20 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
14
16
|
|
|
15
17
|
### ๐ Bug Fixes
|
|
16
18
|
|
|
19
|
+
- `teamai tags subscribe` and `teamai tags unsubscribe` now invalidate the pull revision cache, as `teamai skill exclude` already does, so the next `teamai pull` applies the new subscriptions instead of reporting "Already synced" when the team repo has not changed.
|
|
20
|
+
- `teamai pull` now deletes a tombstoned agent under all three render extensions, so the Codex `.toml` and Kiro `.json` copies of a removed agent no longer survive on other machines. The cleanup also runs when the team repo rev is unchanged, so an upgrade reaches machines that already pulled the tombstone with an older CLI. `teamai remove agents <name>` also honours `enabledAgents` and no longer deletes from excluded tools. Fixes [#576](https://github.com/Tencent/teamai-cli/issues/576).
|
|
21
|
+
- `teamai remove rules <name>` and `teamai remove skills <name>` now honour `enabledAgents` and leave excluded tools untouched, matching the whitelist `teamai pull` already applies when it cleans up a tombstoned resource. Fixes [#590](https://github.com/Tencent/teamai-cli/issues/590).
|
|
22
|
+
- `teamai pull` and `teamai mcp inject` no longer write team MCP servers into installed tools outside `enabledAgents` or listed in `disabledAgents`, the same gate skills, rules, agents and hooks already use. Servers injected before the upgrade are left in place, and `teamai uninstall` still removes them.
|
|
23
|
+
- `teamai import --cache-status` and `--cache-gc` now expose their existing JSON output through the CLI `--json` option.
|
|
17
24
|
- Course-correction matching normalizes prompts and keywords to Unicode NFC, so composed and decomposed accents match. Stored prompt summaries and the 60-second correction window are unchanged. Fixes [#573](https://github.com/Tencent/teamai-cli/issues/573).
|
|
18
25
|
- Course-correction detection matches keywords in space-separated scripts as whole words, so Spanish "segundo" no longer counts as `undo` (for [#564](https://github.com/Tencent/teamai-cli/issues/564)).
|
|
26
|
+
- `teamai doctor` no longer assumes TGit before initialization and now exits with code 1 when any diagnostic check fails.
|
|
19
27
|
- MCP `requires` is resolved from `PATH` (including Windows `PATHEXT`), so `teamai mcp inject` no longer skips servers such as `uvx` on Windows ([#540](https://github.com/Tencent/teamai-cli/pull/540), for [#539](https://github.com/Tencent/teamai-cli/issues/539)).
|
|
20
28
|
- The GitHub and CNB providers resolve their CLI to a launchable absolute path and start it through cross-spawn, so on Windows they no longer answer "installed" while every call fails silently ([#520](https://github.com/Tencent/teamai-cli/pull/520)).
|
|
21
29
|
- `enabledAgents` now also gates CLI builtin deploy, CLAUDE.md-class injects, and last-pull skip-sync targets, so an already-installed tool outside the whitelist is not written to ([#510](https://github.com/Tencent/teamai-cli/issues/510)).
|
|
22
30
|
- `teamai status` counts rule files in subdirectories recursively ([#437](https://github.com/Tencent/teamai-cli/pull/437)).
|
|
23
31
|
- Codex Stop-phase contribution hints are deferred to the next prompt, so the host no longer rejects `additionalContext` ([#441](https://github.com/Tencent/teamai-cli/pull/441)).
|
|
32
|
+
- Agent version detection launches the agent CLI through cross-spawn, so on Windows an npm-installed agent CLI such as `codebuddy`, `claude` or `openclaw` (a `.cmd` shim) reports its version instead of an empty `agent_version`.
|
|
24
33
|
|
|
25
34
|
### ๐ Documentation
|
|
26
35
|
|
package/README.ja.md
ADDED
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="assets/teamai-cli-logo.svg" alt="teamai-cli">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
# TeamAI โ Make Every Team AI Native
|
|
6
|
+
|
|
7
|
+
> [English](README.md) | [ไธญๆ](README.zh-CN.md) | [ๆฅๆฌ่ช](README.ja.md) | [ํ๊ตญ์ด](README.ko.md) | [เนเธเธข](README.th.md)
|
|
8
|
+
|
|
9
|
+
[](https://github.com/Tencent/teamai-cli/actions/workflows/ci.yml)
|
|
10
|
+
[](https://www.npmjs.com/package/teamai-cli)
|
|
11
|
+
[](https://www.npmjs.com/package/teamai-cli)
|
|
12
|
+
[](LICENSE)
|
|
13
|
+
|
|
14
|
+
TeamAI ใฏใใใผใ ใฎ SkillsใRulesใMCPใใใฌใใธใ Claude CodeใCodexใCodeBuddyใWorkBuddyใOpenCodeใCursor ใชใฉใฎ AI Agents ๆจชๆญใง็ฎก็ใใพใใ
|
|
15
|
+
|
|
16
|
+
## ใณใณใใชใใฅใผใฟใผ
|
|
17
|
+
|
|
18
|
+
TeamAI ใซ่ฒข็ฎใใฆใใ ใใฃใใฟใชใใใซๆ่ฌใใพใใ
|
|
19
|
+
|
|
20
|
+
<a href="https://trendshift.io/repositories/123184?utm_source=repository-badge&utm_medium=badge&utm_campaign=badge-repository-123184" target="_blank" rel="noopener noreferrer"><img src="https://trendshift.io/api/badge/repositories/123184" alt="Tencent%2Fteamai-cli | Trendshift" width="250" height="55"/></a>
|
|
21
|
+
|
|
22
|
+
<a href="https://github.com/Tencent/teamai-cli/graphs/contributors">
|
|
23
|
+
<img src="https://contrib.rocks/image?repo=Tencent/teamai-cli" alt="Contributors" />
|
|
24
|
+
</a>
|
|
25
|
+
|
|
26
|
+
[contrib.rocks](https://contrib.rocks) ใง็ๆใใฆใใพใใ
|
|
27
|
+
|
|
28
|
+
## ใฏใคใใฏในใฟใผใ
|
|
29
|
+
|
|
30
|
+
### ใคใณในใใผใซ
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npm install -g teamai-cli
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### ใใผใ ็ฎก็่
/ ๅไบบๅฉ็จ
|
|
37
|
+
|
|
38
|
+
Git ใในใ๏ผGitHubใGitLabใGitCodeใCNBใTGitใใพใใฏใใฉใคใใผใ Git ใตใผใใน๏ผใซๅ
ฑๆใชใใธใใชใไฝๆใใ**ใใผใ ใกใณใใผใซๆธใ่พผใฟๆจฉ้ใไปไธ**ใใฆใใใ`teamai init https://github.com/yourorg/yourrepo` ใๅฎ่กใใพใใ
|
|
39
|
+
|
|
40
|
+
> **ใพใ ใใผใ ใชใใธใใชใใชใๅ ดๅใฏ๏ผ** ๆฌ็ชๅใใฎ skillsใrulesใreview agents ใๅ
ฅใฃใใใณใใฌใผใใใๅงใใใใพใใ[teamai-hub](https://github.com/teamai-hub) org ใ้ใใ**Fork** ใใฆใใใๆฐใใใชใใธใใชใซๅฏพใใฆ `teamai init` ใๅฎ่กใใฆใใ ใใใ
|
|
41
|
+
|
|
42
|
+
### ใใผใ ใกใณใใผ
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
# Choose one, depending on where you want resources installed
|
|
46
|
+
|
|
47
|
+
# Project-scope init (default, resources installed under the project directory)
|
|
48
|
+
cd /path/to/my-project
|
|
49
|
+
teamai init https://github.com/yourorg/yourrepo
|
|
50
|
+
|
|
51
|
+
# Or, user-scope init (resources installed under ~/)
|
|
52
|
+
teamai init https://github.com/yourorg/yourrepo --scope user
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
ๅๆๅๅพใฏใ็ฎก็่
ใๅ
ฌ้ใใๆๆฐใฎ skills / rules ใชใฉใฎ Harness ๆดๆฐใใAI ใปใใทใงใณ้ๅงๆใซ่ชๅใงๅใ่พผใพใใพใใๆๅๅๆใฏไธ่ฆใงใใ
|
|
56
|
+
|
|
57
|
+
> **ๅฎๅ
จใชๅฉ็จใฌใคใ:** [docs/usage-guide.md](docs/usage-guide.md)๏ผ[ไธญๆ็](docs/usage-guide.zh-CN.md)๏ผโ ใใผใ ไฝๆใใๆฅๅธธๅฉ็จใพใงใใซใใผใใพใใ
|
|
58
|
+
|
|
59
|
+
## ใใญใใฏใใขใผใญใใฏใใฃ
|
|
60
|
+
|
|
61
|
+
**Team Execution ร Team Context (beta) ร Team Improvement (beta)**:
|
|
62
|
+
|
|
63
|
+
| ใฌใคใคใผ | ๅฝนๅฒ | ๆฌ CLI ใงใฎ็พ็ถ |
|
|
64
|
+
|----------|------|-----------------|
|
|
65
|
+
| **Team Execution** | ใฉใฎ Agent ใใใผใ ใฎใใๆนใงๅใใ | `init` / `pull` / `push`ใskillsใrulesใagentsใhooksใMCPใenv |
|
|
66
|
+
| **Team Context** (beta) | ใฉใฎ Agent ใใใผใ ใ็่งฃใใ | recallใlearningsใcodebase graphใteamwiki... |
|
|
67
|
+
| **Team Improvement** (beta) | ๆฏๅใฎๅฎ่กใใใผใ ใๅผทใใใ | ๆฉๆฆใใผในใฎ share-learningsใsessionsใdigestใdashboard... |
|
|
68
|
+
|
|
69
|
+
## ๆฆ่ฆ
|
|
70
|
+
|
|
71
|
+
<table>
|
|
72
|
+
<thead>
|
|
73
|
+
<tr>
|
|
74
|
+
<th rowspan="2">Agent</th>
|
|
75
|
+
<th colspan="7">Team Execution</th>
|
|
76
|
+
<th colspan="3">Team Context (beta)</th>
|
|
77
|
+
<th colspan="3">Team Improvement (beta)</th>
|
|
78
|
+
</tr>
|
|
79
|
+
<tr>
|
|
80
|
+
<th>skills</th><th>rules</th><th>docs</th><th>env</th><th>agents</th><th>hooks</th><th>mcp</th>
|
|
81
|
+
<th>learnings</th><th>codebase</th><th>teamwiki</th>
|
|
82
|
+
<th>usage</th><th>sessions</th><th>dashboard</th>
|
|
83
|
+
</tr>
|
|
84
|
+
</thead>
|
|
85
|
+
<tbody>
|
|
86
|
+
<tr><td>Claude Code</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
87
|
+
<tr><td>Codex</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
88
|
+
<tr><td>Cursor</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
89
|
+
<tr><td>CodeBuddy</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
90
|
+
<tr><td>WorkBuddy</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
91
|
+
<tr><td>OpenCode</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
92
|
+
<tr><td>OpenClaw</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
93
|
+
<tr><td>Hermes</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
94
|
+
<tr><td>DeepSeek Harness</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
95
|
+
<tr><td>Qoder</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
96
|
+
<tr><td>Kiro</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
97
|
+
<tr><td>ZCode</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
98
|
+
</tbody>
|
|
99
|
+
</table>
|
|
100
|
+
|
|
101
|
+
**Git ใใญใใคใใผ** โ GitHub ยท GitLab ยท GitCode ยท CNB ยท TGit ยท ใใฉใคใใผใ Git ใตใผใในใ
|
|
102
|
+
|
|
103
|
+
### ้
ๅธใณใณใใญใผใซ
|
|
104
|
+
|
|
105
|
+
็ฎก็่
ใไธๅบฆ่จญๅฎใใใฐใ`teamai pull` ๆใซๅ
จใกใณใใผใธๅฑใใใผใ ๅ
ฑ้ใฎ่จญๅฎใงใใ
|
|
106
|
+
|
|
107
|
+
| ๆฉ่ฝ | ใณใใณใ | ๅ
ๅฎน |
|
|
108
|
+
|------|----------|------|
|
|
109
|
+
| **Projects** | `teamai projects` | ไฝๆฅญใใฃใฌใฏใใชใ 1 ใคไปฅไธใฎ่ซ็ใใญใธใงใฏใใซ็ดใฅใใใใฎใใญใธใงใฏใใฎ skillsใใใฌใใธใ้้ขใใใ learnings ใๅๆใใพใใRoles ใจใฏ็ดไบคใใพใใ |
|
|
110
|
+
| **Roles** | `teamai roles` | ใญใผใซ โ ๅๅ็ฉบ้ใฎๅฏพๅฟใๅฎ็พฉใใๅใกใณใใผใ่ชๅใฎใญใผใซๅใ skills ใ ใใๅๆใใใใใซใใพใใ |
|
|
111
|
+
| **Tags** | `teamai tags` | skills / rules ใซใฟใฐใไปใใใกใณใใผใฏๅฟ
่ฆใชใฟใฐใ ใใ่ณผ่ชญใใพใใ |
|
|
112
|
+
| **Sources** | `teamai source` | ่ฟฝๅ ใฎ skill ใชใใธใใชใ่ณผ่ชญใใพใใไปใใผใ ใฎๅ
ฌ้ใชใใธใใชใใ่ช็ต็นๅ
ใฎๅ
ฑๆ/ๅ
ฌ้ใชใใธใใชใๅฏพ่ฑกใงใใ่ณผ่ชญใใ skills ใฏ pull ๆใซ่ชๅๅๆใใใพใใ |
|
|
113
|
+
|
|
114
|
+
learnings ใฎ้้ข: ใชใใธใใช็ดไธใฎ `learnings/` ใฏๅ
จๅกใงๅ
ฑๆใ`learnings/<project-id>/` ใฏใใญใธใงใฏใๅฐ็จใงใใ่ฉณ็ดฐใฏ [usage guide](docs/usage-guide.md#multi-project-project-as-a-dimension-orthogonal-to-role) ใๅ็
งใใฆใใ ใใใ
|
|
115
|
+
|
|
116
|
+
## Team Execution
|
|
117
|
+
|
|
118
|
+
> One Team. One Harness. Every Agent.
|
|
119
|
+
|
|
120
|
+
TeamAI ใฏ skillsใrulesใdocsใhooks ใๅ
ฑๆ Git ใชใใธใใชใซ็ฝฎใใใpush โ ใฌใใฅใผใใฆใใผใธ โ pullใใฎๆตใใงๅใกใณใใผใฎใญใผใซใซ AI ใใผใซใธ้
ๅธใใพใใไปใใผใ ใๅ
ฑๆใชใใธใใชใฎ Harness ่ณผ่ชญใซใๅฏพๅฟใใพใใ
|
|
121
|
+
|
|
122
|
+
### ไป็ตใฟ
|
|
123
|
+
|
|
124
|
+
```
|
|
125
|
+
teamai push โ create branch + MR โ reviewer approves + merges
|
|
126
|
+
โ
|
|
127
|
+
SessionStart hook โ teamai pull โ synced to local AI tools
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
### ๅ
ฑๆใใใใใฎ
|
|
131
|
+
|
|
132
|
+
ๅใชใฝใผในใฏใในใฆใฎ Agent ใซๅฑใใใใพใใ
|
|
133
|
+
|
|
134
|
+
| ใชใฝใผใน | ใใผใ ใชใใธใใชๅ
| ๅ่ |
|
|
135
|
+
|----------|-------------------|------|
|
|
136
|
+
| **Skills** | `skills/<name>/SKILL.md` | |
|
|
137
|
+
| **Rules** | `rules/*.md` | |
|
|
138
|
+
| **Docs** | `docs/` | ใใญใธใงใฏใใฎๅบ็คใใญใฅใกใณใใใใใฉใซใใงใฏๅ
จไปถ่ชญใฟ่พผใฟใพใใ๏ผprogressive disclosure๏ผ |
|
|
139
|
+
| **Agents** | `agents/<name>.yaml` | |
|
|
140
|
+
| **Culture** | `culture.md` | ใใผใ ใฎใใใทใงใณใไพกๅค่ฆณใๅใๆนใฎๅๅใๅ Agent ใฎ CLAUDE.md / AGENTS.md ใซๆณจๅ
ฅใใใใในใฆใฎใปใใทใงใณใซๅผใ็ถใใใพใ |
|
|
141
|
+
| **CLAUDE.md** | `claudemd/*.md` | |
|
|
142
|
+
| **Env** | `env/` | ใใผใ ๅ
ฑ้ใฎ็ฐๅขๅคๆฐใจในใคใใใsecrets ใฏ็ฝฎใใชใใงใใ ใใ |
|
|
143
|
+
| **Hooks** | `hooks/hooks.yaml` | ๅ hook ใซ `roles:` ใไปใใ่ฉฒๅฝใญใผใซใๆใคใกใณใใผใซใ ใๅฑใใใใจใใงใใพใ |
|
|
144
|
+
| **MCP** | `mcp/mcp.yaml` | ๅ server ใซ `roles:` ใไปใใ่ฉฒๅฝใญใผใซใๆใคใกใณใใผใซใ ใๅฑใใใใจใใงใใพใ |
|
|
145
|
+
| **Packages** | `teamai.yaml` | ็พๆ็นใงใฏ npm ใใใฑใผใธใจ Claude Code plugins ใฎใฟ |
|
|
146
|
+
| **Models** | โ | ใพใ ใในใฆใฎ provider ใซใฏๆชๅฏพๅฟใงใ |
|
|
147
|
+
|
|
148
|
+
ใใกใคใซๅฝขๅผใจไธ้ฃใฎใฏใผใฏใใญใผใฏ [Usage Guide](docs/usage-guide.md) ใๅ็
งใใฆใใ ใใใ
|
|
149
|
+
|
|
150
|
+
## Team Context (beta)
|
|
151
|
+
|
|
152
|
+
> Every agent understands how the team works.
|
|
153
|
+
|
|
154
|
+
Harness ใฎ้
ๅธใซๅ ใใTeamAI ใฏ่็ฉใใใใผใ ็ต้จใจใณใผใๆง้ ใๆค็ดขๅฏ่ฝใชใใฌใใธใใผในใซๆด็ใใๅฟ
่ฆใซๅฟใใฆ AI ใ่ชๅใง recall ใใพใใ
|
|
155
|
+
|
|
156
|
+
### ็ต้จใฎ่ชๅๅ
ฑๆ
|
|
157
|
+
|
|
158
|
+
ใปใใทใงใณ็ตไบๆใStop hook ใฏ **friction**๏ผๆฉๆฆ๏ผใงในใณใขใใพใใใใใฏใ่ฆใใฆใใไพกๅคใใใใๅ
ๅใงใใAI ใไธญๆญใป่จๆญฃใใใใใผใซๅผใณๅบใใๆๅฆใใใๅคฑๆใใใใผใซใ AI ใไฝๅบฆใๅ่ฉฆ่กใใใใชใฉใงใใ้ทใใฆใ้ ่ชฟใชใปใใทใงใณ๏ผใใผใซๅผใณๅบใใฏๅคใใๆฉๆฆใใชใ๏ผใงใฏ็บ็ซใใพใใใๆฌๅฝใซๅ้กใจๅใๅใฃใใปใใทใงใณใ ใใๅฏพ่ฑกใงใใในใณใขใๅๅ้ซใใจใAI ใฏๆฌกใฎใใใซๆๆกใใพใใ
|
|
159
|
+
|
|
160
|
+
```
|
|
161
|
+
[teamai] This session may contain a problem worth documenting: you interrupted the AI twice, the AI retried failing tools 8 times.
|
|
162
|
+
|
|
163
|
+
Task: Fix duplicate project-level Hook injection
|
|
164
|
+
|
|
165
|
+
Consider running /teamai-share-learnings to summarize what you learned and share it with your team.
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
ใใณใใซใฏใ็บ็ซใฎใใฃใใใซใชใฃใ้ใผใญใฎ friction ใทใฐใใซใๅ
ฅใใพใใๅๅพใงใใๅ ดๅใฏใๆๅใฎใฟในใฏใใในใฏใใ 1 ่ก่ฆ็ดใไปใใพใใ`/teamai-share-learnings` skill ใฏใปใใทใงใณใ่ฆ็ดใใlearning ใใญใฅใกใณใใใใผใ ใชใใธใใชใธ็ดๆฅ push ใใพใใๅใปใใทใงใณใธใฎๆ็คบใฏๆๅคง 1 ๅใงใใใใผใ ใฏ `teamai.yaml` ใฎ `sharing.contributeHint.enabled: false` ใงใใณใใ ใใใชใใซใงใใพใ๏ผใกใณใใผๅดใฏใญใผใซใซ่จญๅฎใฎ `contributeHintEnabled`๏ผใStop hook ใฎใปใใฎๅฆ็ใฏใใฎใพใพๆฎใใพใใ
|
|
169
|
+
|
|
170
|
+
### Team Knowledge Recall
|
|
171
|
+
|
|
172
|
+
ใฟในใฏใฎๅใซใ่็ฉใใใใผใ ใใฌใใธใ AI ใ่ชๅๆค็ดขใงใใใใใซใใพใใใใฎๆฉ่ฝใฏ **ใใใฉใซใใชใ** ใงใๆ็คบ็ใซๆๅนๅใใๅฟ
่ฆใใใใพใใใใผใ ใฏ `teamai.yaml` ใง `sharing.recall.enabled: true` ใใใใฉใซใใซใงใใใกใณใใผใฏใญใผใซใซใงไธๆธใใงใใพใใ
|
|
173
|
+
|
|
174
|
+
```bash
|
|
175
|
+
teamai recall enable # on: deploy the teamai-recall subagent + inject guidance rules
|
|
176
|
+
teamai recall disable # off: remove the subagent and rules
|
|
177
|
+
teamai recall status # show effective state (team default + user override)
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
**ๆค็ดขใฏ subagent ็ต็ฑ**ใงใใๆๅนๅๅพใ`teamai pull` ใฏ็ตใฟ่พผใฟใฎ `teamai-recall` subagent ใๅ AI ใใผใซใฎ `agents/` ใซ้
ๅใใพใใAI ใฏใฟในใฏๅใซใใใๅผใณๅบใใพใใsubagent ใใญใผใฏใผใใๆฝๅบใใๆค็ดขใๅฎ่กใใใใใใใใฝใผในใใกใคใซใ่ชญใใงใใใผใ ใใฌใใธใฎๆง้ ๅใตใใชใผใ่ฟใใพใใๅ
ใซ้ข้ฃๆงใฎไบๅใใงใใฏ๏ผ`teamai recall --check`๏ผใ่กใใใฟในใฏใใใผใ ใใฌใใธใจ็ก้ขไฟใชใๆค็ดข่ชไฝใในใญใใใใพใใๅ
้จใงใฏ `teamai recall` ใณใใณใใใทใงใซๅฎ่กใใฆใใใๆๅใงใๅใใณใใณใใไฝฟใใพใใ
|
|
181
|
+
|
|
182
|
+
```bash
|
|
183
|
+
$ teamai recall "port conflict"
|
|
184
|
+
[1/2] MR review caught a port-conflict bug โ
1 [user]
|
|
185
|
+
Author: member-a | Score: 18.5 | Tags: troubleshooting, networking
|
|
186
|
+
|
|
187
|
+
[2/2] Deployment configuration best practices [project]
|
|
188
|
+
Author: member-b | Score: 12.0 | Tags: deploy, config
|
|
189
|
+
Matched: conflict | Missing: port
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
### Codebase Knowledge Graph
|
|
193
|
+
|
|
194
|
+
`teamai import` ใฏใฝใผในใชใใธใใชใ่งฃๆใใ`teamwiki/` ้
ไธใฎๆง้ ๅใฐใฉใใซใใพใใๆง้ ใๆ่ญใใๆค็ดขใๅฏ่ฝใซใชใใพใใ
|
|
195
|
+
|
|
196
|
+
```bash
|
|
197
|
+
teamai import --from-repo https://github.com/org/repo
|
|
198
|
+
teamai import --from-org myorg # batch import all repos
|
|
199
|
+
teamai codebase --extract /path/to/repo # local extract into teamwiki/
|
|
200
|
+
teamai codebase --deep-enrich --project my-service --output /path/to/repo # generate deep knowledge docs
|
|
201
|
+
teamai codebase --reconcile --output /path/to/repo # map product docs to code pages
|
|
202
|
+
teamai codebase --lint --output /path/to/repo # check the locally extracted graph
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
extract ใฏใAI enrichment ใในใญใใใใๅ ดๅใๆๆใ็ฉบใงใใ`teamwiki/evidence/code/<project>/_manifest.json` ใๆธใๅบใใฎใงใ`--deep-enrich` ใใๅงใใใใพใใ
|
|
206
|
+
|
|
207
|
+
ใฐใฉใใซใฏใณใณใใผใใณใใใคใณใฟใผใใงใผในใ่จญๅฎใใชใใธใใช้ใฎ import ใจใใธใๅ
ฅใใพใใ`teamai recall` ใฏใใใ graph-boost ใฎๅใฉใณใญใณใฐใซไฝฟใใพใใ
|
|
208
|
+
recall ใฎใใใใ codebase ใใผใธ็ฑๆฅใฎใจใใฏใ็ตๆใซ้ข้ฃใฝใผในใในใๅๆใใ `Sources:` ่กใไปใใพใใAgent ใฏใชใใธใใชใๆๅใใๆข็ดขใ็ดใใใใณใผใๅคๆดใฎ่ตท็นใซใงใใพใใ
|
|
209
|
+
|
|
210
|
+
ใจใใธใฏ 2 ๆฌใฎใใฉใใฏใๅๆใซ่ตฐใใ้่คๆใฏ AST ๅดใๅชๅ
ใใใพใใ
|
|
211
|
+
|
|
212
|
+
- **AST track**๏ผTypeScript/JavaScriptใPythonใGo๏ผ: WASM ใฎ [tree-sitter](https://tree-sitter.github.io/) ใใผใตใผใ `import`/`require`ใๅผใณๅบใ็ฎๆใTS ใฎ `implements` ๅฅใใใใกใคใซ้ใฎๆญฃ็ขบใช `DEPENDS_ON` / `REFERENCES` / `IMPLEMENTS` ใจใใธใซ่งฃๆฑบใใพใ๏ผใฟใฐใฏ `code-ast`ใไฟก้ ผๅบฆใฎ้ใฟไปใ๏ผใ
|
|
213
|
+
- **Heuristic track**๏ผJava/Rust ใๅซใๅ
จ่จ่ช๏ผ: ๆญฃ่ฆ่กจ็พใใผในใฎๆฝๅบ๏ผใฟใฐใฏ `code-heuristic`๏ผใAST track ใๅฏพ่ฑกใซใใชใ่จ่ชใใซใใผใใพใใ
|
|
214
|
+
|
|
215
|
+
WASM ใใผใตใผใฏ็ด็ฒใช JavaScript ไพๅญใงใใใคใใฃใใฎใใผใซใใงใผใณใฏไธ่ฆใงใใไฝใใใฎ็็ฑใง่ชญใฟ่พผใใชใๅ ดๅใๆฝๅบใฏ heuristic track ใซใใฉใผใซใใใฏใใ`AST_UNAVAILABLE` ใฎ gap ใ่จ้ฒใใพใใ`TEAMAI_SKIP_AST=1` ใ่จญๅฎใใใจใheuristic ใฎใฟใฎๆฝๅบใๅผทๅถใงใใพใใ
|
|
216
|
+
|
|
217
|
+
## Team Improvement (beta)
|
|
218
|
+
|
|
219
|
+
> Every execution makes the entire team smarter.
|
|
220
|
+
|
|
221
|
+
### Maintenance
|
|
222
|
+
|
|
223
|
+
skills ใจใใฌใใธใๅขใใใใใใผใ ใไฝฟใใชใใชใฃใใใฎใๆด็ใใพใใ`teamai recall maintenance` ใฏไฟก้ ผๅบฆใฎไฝใ learnings ใใขใผใซใคใใใๅคใ skillsใrulesใdocs ใใฏใชใผใณใขใใใพใใฏๆดๆฐๅ่ฃใจใใฆๅฐไปใใใพใใ
|
|
224
|
+
|
|
225
|
+
```bash
|
|
226
|
+
teamai recall maintenance --prune --dry-run # preview
|
|
227
|
+
teamai recall maintenance --prune --archive # archive unused learnings
|
|
228
|
+
teamai recall maintenance --update-quality # draft updates for stale skills / docs
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
ใใผใ ใ AI ใใผใซใๅฎ้ใซใฉใไฝฟใฃใฆใใใใฎๆดๅฏใจใใปใใทใงใณใฎๆฉๆฆใๅ
ฑๆใฎ skillsใrulesใใใฌใใธใธๅคใใๅบ็บ็นใงใใ
|
|
232
|
+
|
|
233
|
+
| ๆฉ่ฝ | ใณใใณใ | ่กจ็คบๅ
ๅฎน |
|
|
234
|
+
|------|----------|----------|
|
|
235
|
+
| **Usage** | `teamai digest` | ใใผใ ใฎ้ฑๆฌก digest โ ็ด่ฟ 7 ๆฅใฎๆๅ็ใpromptใใขใฏใใฃใๆ้ใๆจๅฎใณในใใcacheใ่จๆญฃใฎๅพๅใจใ็ดฏ่จๅคใ |
|
|
236
|
+
| **Sessions** | `teamai session save` | ใใฉใคใใทใผใ้คๅปใใใปใใทใงใณ่ฆ็ด๏ผใใผใซๅใprompt ใฟใผใณใไปๅ
ฅ๏ผใdigest ใฎ Session Highlights ใฎๅ
ฅๅใซใชใใพใใ |
|
|
237
|
+
| **Dashboard** | `teamai dashboard` | ใฉใคใใปใใทใงใณใจใ็ด่ฟ 7 ๆฅใใใฎๅใฎ 7 ๆฅใจๆฏ่ผใใใญใผใซใซใใฌใณใใ็คบใ Web dashboardใ |
|
|
238
|
+
| **KB Health** | `teamai dashboard` โ KB Health | ็ตใฟ่พผใฟใฎ dashboard ใใผใธใใใฌใใธใใผในใฎๅฉ็จใจๅฅๅ
จๆง๏ผใฟใคใๅฅใซใใฌใใธใใใ recall ใใใใจใณใใชใๆฒ้ปใจใณใใชใrecall ใใฌใณใใไฝ่
ใฎ่ฒข็ฎใใกใณใใใณในใณใณใฝใผใซ๏ผใๅ ฑๅใใพใใ |
|
|
239
|
+
|
|
240
|
+
## ใณใใณใ
|
|
241
|
+
|
|
242
|
+
| ใณใใณใ | ่ชฌๆ |
|
|
243
|
+
|----------|------|
|
|
244
|
+
| `teamai init` | ๅๆๅ: OAuth ใญใฐใคใณใใชใใธใใช้ฃๆบใใกใณใใผ็ป้ฒใhooks ๆณจๅ
ฅ |
|
|
245
|
+
| `teamai pull` | ใใผใ ใชใฝใผในใๅๅพใใใญใผใซใซ AI ใใผใซใธๆณจๅ
ฅ |
|
|
246
|
+
| `teamai push` | ใญใผใซใซใชใฝใผในใใใฉใณใใธ push ใใMerge Request ใ้ใ |
|
|
247
|
+
| `teamai packages [install] [target]` | ๅฎฃ่จๆธใฟใฎ npm ใใใฑใผใธใจ Claude plugins ใใคใณในใใผใซใtarget ๆๅฎๆใฏ `teamai.yaml` ใๆดๆฐใๅผๆฐใชใใฎ `teamai packages` ใฏใในใฆใคใณในใใผใซใ`teamai packages install <target>` ใฏ 1 ไปถ่ฟฝๅ |
|
|
248
|
+
| `teamai status` | ใญใผใซใซใจใใผใ ใชใใธใใชใฎๅทฎๅใจใชใฝใผในไปถๆฐใ่กจ็คบใๅๅ็ฉบ้ไปใ skills ใจๅ
ฅใๅญใฎ docs ใๅซใ |
|
|
249
|
+
| `teamai contribute` | ใปใใทใงใณ็ต้จใใใผใ ใชใใธใใชใธๅ
ฑๆ |
|
|
250
|
+
| `teamai recall <query>` | ใใผใ ใใฌใใธใใผในใๆค็ดข๏ผBM25 + graph-boost๏ผ |
|
|
251
|
+
| `teamai recall enable/disable/status` | recall ใฎใชใณ/ใชใใใพใใฏ็ถๆ
็ขบ่ช |
|
|
252
|
+
| `teamai recall promote [learningId]` | ไฟก้ ผๅบฆใฎ้ซใ learning ใๆญฃๅผใใฌใใธ๏ผskills/rules/docs๏ผใธๆๆ ผ |
|
|
253
|
+
| `teamai recall maintenance` | ใใฌใใธใใผในใฎๅฅๅ
จๆงใ็ถญๆ: ไฝไฟก้ ผๅบฆ learnings ใฎๆด็ใไฟก้ ผๅบฆในใณใขใฎๆธใๆปใใๅคใใจใณใใชใฎๅฐไปใ |
|
|
254
|
+
| `teamai import` | ใใฌใใธใ import๏ผ`--dir`ใ`--from-repo`ใ`--from-org`ใ`--from-repo-list`ใ`--from-mr`๏ผ |
|
|
255
|
+
| `teamai codebase --extract [path]` | ใณใผใไบๅฎใๆฝๅบใใ`teamwiki/` ้
ไธใซใญใผใซใซใฐใฉใใๆง็ฏ |
|
|
256
|
+
| `teamai codebase --deep-enrich` | ๆฝๅบใใ evidence ใใๆทฑใใใฌใใธใใญใฅใกใณใใ็ๆ |
|
|
257
|
+
| `teamai codebase --reconcile` | ใใญใใฏใใใญใฅใกใณใใจๆฝๅบใใใณใผใใใฌใใธใ็ชใๅใใ |
|
|
258
|
+
| `teamai codebase --lint` | Knowledge graph ใฎๅฅๅ
จๆงใใงใใฏ |
|
|
259
|
+
| `teamai ci extract-mr --url <url>` | CI: MR ใใใใฌใใธใๆฝๅบใใณใกใณใๆ็จฟใใใผใธๅพใซๆธใ่พผใฟ |
|
|
260
|
+
| `teamai members` | ใใผใ ใกใณใใผไธ่ฆง |
|
|
261
|
+
| `teamai projects` | ไฝๆฅญใใฃใฌใฏใใชใ 1 ใคไปฅไธใฎ่ซ็ใใญใธใงใฏใใซ็ดใฅใ |
|
|
262
|
+
| `teamai roles` | ใใผใ ใฎ roles ใจๅๅ็ฉบ้ใ็ฎก็ |
|
|
263
|
+
| `teamai tags` | ใฟใฐใใผในใฎ skill/rule ใใฃใซใฟใ็ฎก็ |
|
|
264
|
+
| `teamai skill exclude add/remove/list` | ใญใผใซใซๅๆใใ้คๅคใใ skills ใ็ฎก็๏ผ[usage guide](docs/usage-guide.md#excluding-skills-you-dont-need)๏ผ |
|
|
265
|
+
| `teamai source` | skill ่ณผ่ชญใฝใผในใ็ฎก็๏ผไปใใผใ ใใพใใฏ่ช็ต็นใฎๅ
ฑๆใชใใธใใช๏ผ |
|
|
266
|
+
| `teamai remove <type> <name>` | ใชใฝใผในใๅ้คใใMR ใ้ใ |
|
|
267
|
+
| `teamai session save` | ใใฉใคใใทใผ้คๅปๆธใฟใฎใปใใทใงใณ่ฆ็ดใๆๆฌกใญใฐใธ่จ้ฒ๏ผ`--push` ใฏ `digest` ใธไพ็ตฆ๏ผ |
|
|
268
|
+
| `teamai digest` | ใใผใ ๅฉ็จใฎ้ฑๆฌก digest ใ็ๆ |
|
|
269
|
+
| `teamai doctor` | ่จญๅฎใฎๅ้กใ่จบๆญ๏ผ`--json` ใง JSON ๅบๅใCIใปhookใปagent ๅใ๏ผ|
|
|
270
|
+
| `teamai uninstall` | ใในใฆใฎ teamai ใชใฝใผในใจ hooks ใๅ้ค |
|
|
271
|
+
|
|
272
|
+
## ใฉใคใปใณใน
|
|
273
|
+
|
|
274
|
+
[MIT](LICENSE)
|
|
275
|
+
|
|
276
|
+
## ใณใณใใชใใฅใผใ
|
|
277
|
+
|
|
278
|
+
PR ใๆญ่ฟใใพใใๅ
ใซ [CONTRIBUTING.md](.github/CONTRIBUTING.md) ใ่ชญใใงใใ ใใใ
|
package/README.ko.md
ADDED
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="assets/teamai-cli-logo.svg" alt="teamai-cli">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
# TeamAI โ Make Every Team AI Native
|
|
6
|
+
|
|
7
|
+
> [English](README.md) | [ไธญๆ](README.zh-CN.md) | [ๆฅๆฌ่ช](README.ja.md) | [ํ๊ตญ์ด](README.ko.md) | [เนเธเธข](README.th.md)
|
|
8
|
+
|
|
9
|
+
[](https://github.com/Tencent/teamai-cli/actions/workflows/ci.yml)
|
|
10
|
+
[](https://www.npmjs.com/package/teamai-cli)
|
|
11
|
+
[](https://www.npmjs.com/package/teamai-cli)
|
|
12
|
+
[](LICENSE)
|
|
13
|
+
|
|
14
|
+
TeamAI๋ ํ์ Skills, Rules, MCP, ์ง์์ Claude Code, Codex, CodeBuddy, WorkBuddy, OpenCode, Cursor ๋ฑ AI Agents ์ ๋ฐ์์ ๊ด๋ฆฌํฉ๋๋ค.
|
|
15
|
+
|
|
16
|
+
## ๊ธฐ์ฌ์
|
|
17
|
+
|
|
18
|
+
TeamAI์ ๊ธฐ์ฌํด ์ฃผ์ ๋ชจ๋ ๋ถ๊ป ๊ฐ์ฌํฉ๋๋ค!
|
|
19
|
+
|
|
20
|
+
<a href="https://trendshift.io/repositories/123184?utm_source=repository-badge&utm_medium=badge&utm_campaign=badge-repository-123184" target="_blank" rel="noopener noreferrer"><img src="https://trendshift.io/api/badge/repositories/123184" alt="Tencent%2Fteamai-cli | Trendshift" width="250" height="55"/></a>
|
|
21
|
+
|
|
22
|
+
<a href="https://github.com/Tencent/teamai-cli/graphs/contributors">
|
|
23
|
+
<img src="https://contrib.rocks/image?repo=Tencent/teamai-cli" alt="Contributors" />
|
|
24
|
+
</a>
|
|
25
|
+
|
|
26
|
+
[contrib.rocks](https://contrib.rocks)๋ก ์์ฑํ์ต๋๋ค.
|
|
27
|
+
|
|
28
|
+
## ๋น ๋ฅธ ์์
|
|
29
|
+
|
|
30
|
+
### ์ค์น
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npm install -g teamai-cli
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### ํ ๊ด๋ฆฌ์ / ๊ฐ์ธ ์ฌ์ฉ์
|
|
37
|
+
|
|
38
|
+
Git ํธ์คํธ(GitHub, GitLab, GitCode, CNB, TGit ๋๋ ๋น๊ณต๊ฐ Git ์๋น์ค)์ ๊ณต์ ๊ฒฝํ ์ ์ฅ์๋ฅผ ๋ง๋ค๊ณ , **ํ์์๊ฒ ์ฐ๊ธฐ ๊ถํ์ ๋ถ์ฌํ ๋ค** `teamai init https://github.com/yourorg/yourrepo`๋ฅผ ์คํํ์ธ์.
|
|
39
|
+
|
|
40
|
+
> **์์ง ํ ์ ์ฅ์๊ฐ ์๋์?** ํ๋ก๋์
์ ๋ฐ๋ก ์ธ ์ ์๋ Skills, Rules, review agents๊ฐ ๋ฏธ๋ฆฌ ๋ค์ด ์๋ ํ
ํ๋ฆฟ์ผ๋ก ์์ํ์ธ์. [teamai-hub](https://github.com/teamai-hub) org๋ฅผ ๋๋ฌ๋ณธ ๋ค **Fork**ํ๊ณ , ์๋ก ๋ง๋ ์ ์ฅ์์ `teamai init`์ ์คํํ๋ฉด ๋ฉ๋๋ค.
|
|
41
|
+
|
|
42
|
+
### ํ์
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
# Choose one, depending on where you want resources installed
|
|
46
|
+
|
|
47
|
+
# Project-scope init (default, resources installed under the project directory)
|
|
48
|
+
cd /path/to/my-project
|
|
49
|
+
teamai init https://github.com/yourorg/yourrepo
|
|
50
|
+
|
|
51
|
+
# Or, user-scope init (resources installed under ~/)
|
|
52
|
+
teamai init https://github.com/yourorg/yourrepo --scope user
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
์ด๊ธฐํ๊ฐ ๋๋๋ฉด ๊ด๋ฆฌ์๊ฐ ๋ฐฐํฌํ ์ต์ Skills / Rules ๋ฐ ๊ธฐํ Harness ์
๋ฐ์ดํธ๊ฐ ๋งค AI ์ธ์
์์ ์๋์ผ๋ก ๋ฐ์๋ฉ๋๋ค. ์๋ ๋๊ธฐํ๋ ํ์ ์์ต๋๋ค.
|
|
56
|
+
|
|
57
|
+
> **์ ์ฒด ์ฌ์ฉ ๊ฐ์ด๋:** [docs/usage-guide.md](docs/usage-guide.md) ([ไธญๆ็](docs/usage-guide.zh-CN.md)) โ ํ ์์ฑ๋ถํฐ ์ผ์ ์ฌ์ฉ๊น์ง ๋ชจ๋ ๋ค๋ฃน๋๋ค.
|
|
58
|
+
|
|
59
|
+
## ์ ํ ์ํคํ
์ฒ
|
|
60
|
+
|
|
61
|
+
**Team Execution ร Team Context (beta) ร Team Improvement (beta)**:
|
|
62
|
+
|
|
63
|
+
| ๊ณ์ธต | ์ญํ | ํ์ฌ CLI์์ |
|
|
64
|
+
|-------|-----|-------------------|
|
|
65
|
+
| **Team Execution** | ๋ชจ๋ Agent๊ฐ ํ์ ๋ฐฉ์๋๋ก ์ผํ๊ฒ ํฉ๋๋ค | `init` / `pull` / `push`, skills, rules, agents, hooks, MCP, env |
|
|
66
|
+
| **Team Context** (beta) | ๋ชจ๋ Agent๊ฐ ํ์ ์ดํดํ๊ฒ ํฉ๋๋ค | recall, learnings, codebase graph, teamwiki... |
|
|
67
|
+
| **Team Improvement** (beta) | ๋ชจ๋ ์คํ์ด ํ์ ๋ ๊ฐํ๊ฒ ๋ง๋ญ๋๋ค | ๋ง์ฐฐ ๊ธฐ๋ฐ share-learnings, sessions, digest, dashboard... |
|
|
68
|
+
|
|
69
|
+
## ๊ฐ์
|
|
70
|
+
|
|
71
|
+
<table>
|
|
72
|
+
<thead>
|
|
73
|
+
<tr>
|
|
74
|
+
<th rowspan="2">Agent</th>
|
|
75
|
+
<th colspan="7">Team Execution</th>
|
|
76
|
+
<th colspan="3">Team Context (beta)</th>
|
|
77
|
+
<th colspan="3">Team Improvement (beta)</th>
|
|
78
|
+
</tr>
|
|
79
|
+
<tr>
|
|
80
|
+
<th>skills</th><th>rules</th><th>docs</th><th>env</th><th>agents</th><th>hooks</th><th>mcp</th>
|
|
81
|
+
<th>learnings</th><th>codebase</th><th>teamwiki</th>
|
|
82
|
+
<th>usage</th><th>sessions</th><th>dashboard</th>
|
|
83
|
+
</tr>
|
|
84
|
+
</thead>
|
|
85
|
+
<tbody>
|
|
86
|
+
<tr><td>Claude Code</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
87
|
+
<tr><td>Codex</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
88
|
+
<tr><td>Cursor</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
89
|
+
<tr><td>CodeBuddy</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
90
|
+
<tr><td>WorkBuddy</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
91
|
+
<tr><td>OpenCode</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
92
|
+
<tr><td>OpenClaw</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
93
|
+
<tr><td>Hermes</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
94
|
+
<tr><td>DeepSeek Harness</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
95
|
+
<tr><td>Qoder</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
96
|
+
<tr><td>Kiro</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
97
|
+
<tr><td>ZCode</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td><td align="center">โ</td></tr>
|
|
98
|
+
</tbody>
|
|
99
|
+
</table>
|
|
100
|
+
|
|
101
|
+
**Git providers** โ GitHub ยท GitLab ยท GitCode ยท CNB ยท TGit ยท ๋น๊ณต๊ฐ Git ์๋น์ค.
|
|
102
|
+
|
|
103
|
+
### ๋ฐฐํฌ ์ ์ด
|
|
104
|
+
|
|
105
|
+
๊ด๋ฆฌ์๊ฐ ํ ๋ฒ ์ค์ ํ๋ฉด `teamai pull` ๋ ๋ชจ๋ ๋ฉค๋ฒ์๊ฒ ์ ๋ฌ๋๋ ํ ์ ์ญ ์ค์ ์
๋๋ค.
|
|
106
|
+
|
|
107
|
+
| ๊ธฐ๋ฅ | ๋ช
๋ น | ํ๋ ์ผ |
|
|
108
|
+
|------------|---------|--------------|
|
|
109
|
+
| **Projects** | `teamai projects` | ์์
๋๋ ํฐ๋ฆฌ๋ฅผ ํ๋ ์ด์์ ๋
ผ๋ฆฌ ํ๋ก์ ํธ์ ๋ฌถ์ด, ํด๋น ํ๋ก์ ํธ์ Skills, ์ง์, ๊ฒฉ๋ฆฌ๋ learnings๋ฅผ ๋๊ธฐํํฉ๋๋ค. Roles์๋ ๋ณ๊ฐ์ ์ฐจ์์
๋๋ค. |
|
|
110
|
+
| **Roles** | `teamai roles` | role โ namespace ๋งคํ์ ์ ์ํด, ๊ฐ ๋ฉค๋ฒ๊ฐ ์์ ์ role์ ํด๋นํ๋ Skills๋ง ๋๊ธฐํํ๊ฒ ํฉ๋๋ค. |
|
|
111
|
+
| **Tags** | `teamai tags` | Skills / Rules์ ํ๊ทธ๋ฅผ ๋ฌ์, ๋ฉค๋ฒ๊ฐ ํ์ํ ํ๊ทธ๋ง ๊ตฌ๋
ํ๊ฒ ํฉ๋๋ค. |
|
|
112
|
+
| **Sources** | `teamai source` | ์ถ๊ฐ skill ์ ์ฅ์๋ฅผ ๊ตฌ๋
ํฉ๋๋ค โ ๋ค๋ฅธ ํ์ ๊ณต๊ฐ ์ ์ฅ์, ๋๋ ์ฐ๋ฆฌ org ์์ ๊ณต์ /๊ณต๊ฐ ์ ์ฅ์. ๊ตฌ๋
ํ Skills๋ pull ๋ ์๋ ๋๊ธฐํ๋ฉ๋๋ค. |
|
|
113
|
+
|
|
114
|
+
Learnings ๊ฒฉ๋ฆฌ: ์ ์ฅ์ ๋ฃจํธ์ `learnings/`๋ ์ ์๊ณผ ๊ณต์ ๋๊ณ , `learnings/<project-id>/`๋ ํ๋ก์ ํธ ์ ์ฉ์
๋๋ค. [usage guide](docs/usage-guide.md#multi-project-project-as-a-dimension-orthogonal-to-role)๋ฅผ ์ฐธ๊ณ ํ์ธ์.
|
|
115
|
+
|
|
116
|
+
## Team Execution
|
|
117
|
+
|
|
118
|
+
> One Team. One Harness. Every Agent.
|
|
119
|
+
|
|
120
|
+
TeamAI๋ Skills, Rules, docs, hooks๋ฅผ ๊ณต์ Git ์ ์ฅ์์ ๋๊ณ , "push โ review & merge โ pull" ํ๋ฆ์ผ๋ก ๊ฐ ๋ฉค๋ฒ์ ๋ก์ปฌ AI ๋๊ตฌ์ ๋ฐฐํฌํฉ๋๋ค. ๋ค๋ฅธ ํ์ด๋ ๊ณต์ ์ ์ฅ์์ Harness ๊ตฌ๋
๋ ์ง์ํฉ๋๋ค.
|
|
121
|
+
|
|
122
|
+
### ์๋ ๋ฐฉ์
|
|
123
|
+
|
|
124
|
+
```
|
|
125
|
+
teamai push โ create branch + MR โ reviewer approves + merges
|
|
126
|
+
โ
|
|
127
|
+
SessionStart hook โ teamai pull โ synced to local AI tools
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
### ๊ณต์ ๋๋ ํญ๋ชฉ
|
|
131
|
+
|
|
132
|
+
๊ฐ ๋ฆฌ์์ค๋ ๋ชจ๋ Agent์ ์ ๋ฌ๋ฉ๋๋ค.
|
|
133
|
+
|
|
134
|
+
| ๋ฆฌ์์ค | ํ ์ ์ฅ์ ์์น | ์ฐธ๊ณ |
|
|
135
|
+
|----------|------------------|-------|
|
|
136
|
+
| **Skills** | `skills/<name>/SKILL.md` | |
|
|
137
|
+
| **Rules** | `rules/*.md` | |
|
|
138
|
+
| **Docs** | `docs/` | ํ๋ก์ ํธ ๊ธฐ๋ฐ ๋ฌธ์. ๊ธฐ๋ณธ๊ฐ์ผ๋ก ์ ๋ถ ๋ก๋๋์ง๋ ์์ต๋๋ค(progressive disclosure) |
|
|
139
|
+
| **Agents** | `agents/<name>.yaml` | |
|
|
140
|
+
| **Culture** | `culture.md` | ํ์ ๋ฏธ์
, ๊ฐ์น, ์ผํ๋ ์์น โ ๊ฐ Agent์ CLAUDE.md / AGENTS.md์ ์ฃผ์
๋์ด ๋ชจ๋ ์ธ์
์ด ์ด๋ฅผ ์ด์ด๋ฐ์ต๋๋ค |
|
|
141
|
+
| **CLAUDE.md** | `claudemd/*.md` | |
|
|
142
|
+
| **Env** | `env/` | ํ ๋จ์ ๊ณต์ ํ๊ฒฝ ๋ณ์์ ์ค์์น. ์ํฌ๋ฆฟ์ ๋ฃ์ง ๋ง์ธ์ |
|
|
143
|
+
| **Hooks** | `hooks/hooks.yaml` | ๊ฐ hook์ `roles:`๋ฅผ ๋ฌ๋ฉด ํด๋น role์ ๊ฐ์ง ๋ฉค๋ฒ์๊ฒ๋ง ์ ๋ฌ๋ฉ๋๋ค |
|
|
144
|
+
| **MCP** | `mcp/mcp.yaml` | ๊ฐ server์ `roles:`๋ฅผ ๋ฌ๋ฉด ํด๋น role์ ๊ฐ์ง ๋ฉค๋ฒ์๊ฒ๋ง ์ ๋ฌ๋ฉ๋๋ค |
|
|
145
|
+
| **Packages** | `teamai.yaml` | ํ์ฌ๋ npm ํจํค์ง์ Claude Code ํ๋ฌ๊ทธ์ธ๋ง ์ง์ |
|
|
146
|
+
| **Models** | โ | ์์ง ๋ชจ๋ provider์ ๊ตฌํ๋์ง ์์์ต๋๋ค |
|
|
147
|
+
|
|
148
|
+
ํ์ผ ํ์๊ณผ ์ ์ฒด ์ํฌํ๋ก๋ [Usage Guide](docs/usage-guide.md)๋ฅผ ์ฐธ๊ณ ํ์ธ์.
|
|
149
|
+
|
|
150
|
+
## Team Context (beta)
|
|
151
|
+
|
|
152
|
+
> Every agent understands how the team works.
|
|
153
|
+
|
|
154
|
+
Harness๋ฅผ ๋ฐฐํฌํ๋ ๊ฒ์ ๋์ด, TeamAI๋ ์์ธ ํ ๊ฒฝํ๊ณผ ์ฝ๋ ๊ตฌ์กฐ๋ฅผ ๊ฒ์ ๊ฐ๋ฅํ ์ง์ ๋ฒ ์ด์ค๋ก ์ ๋ฆฌํ๊ณ , AI๊ฐ ํ์ํ ๋ ์๋์ผ๋ก ๋ถ๋ฌ์ค๊ฒ ํฉ๋๋ค.
|
|
155
|
+
|
|
156
|
+
### ๊ฒฝํ ์๋ ๊ณต์
|
|
157
|
+
|
|
158
|
+
์ธ์
์ด ๋๋๋ฉด Stop hook์ด **friction**(๋ง์ฐฐ)์ผ๋ก ์ ์๋ฅผ ๋งค๊น๋๋ค. ์ธ์
์์ ๊ธฐ์ตํ ๋งํ ์ผ์ด ์์์์ ๋ํ๋ด๋ ์ ํธ์
๋๋ค. ์๋ฅผ ๋ค์ด AI๋ฅผ ์ค๋จํ๊ฑฐ๋ ๊ณ ์ณค๊ฑฐ๋, ๋๊ตฌ ํธ์ถ์ ๊ฑฐ์ ํ๊ฑฐ๋, AI๊ฐ ์คํจํ ๋๊ตฌ๋ฅผ ์ฌ๋ฌ ๋ฒ ์ฌ์๋ํ ๊ฒฝ์ฐ์
๋๋ค. ๋๊ตฌ ํธ์ถ์ ๋ง์ง๋ง ๋ง์ฐฐ์ด ์๋ ๊ธธ๊ณ ํ๋ฒํ ์ธ์
์ ํธ๋ฆฌ๊ฑฐ๋์ง ์๊ณ , ์ค์ ๋ก ๋ฌธ์ ๋ฅผ ๋ถ์ก๊ณ ์จ๋ฆํ ์ธ์
๋ง ํด๋นํฉ๋๋ค. ์ ์๊ฐ ์ถฉ๋ถํ๋ฉด AI๊ฐ ์ด๋ ๊ฒ ์ ์ํฉ๋๋ค.
|
|
159
|
+
|
|
160
|
+
```
|
|
161
|
+
[teamai] This session may contain a problem worth documenting: you interrupted the AI twice, the AI retried failing tools 8 times.
|
|
162
|
+
|
|
163
|
+
Task: Fix duplicate project-level Hook injection
|
|
164
|
+
|
|
165
|
+
Consider running /teamai-share-learnings to summarize what you learned and share it with your team.
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
ํํธ์๋ ํธ๋ฆฌ๊ฑฐ๊ฐ ๋ 0์ด ์๋ friction ์ ํธ๊ฐ ๋์ค๊ณ , ๊ฐ๋ฅํ๋ฉด ์ฒซ ๋ฒ์งธ ์์
์ ๋ง์คํนํ ํ ์ค ์์ฝ๋ ๋ถ์ต๋๋ค. `/teamai-share-learnings` skill์ ์ธ์
์ ์์ฝํด learning ๋ฌธ์๋ฅผ ํ ์ ์ฅ์์ ๋ฐ๋ก pushํฉ๋๋ค. ์ธ์
๋น ํํธ๋ ์ต๋ ํ ๋ฒ์
๋๋ค. ํ์ `teamai.yaml`์์ `sharing.contributeHint.enabled: false`๋ก ํํธ๋ง ๋ ์ ์๊ณ (๋ฉค๋ฒ๋ ๋ก์ปฌ ์ค์ ์ `contributeHintEnabled`), Stop hook์ ๋๋จธ์ง ๊ธฐ๋ฅ์ ๊ทธ๋๋ก ๋ก๋๋ค.
|
|
169
|
+
|
|
170
|
+
### ํ ์ง์ Recall
|
|
171
|
+
|
|
172
|
+
์์
์ ์ AI๊ฐ ์์ธ ํ ์ง์์ ์๋์ผ๋ก ๊ฒ์ํ๊ฒ ํฉ๋๋ค. ์ด ๊ธฐ๋ฅ์ **๊ธฐ๋ณธ๊ฐ์ด ๊บผ์ง**์ด๋ฉฐ, ๋ช
์์ ์ผ๋ก ์ผ์ผ ํฉ๋๋ค. ํ์ `teamai.yaml`์์ `sharing.recall.enabled: true`๋ฅผ ๊ธฐ๋ณธ๊ฐ์ผ๋ก ๋ ์ ์๊ณ , ๋ฉค๋ฒ๋ ๋ก์ปฌ์์ ๋ฎ์ด์ธ ์ ์์ต๋๋ค.
|
|
173
|
+
|
|
174
|
+
```bash
|
|
175
|
+
teamai recall enable # on: deploy the teamai-recall subagent + inject guidance rules
|
|
176
|
+
teamai recall disable # off: remove the subagent and rules
|
|
177
|
+
teamai recall status # show effective state (team default + user override)
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
**๊ฒ์์ subagent๋ก ์คํ๋ฉ๋๋ค**: ์ผ๋ฉด `teamai pull`์ด ๋ด์ฅ `teamai-recall` subagent๋ฅผ ๊ฐ AI ๋๊ตฌ์ `agents/` ๋๋ ํฐ๋ฆฌ์ ๋ฐฐํฌํฉ๋๋ค. AI๋ ์์
์ ์ ์ด๋ฅผ ํธ์ถํ๊ณ , subagent๊ฐ ํค์๋๋ฅผ ๋ฝ๊ณ , ๊ฒ์์ ๋๋ฆฌ๊ณ , ๋ง์ ์๋ณธ ํ์ผ์ ์ฝ์ ๋ค ํ ์ง์์ ๊ตฌ์กฐํ๋ ์์ฝ์ ๋๋ ค์ค๋๋ค. subagent๋ ๋จผ์ ๊ด๋ จ์ฑ ์ฌ์ ๊ฒ์ฌ(`teamai recall --check`)๋ฅผ ํ๊ณ , ์์
์ด ํ ์ง์๊ณผ ๋ฌด๊ดํ๋ฉด ๊ฒ์์ ์์ ๊ฑด๋๋๋๋ค. ๋ด๋ถ์ ์ผ๋ก๋ `teamai recall` ๋ช
๋ น์ ํธ์ถํ๋ฉฐ, ์ง์ ์คํํ ์๋ ์์ต๋๋ค.
|
|
181
|
+
|
|
182
|
+
```bash
|
|
183
|
+
$ teamai recall "port conflict"
|
|
184
|
+
[1/2] MR review caught a port-conflict bug โ
1 [user]
|
|
185
|
+
Author: member-a | Score: 18.5 | Tags: troubleshooting, networking
|
|
186
|
+
|
|
187
|
+
[2/2] Deployment configuration best practices [project]
|
|
188
|
+
Author: member-b | Score: 12.0 | Tags: deploy, config
|
|
189
|
+
Matched: conflict | Missing: port
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
### ์ฝ๋๋ฒ ์ด์ค ์ง์ ๊ทธ๋ํ
|
|
193
|
+
|
|
194
|
+
`teamai import`๋ ์์ค ์ ์ฅ์๋ฅผ `teamwiki/` ์๋์ ๊ตฌ์กฐํ๋ ๊ทธ๋ํ๋ก ํ์ฑํด, ๊ตฌ์กฐ๋ฅผ ์๋ ๊ฒ์์ ๊ฐ๋ฅํ๊ฒ ํฉ๋๋ค.
|
|
195
|
+
|
|
196
|
+
```bash
|
|
197
|
+
teamai import --from-repo https://github.com/org/repo
|
|
198
|
+
teamai import --from-org myorg # batch import all repos
|
|
199
|
+
teamai codebase --extract /path/to/repo # local extract into teamwiki/
|
|
200
|
+
teamai codebase --deep-enrich --project my-service --output /path/to/repo # generate deep knowledge docs
|
|
201
|
+
teamai codebase --reconcile --output /path/to/repo # map product docs to code pages
|
|
202
|
+
teamai codebase --lint --output /path/to/repo # check the locally extracted graph
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
Extract๋ AI enrichment๋ฅผ ๊ฑด๋๋ฐ๊ฑฐ๋ ๊ฒฐ๊ณผ๊ฐ ์์ด๋ `teamwiki/evidence/code/<project>/_manifest.json`์ ์ฐ๋ฏ๋ก `--deep-enrich`๋ฅผ ์ด์ด์ ์์ํ ์ ์์ต๋๋ค.
|
|
206
|
+
|
|
207
|
+
๊ทธ๋ํ๋ ์ปดํฌ๋ํธ, ์ธํฐํ์ด์ค, ์ค์ , ์ ์ฅ์ ๊ฐ import ์ฃ์ง๋ฅผ ์ ์ฅํฉ๋๋ค. `teamai recall`์ ์ด๋ฅผ ๊ทธ๋ํ ๋ถ์คํ
์ฌ๋ญํน์ ์ฌ์ฉํฉ๋๋ค.
|
|
208
|
+
recall ๊ฒฐ๊ณผ๊ฐ codebase ํ์ด์ง์์ ์จ ๊ฒฝ์ฐ, ๊ฒฐ๊ณผ์๋ ๊ด๋ จ ์์ค ํ์ผ ๊ฒฝ๋ก๋ฅผ ๋์ดํ๋ `Sources:` ์ค์ด ํฌํจ๋ฉ๋๋ค. Agent๊ฐ ์ ์ฅ์๋ฅผ ๋ค์ ํ์ํ์ง ์๊ณ ์ฝ๋ ๋ณ๊ฒฝ์ ์ถ๋ฐ์ ์ ๋ฐ๋ก ์ก์ ์ ์์ต๋๋ค.
|
|
209
|
+
|
|
210
|
+
์ฃ์ง๋ ํจ๊ป ๋๋ ๋ ํธ๋์์ ๋์ค๋ฉฐ, ๊ฒน์น๋ฉด AST ๊ฒฐ๊ณผ๊ฐ ์ฐ์ ํฉ๋๋ค.
|
|
211
|
+
|
|
212
|
+
- **AST track** (TypeScript/JavaScript, Python, Go): WASM [tree-sitter](https://tree-sitter.github.io/) ํ์๊ฐ `import`/`require`, ํธ์ถ ์ง์ , TS `implements` ์ ์ ํ์ผ ๊ฐ ์ ํํ `DEPENDS_ON` / `REFERENCES` / `IMPLEMENTS` ์ฃ์ง๋ก ํด์ํฉ๋๋ค(`code-ast` ํ๊ทธ, confidence ๊ฐ์ค์น).
|
|
213
|
+
- **Heuristic track** (Java/Rust๋ฅผ ํฌํจํ ๋ชจ๋ ์ธ์ด): ์ ๊ท์ ๊ธฐ๋ฐ ์ถ์ถ(`code-heuristic` ํ๊ทธ). AST track์ด ๋ค๋ฃจ์ง ์๋ ์ธ์ด๋ ์ปค๋ฒํฉ๋๋ค.
|
|
214
|
+
|
|
215
|
+
WASM ํ์๋ ์์ JavaScript ์์กด์ฑ์ด๋ผ ๋ค์ดํฐ๋ธ ํด์ฒด์ธ์ด ํ์ ์์ต๋๋ค. ์ด๋ค ์ด์ ๋ก๋ ๋ก๋์ ์คํจํ๋ฉด ์ถ์ถ์ heuristic track์ผ๋ก ๋จ์ด์ง๊ณ `AST_UNAVAILABLE` gap์ ๊ธฐ๋กํฉ๋๋ค. `TEAMAI_SKIP_AST=1`์ ์ค์ ํ๋ฉด heuristic ์ ์ฉ ์ถ์ถ์ ๊ฐ์ ํฉ๋๋ค.
|
|
216
|
+
|
|
217
|
+
## Team Improvement (beta)
|
|
218
|
+
|
|
219
|
+
> Every execution makes the entire team smarter.
|
|
220
|
+
|
|
221
|
+
### Maintenance
|
|
222
|
+
|
|
223
|
+
Skills์ ์ง์์ด ์์ด๋ฉด, ํ์ด ๋ ์ด์ ์ฐ์ง ์๋ ๊ฒ์ ์ ๋ฆฌํ์ธ์. `teamai recall maintenance`๋ ์ ๋ขฐ๋๊ฐ ๋ฎ์ learnings๋ฅผ ์์นด์ด๋ธํ๊ณ , ๋ก์ Skills, Rules, docs๋ฅผ ์ ๋ฆฌ ๋๋ ์
๋ฐ์ดํธ ๋์์ผ๋ก ํ์ํฉ๋๋ค.
|
|
224
|
+
|
|
225
|
+
```bash
|
|
226
|
+
teamai recall maintenance --prune --dry-run # preview
|
|
227
|
+
teamai recall maintenance --prune --archive # archive unused learnings
|
|
228
|
+
teamai recall maintenance --update-quality # draft updates for stale skills / docs
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
ํ์ด AI ๋๊ตฌ๋ฅผ ์ค์ ๋ก ์ด๋ป๊ฒ ์ฐ๋์ง ๋ณด๊ณ , ์ธ์
friction์ ๊ณต์ Skills, Rules, ์ง์์ผ๋ก ๋ฐ๊พธ๋ ์ถ๋ฐ์ ์
๋๋ค.
|
|
232
|
+
|
|
233
|
+
| ๊ธฐ๋ฅ | ๋ช
๋ น | ๋ณด์ฌ์ฃผ๋ ๊ฒ |
|
|
234
|
+
|------------|---------|---------------|
|
|
235
|
+
| **Usage** | `teamai digest` | ์ฃผ๊ฐ ํ digest โ 7์ผ๊ฐ์ ์ฑ๊ณต๋ฅ , prompt, ํ์ฑ ์๊ฐ, ์ถ์ ๋น์ฉ, cache, ์์ ์ถ์ธ์ ๋์ ํฉ๊ณ. |
|
|
236
|
+
| **Sessions** | `teamai session save` | ๊ฐ์ธ์ ๋ณด๋ฅผ ์ ๊ฑฐํ ์ธ์
๋ณ ์์ฝ(๋๊ตฌ ์์, prompt ํด, ๊ฐ์
)์ผ๋ก digest์ Session Highlights์ ๋ค์ด๊ฐ๋๋ค. |
|
|
237
|
+
| **Dashboard** | `teamai dashboard` | ์ค์๊ฐ ์ธ์
๊ณผ, ์ง์ 7์ผ ๋๋น ๋ก์ปฌ 7์ผ ์ถ์ธ๋ฅผ ๋ณด์ฌ์ฃผ๋ ์น dashboard. |
|
|
238
|
+
| **KB Health** | `teamai dashboard` โ KB Health | ์ง์ ๋ฒ ์ด์ค ์ฌ์ฉ๋๊ณผ ๊ฑด๊ฐ ์ํ๋ฅผ ๋ณด์ฌ์ฃผ๋ ๋ด์ฅ dashboard ํ์ด์ง โ ์ ํ๋ณ ์ปค๋ฒ๋ฆฌ์ง, ์์ recall ํญ๋ชฉ, ์นจ๋ฌต ํญ๋ชฉ, recall ์ถ์ธ, ์์ฑ์ ๊ธฐ์ฌ, maintenance ์ฝ์. |
|
|
239
|
+
|
|
240
|
+
## ๋ช
๋ น์ด
|
|
241
|
+
|
|
242
|
+
| ๋ช
๋ น | ์ค๋ช
|
|
|
243
|
+
|---------|-------------|
|
|
244
|
+
| `teamai init` | ์ด๊ธฐํ: OAuth ๋ก๊ทธ์ธ, ์ ์ฅ์ ์ฐ๊ฒฐ, ๋ฉค๋ฒ ๋ฑ๋ก, hooks ์ฃผ์
|
|
|
245
|
+
| `teamai pull` | ํ ๋ฆฌ์์ค๋ฅผ ๊ฐ์ ธ์ ๋ก์ปฌ AI ๋๊ตฌ์ ์ฃผ์
|
|
|
246
|
+
| `teamai push` | ๋ก์ปฌ ๋ฆฌ์์ค๋ฅผ ๋ธ๋์น์ pushํ๊ณ Merge Request๋ฅผ ์ฝ๋๋ค |
|
|
247
|
+
| `teamai packages [install] [target]` | ์ ์ธ๋ npm ํจํค์ง์ Claude ํ๋ฌ๊ทธ์ธ์ ์ค์นํฉ๋๋ค. target์ด ์์ผ๋ฉด `teamai.yaml`๋ ๊ฐฑ์ ํฉ๋๋ค. ์ธ์ ์๋ `teamai packages`๋ ์ ๋ถ๋ฅผ ์ค์นํ๊ณ , `teamai packages install <target>`์ ํ๋๋ฅผ ์ถ๊ฐํฉ๋๋ค |
|
|
248
|
+
| `teamai status` | ๋ก์ปฌ๊ณผ ํ ์ ์ฅ์์ diff ๋ฐ ๋ฆฌ์์ค ๊ฐ์(๋ค์์คํ์ด์ค Skills, ์ค์ฒฉ docs ํฌํจ)๋ฅผ ํ์ |
|
|
249
|
+
| `teamai contribute` | ์ธ์
๊ฒฝํ์ ํ ์ ์ฅ์์ ๊ณต์ |
|
|
250
|
+
| `teamai recall <query>` | ํ ์ง์ ๋ฒ ์ด์ค ๊ฒ์ (BM25 + graph-boost) |
|
|
251
|
+
| `teamai recall enable/disable/status` | recall ์ํ๋ฅผ ์ผ๊ฑฐ๋ ๋๊ฑฐ๋ ํ์ธ |
|
|
252
|
+
| `teamai recall promote [learningId]` | ์ ๋ขฐ๋๊ฐ ๋์ learning์ ์ ์ ์ง์(skills/rules/docs)์ผ๋ก ์น๊ฒฉ |
|
|
253
|
+
| `teamai recall maintenance` | ์ง์ ๋ฒ ์ด์ค ๊ฑด๊ฐ ์ ์ง: ์ ๋ขฐ๋๊ฐ ๋ฎ์ learnings ์ ๋ฆฌ, confidence ์ ์ ๋์ฐ๊ธฐ, ๋ก์ ํญ๋ชฉ ํ์ |
|
|
254
|
+
| `teamai import` | ์ง์ ๊ฐ์ ธ์ค๊ธฐ (`--dir`, `--from-repo`, `--from-org`, `--from-repo-list`, `--from-mr`) |
|
|
255
|
+
| `teamai codebase --extract [path]` | ์ฝ๋ ์ฌ์ค์ ์ถ์ถํ๊ณ `teamwiki/` ์๋ ๋ก์ปฌ ๊ทธ๋ํ๋ฅผ ๊ตฌ์ถ |
|
|
256
|
+
| `teamai codebase --deep-enrich` | ์ถ์ถ๋ evidence๋ก ์ฌ์ธต ์ง์ ๋ฌธ์ ์์ฑ |
|
|
257
|
+
| `teamai codebase --reconcile` | ์ ํ ๋ฌธ์๋ฅผ ์ถ์ถ๋ ์ฝ๋ ์ง์๊ณผ ๋ง์ถ๊ธฐ |
|
|
258
|
+
| `teamai codebase --lint` | ์ง์ ๊ทธ๋ํ ๊ฑด๊ฐ ๊ฒ์ฌ |
|
|
259
|
+
| `teamai ci extract-mr --url <url>` | CI: MR์์ ์ง์ ์ถ์ถ, ๋๊ธ ๊ฒ์, ๋จธ์ง ํ ๊ธฐ๋ก |
|
|
260
|
+
| `teamai members` | ํ ๋ฉค๋ฒ ๋ชฉ๋ก |
|
|
261
|
+
| `teamai projects` | ์์
๋๋ ํฐ๋ฆฌ๋ฅผ ํ๋ ์ด์์ ๋
ผ๋ฆฌ ํ๋ก์ ํธ์ ์ฐ๊ฒฐ |
|
|
262
|
+
| `teamai roles` | ํ roles์ namespaces ๊ด๋ฆฌ |
|
|
263
|
+
| `teamai tags` | ํ๊ทธ ๊ธฐ๋ฐ skill/rule ํํฐ ๊ด๋ฆฌ |
|
|
264
|
+
| `teamai skill exclude add/remove/list` | ๋ก์ปฌ ๋๊ธฐํ์์ ์ ์ธํ Skills ๊ด๋ฆฌ ([usage guide](docs/usage-guide.md#excluding-skills-you-dont-need)) |
|
|
265
|
+
| `teamai source` | skill ๊ตฌ๋
์์ค ๊ด๋ฆฌ(๋ค๋ฅธ ํ ๋๋ org์ ๊ณต์ ์ ์ฅ์) |
|
|
266
|
+
| `teamai remove <type> <name>` | ๋ฆฌ์์ค๋ฅผ ์ ๊ฑฐํ๊ณ MR์ ์ฝ๋๋ค |
|
|
267
|
+
| `teamai session save` | ๊ฐ์ธ์ ๋ณด๋ฅผ ์ ๊ฑฐํ ์ธ์
์์ฝ์ ์๋ณ ๋ก๊ทธ์ ๊ธฐ๋ก (`--push`๋ `digest`์ ๊ณต๊ธ) |
|
|
268
|
+
| `teamai digest` | ์ฃผ๊ฐ ํ ์ฌ์ฉ digest ์์ฑ |
|
|
269
|
+
| `teamai doctor` | ๊ตฌ์ฑ ๋ฌธ์ ์ง๋จ (`--json`์ผ๋ก JSON ์ถ๋ ฅ, CIยทhookยทagent์ฉ) |
|
|
270
|
+
| `teamai uninstall` | ๋ชจ๋ teamai ๋ฆฌ์์ค์ hooks ์ ๊ฑฐ |
|
|
271
|
+
|
|
272
|
+
## ๋ผ์ด์ ์ค
|
|
273
|
+
|
|
274
|
+
[MIT](LICENSE)
|
|
275
|
+
|
|
276
|
+
## ๊ธฐ์ฌํ๊ธฐ
|
|
277
|
+
|
|
278
|
+
PR์ ํ์ํฉ๋๋ค! ๋จผ์ [CONTRIBUTING.md](.github/CONTRIBUTING.md)๋ฅผ ์ฝ์ด ์ฃผ์ธ์.
|