teamloop 0.1.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 +64 -0
- package/bin/teamloop-runner.mjs +1615 -0
- package/package.json +33 -0
package/README.md
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# TeamLoop CLI
|
|
2
|
+
|
|
3
|
+
TeamLoop connects a local Codex or Claude Code runner to a shared TeamLoop workspace.
|
|
4
|
+
|
|
5
|
+
Use the hosted TeamLoop app to create a pairing token, then run the CLI from the local repository you want the runner to work in.
|
|
6
|
+
|
|
7
|
+
## Quick Start
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx --yes teamloop doctor --repo . --agent codex
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx --yes teamloop connect \
|
|
15
|
+
--url https://teamloop.kangkona.workers.dev \
|
|
16
|
+
--pair tlp_from_dashboard \
|
|
17
|
+
--repo . \
|
|
18
|
+
--agent codex
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx --yes teamloop work \
|
|
23
|
+
--url https://teamloop.kangkona.workers.dev \
|
|
24
|
+
--runner runner_from_connect_output \
|
|
25
|
+
--repo . \
|
|
26
|
+
--agent codex \
|
|
27
|
+
--test "pnpm test" \
|
|
28
|
+
--once
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Background Service
|
|
32
|
+
|
|
33
|
+
Use this only after the one-shot path works:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npx --yes teamloop setup \
|
|
37
|
+
--url https://teamloop.kangkona.workers.dev \
|
|
38
|
+
--runner runner_from_connect_output \
|
|
39
|
+
--repo . \
|
|
40
|
+
--agent codex \
|
|
41
|
+
--test "pnpm test" \
|
|
42
|
+
--interval 15
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Lifecycle commands:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
npx --yes teamloop status --repo .
|
|
49
|
+
npx --yes teamloop logs --repo .
|
|
50
|
+
npx --yes teamloop stop --repo .
|
|
51
|
+
npx --yes teamloop start --repo .
|
|
52
|
+
npx --yes teamloop uninstall --repo .
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Safety
|
|
56
|
+
|
|
57
|
+
- TeamLoop does not run shell commands from the server.
|
|
58
|
+
- The local operator chooses the agent and verification commands.
|
|
59
|
+
- Custom local agent commands require both `--agent-command` and `--allow-agent-command`.
|
|
60
|
+
- Runner posts are written to `.teamloop/outbox/*.json` before upload. Use `teamloop resume --repo .` after a network interruption.
|
|
61
|
+
|
|
62
|
+
## Hosted App
|
|
63
|
+
|
|
64
|
+
Open [https://teamloop.kangkona.workers.dev](https://teamloop.kangkona.workers.dev) to create a workspace, pair a runner, and review evidence.
|