@agentskit/cli 0.5.0 → 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
@@ -1,14 +1,22 @@
1
1
  # @agentskit/cli
2
2
 
3
- ![stability: stable](https://img.shields.io/badge/stability-stable-brightgreen)
4
-
5
3
  Chat with any LLM, scaffold projects, and run agents — all from your terminal.
6
4
 
7
- ## 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
8
15
 
9
16
  - **Zero setup for prototyping** — go from idea to running conversation in under a minute; no boilerplate, no config files to write
10
17
  - **Scaffold production-ready projects** — generate a React chat app or terminal agent with the right structure so you skip the boring setup
11
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
12
20
 
13
21
  ## Install
14
22
 
@@ -35,9 +43,13 @@ agentskit init --template ink --dir my-cli
35
43
  agentskit run --help
36
44
  ```
37
45
 
38
- ## Next steps
46
+ ## Features
39
47
 
40
- - 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
41
53
 
42
54
  ## Ecosystem
43
55
 
@@ -48,6 +60,16 @@ agentskit run --help
48
60
  | [@agentskit/ink](https://www.npmjs.com/package/@agentskit/ink) | Ink UI used by interactive `chat` |
49
61
  | [@agentskit/core](https://www.npmjs.com/package/@agentskit/core) | Shared types and contracts |
50
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
+
51
73
  ## Docs
52
74
 
53
- [Full documentation](https://emersonbraun.github.io/agentskit/)
75
+ [Full documentation](https://www.agentskit.io) · [GitHub](https://github.com/EmersonBraun/agentskit)
package/dist/bin.cjs CHANGED
@@ -386,6 +386,8 @@ function reactStarter(ctx) {
386
386
  },
387
387
  dependencies: deps,
388
388
  devDependencies: {
389
+ "@types/react": "^19.0.0",
390
+ "@types/react-dom": "^19.0.0",
389
391
  "@vitejs/plugin-react": "^5.0.0",
390
392
  typescript: "^5.5.0",
391
393
  vite: "^7.0.0"
@@ -491,6 +493,7 @@ function inkStarter(ctx) {
491
493
  dependencies: deps,
492
494
  devDependencies: {
493
495
  "@types/react": "^19.0.0",
496
+ "@types/react-dom": "^19.0.0",
494
497
  tsx: "^4.20.0",
495
498
  typescript: "^5.5.0"
496
499
  }
@@ -715,9 +718,9 @@ ${runCmd}
715
718
 
716
719
  ## Next steps
717
720
 
718
- - Open the AgentsKit docs at https://agentskit.io/docs
719
- - Add a custom skill: https://agentskit.io/docs/concepts/skill
720
- - Wire up RAG: https://agentskit.io/docs/recipes/rag-chat
721
+ - Open the AgentsKit docs at https://www.agentskit.io/docs
722
+ - Add a custom skill: https://www.agentskit.io/docs/concepts/skill
723
+ - Wire up RAG: https://www.agentskit.io/docs/recipes/rag-chat
721
724
 
722
725
  ## License
723
726
 
@@ -873,7 +876,7 @@ function printNextSteps(options) {
873
876
  process.stdout.write(` ${kleur__default.default.cyan(runCmd)}
874
877
 
875
878
  `);
876
- process.stdout.write(kleur__default.default.dim(" Docs: https://agentskit.io/docs\n\n"));
879
+ process.stdout.write(kleur__default.default.dim(" Docs: https://www.agentskit.io/docs\n\n"));
877
880
  }
878
881
  function formatEvent(event) {
879
882
  switch (event.type) {