agentlab 0.1.4 → 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.
Files changed (2) hide show
  1. package/README.md +34 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,14 +1,43 @@
1
- # agent-kit
1
+ # agentlab
2
2
 
3
- To install dependencies:
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
- bun install
23
+ npm install -g agentlab
7
24
  ```
8
25
 
9
- To run:
26
+ Then run:
10
27
 
11
28
  ```bash
12
- bun run index.ts
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentlab",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Terminal AI coding agent",
5
5
  "type": "module",
6
6
  "bin": {