https://github.com/eigenpal/cli
Create, evaluate, and deploy workflows from your terminal. Agent-ready.
https://github.com/eigenpal/cli
cli eigenpal
Last synced: 7 days ago
JSON representation
Create, evaluate, and deploy workflows from your terminal. Agent-ready.
- Host: GitHub
- URL: https://github.com/eigenpal/cli
- Owner: eigenpal
- License: apache-2.0
- Created: 2026-05-02T18:28:10.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-06-02T22:04:43.000Z (7 days ago)
- Last Synced: 2026-06-02T22:15:21.964Z (7 days ago)
- Topics: cli, eigenpal
- Language: TypeScript
- Homepage:
- Size: 1.36 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# @eigenpal/cli
Create, evaluate, and deploy workflows from your terminal. Agent-ready.
[](https://www.npmjs.com/package/@eigenpal/cli)
[](https://www.npmjs.com/package/@eigenpal/cli)
[](https://github.com/eigenpal/cli/blob/main/LICENSE)
[](https://github.com/eigenpal/cli)
## Install
```bash
npm i -g @eigenpal/cli
eigenpal auth login # or set EIGENPAL_API_KEY in CI
eigenpal skill install # install skill for your agent
```
## Commands
| Command | Purpose |
| ----------------------------------------- | ----------------------------------------------------- |
| [`eigenpal status`](./docs/status.md) | Server, tenant, user, key id, workflow count. |
| [`eigenpal init`](./docs/init.md) | Scaffold a `workflow` or `agent` project. |
| [`eigenpal auth`](./docs/auth.md) | Profile management. |
| [`eigenpal workflow`](./docs/workflow.md) | Workflow, evaluators, dataset, experiment, execution. |
| [`eigenpal agents`](./docs/agents.md) | Agent source, triggers, runs, datasets, and sessions. |
| [`eigenpal run`](./docs/run.md) | Run an agent target such as `agents.invoice@latest`. |
| [`eigenpal runs`](./docs/runs.md) | List runs for an agent target. |
| [`eigenpal skill`](./docs/skill.md) | Install the agent skill across AI tools. |
## Use it
`cd` into a folder with your data, then ask your agent:
> Build a workflow that extracts line items from these PDFs, judge with an
> LLM, seed five dataset examples, and run an experiment.
The skill teaches your agent the schemas. The platform handles versioning,
evals, traces, and governance.
```bash
eigenpal init workflow extract --template pdf-extraction
eigenpal workflow validate # local validation
eigenpal workflow execution run --watch # one-shot run
eigenpal workflow dataset push --file ./dataset # upload dataset
eigenpal workflow experiment run # batch eval
eigenpal workflow execution list --json | jq # query as JSON
```
## Primitives
| Primitive | Purpose |
| -------------- | ------------------------------------------------------- |
| **Workflow** | Versioned DAG of steps. The thing that runs in prod. |
| **Dataset** | `(input, expected_output)` examples. Your ground truth. |
| **Evaluator** | Scorers: LLM judge, exact match, custom. |
| **Experiment** | Batch run of a workflow over a dataset, scored. |
## Environment variables
Most users never need to set these — `eigenpal auth login` writes a profile to `~/.config/eigenpal/credentials.json` and every command derives its config from there. Reach for env vars when you can't run an interactive login (CI), need to switch context for one shell, or want to override a single field without editing the credentials file.
| Variable | Purpose |
| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `EIGENPAL_API_KEY` | Bypass the profile entirely. Set in CI to skip `auth login`. When set, `EIGENPAL_BASE_URL` (or the cloud default) is used — the active profile is **not** consulted, so a stale profile can't redirect a CI run to the wrong server. |
| `EIGENPAL_BASE_URL` | Override the server URL for one command or shell. Pairs with `EIGENPAL_API_KEY` to point CI at an on-prem deployment. Without `EIGENPAL_API_KEY`, this overrides whatever the active profile would have used. |
| `EIGENPAL_PROFILE` | Switch the active profile for one shell without touching `~/.config/eigenpal/credentials.json`. Useful for ad-hoc context switches: `EIGENPAL_PROFILE=staging eigenpal status`. Persistent equivalent: `eigenpal auth use `. |
| `EIGENPAL_DIR` | Override the workflow project directory used by `init` / `validate`. Defaults to `./eigenpal`. |
Resolution precedence: command-line flags > env vars > active profile > defaults.
## Support
File issues at [github.com/eigenpal/cli/issues](https://github.com/eigenpal/cli/issues).
## License
Apache-2.0. See [LICENSE](./LICENSE).