agentlab 0.1.3 → 0.1.5
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 +34 -5
- package/dist/cli.js +133 -130
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,14 +1,43 @@
|
|
|
1
|
-
#
|
|
1
|
+
# agentlab
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Description
|
|
4
|
+
|
|
5
|
+
`agentlab` is a terminal AI coding agent for real project work. It chats, runs tools, edits files, and keeps multi-step coding sessions in one CLI flow.
|
|
6
|
+
|
|
7
|
+
## Supports
|
|
8
|
+
|
|
9
|
+
- Providers:
|
|
10
|
+
- OpenAI Codex
|
|
11
|
+
- GitHub Copilot
|
|
12
|
+
- Claude (subscription login via Claude Code, not API key mode)
|
|
13
|
+
- Core capabilities:
|
|
14
|
+
- Provider/model switching from inside the CLI
|
|
15
|
+
- Interactive login and auth status checks per provider
|
|
16
|
+
- Session history save/resume
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
Install globally from npm:
|
|
4
21
|
|
|
5
22
|
```bash
|
|
6
|
-
|
|
23
|
+
npm install -g agentlab
|
|
7
24
|
```
|
|
8
25
|
|
|
9
|
-
|
|
26
|
+
Then run:
|
|
10
27
|
|
|
11
28
|
```bash
|
|
12
|
-
|
|
29
|
+
agentlab
|
|
13
30
|
```
|
|
14
31
|
|
|
32
|
+
## Local development
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
bun install
|
|
36
|
+
bun run build
|
|
37
|
+
bun run index.tsx
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Project story
|
|
41
|
+
|
|
42
|
+
This project started in a normal way, with direct manual coding.
|
|
43
|
+
Then it grew by using itself: agentlab was used to extend and refine agentlab.
|