@elsium-ai/cli 0.1.6 → 0.1.7

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.
Files changed (2) hide show
  1. package/README.md +42 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # @elsium-ai/cli
2
+
3
+ CLI tool for [ElsiumAI](https://github.com/elsium-ai/elsium-ai) projects.
4
+
5
+ [![npm](https://img.shields.io/npm/v/@elsium-ai/cli.svg)](https://www.npmjs.com/package/@elsium-ai/cli)
6
+ [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/elsium-ai/elsium-ai/blob/main/LICENSE)
7
+
8
+ ## Install
9
+
10
+ ```bash
11
+ npm install -g @elsium-ai/cli
12
+ # or use directly
13
+ npx @elsium-ai/cli init
14
+ ```
15
+
16
+ ## Commands
17
+
18
+ - **`elsium init`** — Scaffold a new ElsiumAI project with best-practice structure
19
+ - **`elsium dev`** — Start development server with hot reload
20
+ - **`elsium eval`** — Run evaluation suites against your agents
21
+
22
+ ## Usage
23
+
24
+ ```bash
25
+ # Create a new project
26
+ elsium init my-ai-app
27
+
28
+ # Start development
29
+ cd my-ai-app
30
+ elsium dev
31
+
32
+ # Run evaluations
33
+ elsium eval
34
+ ```
35
+
36
+ ## Part of ElsiumAI
37
+
38
+ This package is the CLI for the [ElsiumAI](https://github.com/elsium-ai/elsium-ai) framework. See the [full documentation](https://github.com/elsium-ai/elsium-ai) for guides and examples.
39
+
40
+ ## License
41
+
42
+ [MIT](https://github.com/elsium-ai/elsium-ai/blob/main/LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elsium-ai/cli",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "CLI tool for ElsiumAI projects",
5
5
  "license": "MIT",
6
6
  "author": "Eric Utrera <ebutrera9103@gmail.com>",