@agentskit/cli 0.5.3 → 0.7.0
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 +6 -1
- package/dist/bin.cjs +1746 -441
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1 -1
- package/dist/{chunk-CCPJYGHP.js → chunk-72XFU2X2.js} +1605 -292
- package/dist/chunk-72XFU2X2.js.map +1 -0
- package/dist/index.cjs +1781 -441
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +480 -7
- package/dist/index.d.ts +480 -7
- package/dist/index.js +1 -1
- package/package.json +9 -8
- package/dist/chunk-CCPJYGHP.js.map +0 -1
package/README.md
CHANGED
|
@@ -55,9 +55,14 @@ agentskit run --help
|
|
|
55
55
|
- `agentskit doctor` — diagnose your environment, packages, and provider config
|
|
56
56
|
- `agentskit dev` — hot-reload agent development
|
|
57
57
|
- `agentskit tunnel` — expose local agent via public URL
|
|
58
|
-
-
|
|
58
|
+
- `agentskit rag index` — chunk + embed files into a file-backed vector store
|
|
59
|
+
- `agentskit config` — print merged config or scaffold a template
|
|
60
|
+
- **Extensibility** — plugins (slash commands, tools, skills, providers, hooks, MCP servers), permission policy with modes, lifecycle hooks (shell or JS), MCP stdio bridge, session rename + fork, `/usage` + `/cost`
|
|
61
|
+
- Provider flags: `--provider`, `--model`, `--system`, `--skill`, `--memory`, `--mode`, `--plugin-dir`
|
|
59
62
|
- Env-var based key injection — works seamlessly in CI and scripts
|
|
60
63
|
|
|
64
|
+
Full reference: [docs/infrastructure/cli](https://www.agentskit.io/docs/infrastructure/cli) · [ARCHITECTURE.md](./ARCHITECTURE.md)
|
|
65
|
+
|
|
61
66
|
### agentskit doctor
|
|
62
67
|
|
|
63
68
|

|