@eidentic/cli
v0.4.0
Published
The eidentic command-line tool — dev server, project init, component scaffolding, and health diagnostics.
Maintainers
Readme
@eidentic/cli
The eidentic command-line tool — dev server with live-reload, eidentic init project
scaffold, eidentic add component UI component installer, eidentic studio local
dashboard launcher, and eidentic doctor health diagnostics. Bundled into the
eidentic umbrella package; also installable standalone.
Install
npm install -g @eidentic/cli
# or use via the umbrella (eidentic ships the CLI)
npm install eidenticUsage
# Scaffold a new project
eidentic init
# Start the localhost-only dev server, interactive chat, and live reload
eidentic dev
# Open the local Studio dashboard
eidentic studio
# Add a built-in React component to your project
eidentic add component chat
eidentic add component run-status
eidentic add component workflow-trace
# Health check
eidentic doctorThe default scaffold is intentionally readable:
agent/
instructions.md
agent.ts
tools/get-time.tsinstructions.md owns the prompt, agent.ts selects the model and store, and each
module in tools/ default-exports one Eidentic tool. Existing projects remain supported:
Legacy eidentic.config.ts example
// eidentic.config.ts — export `agents` (and optionally `port`, `auth`, etc.)
// The CLI picks this up with jiti (no compile step needed).
export const agents = { support: myAgent };
export const port = 3000;Links
Apache-2.0
