@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 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
- ## Why
5
+ [![npm version](https://img.shields.io/npm/v/@agentskit/cli?color=blue)](https://www.npmjs.com/package/@agentskit/cli)
6
+ [![npm downloads](https://img.shields.io/npm/dm/@agentskit/cli)](https://www.npmjs.com/package/@agentskit/cli)
7
+ [![bundle size](https://img.shields.io/bundlephobia/minzip/@agentskit/cli)](https://bundlephobia.com/package/@agentskit/cli)
8
+ [![license](https://img.shields.io/npm/l/@agentskit/cli)](../../LICENSE)
9
+ [![stability](https://img.shields.io/badge/stability-stable-brightgreen)](../../docs/STABILITY.md)
10
+ [![GitHub stars](https://img.shields.io/github/stars/EmersonBraun/agentskit?style=social)](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
- ## Next steps
46
+ ## Features
37
47
 
38
- - Generated apps use [`@agentskit/react`](https://www.npmjs.com/package/@agentskit/react) or [`@agentskit/ink`](https://www.npmjs.com/package/@agentskit/ink)extend with [`@agentskit/tools`](https://www.npmjs.com/package/@agentskit/tools), [`@agentskit/skills`](https://www.npmjs.com/package/@agentskit/skills), and [`@agentskit/runtime`](https://www.npmjs.com/package/@agentskit/runtime) for programmatic agents
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://emersonbraun.github.io/agentskit/)
75
+ [Full documentation](https://www.agentskit.io) · [GitHub](https://github.com/EmersonBraun/agentskit)