@agentskit/cli 0.4.2 → 0.5.1
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 +28 -4
- package/dist/bin.cjs +1089 -63
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1 -1
- package/dist/chunk-IMW4N7X2.js +1569 -0
- package/dist/chunk-IMW4N7X2.js.map +1 -0
- package/dist/index.cjs +1094 -63
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +175 -3
- package/dist/index.d.ts +175 -3
- package/dist/index.js +1 -1
- package/package.json +32 -13
- package/dist/chunk-RHXN45FL.js +0 -545
- package/dist/chunk-RHXN45FL.js.map +0 -1
package/README.md
CHANGED
|
@@ -2,11 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
Chat with any LLM, scaffold projects, and run agents — all from your terminal.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[](https://www.npmjs.com/package/@agentskit/cli)
|
|
6
|
+
[](https://www.npmjs.com/package/@agentskit/cli)
|
|
7
|
+
[](https://bundlephobia.com/package/@agentskit/cli)
|
|
8
|
+
[](../../LICENSE)
|
|
9
|
+
[](../../docs/STABILITY.md)
|
|
10
|
+
[](https://github.com/EmersonBraun/agentskit)
|
|
11
|
+
|
|
12
|
+
**Tags:** `ai` · `agents` · `llm` · `agentskit` · `openai` · `anthropic` · `claude` · `gemini` · `chatgpt` · `cli` · `command-line` · `scaffolding` · `ai-agents` · `autonomous-agents`
|
|
13
|
+
|
|
14
|
+
## Why cli
|
|
6
15
|
|
|
7
16
|
- **Zero setup for prototyping** — go from idea to running conversation in under a minute; no boilerplate, no config files to write
|
|
8
17
|
- **Scaffold production-ready projects** — generate a React chat app or terminal agent with the right structure so you skip the boring setup
|
|
9
18
|
- **Script and automate** — pipe inputs, use env vars for keys, and compose with other Unix tools for lightweight agent scripting
|
|
19
|
+
- **Every provider, one command** — switch between OpenAI, Anthropic, Ollama (local), and more with a single flag
|
|
10
20
|
|
|
11
21
|
## Install
|
|
12
22
|
|
|
@@ -33,9 +43,13 @@ agentskit init --template ink --dir my-cli
|
|
|
33
43
|
agentskit run --help
|
|
34
44
|
```
|
|
35
45
|
|
|
36
|
-
##
|
|
46
|
+
## Features
|
|
37
47
|
|
|
38
|
-
-
|
|
48
|
+
- `agentskit chat` — interactive streaming chat in the terminal powered by `@agentskit/ink`
|
|
49
|
+
- `agentskit init` — interactive project generator (React or Ink templates, production-ready structure)
|
|
50
|
+
- `agentskit run` — execute headless runtime agents from the terminal
|
|
51
|
+
- Provider flags: `--provider`, `--model`, `--system`, `--skill`, `--memory`
|
|
52
|
+
- Env-var based key injection — works seamlessly in CI and scripts
|
|
39
53
|
|
|
40
54
|
## Ecosystem
|
|
41
55
|
|
|
@@ -46,6 +60,16 @@ agentskit run --help
|
|
|
46
60
|
| [@agentskit/ink](https://www.npmjs.com/package/@agentskit/ink) | Ink UI used by interactive `chat` |
|
|
47
61
|
| [@agentskit/core](https://www.npmjs.com/package/@agentskit/core) | Shared types and contracts |
|
|
48
62
|
|
|
63
|
+
## Contributors
|
|
64
|
+
|
|
65
|
+
<a href="https://github.com/EmersonBraun/agentskit/graphs/contributors">
|
|
66
|
+
<img src="https://contrib.rocks/image?repo=EmersonBraun/agentskit" alt="AgentsKit contributors" />
|
|
67
|
+
</a>
|
|
68
|
+
|
|
69
|
+
## License
|
|
70
|
+
|
|
71
|
+
MIT — see [LICENSE](../../LICENSE).
|
|
72
|
+
|
|
49
73
|
## Docs
|
|
50
74
|
|
|
51
|
-
[Full documentation](https://
|
|
75
|
+
[Full documentation](https://www.agentskit.io) · [GitHub](https://github.com/EmersonBraun/agentskit)
|