alys-akusa 0.1.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.
Files changed (3) hide show
  1. package/README.md +28 -0
  2. package/dist/index.cjs +6339 -0
  3. package/package.json +36 -0
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Alys CLI
2
+
3
+ Alys is a local runtime for autonomous dataset generation.
4
+
5
+ ```bash
6
+ npm install -g alys-akusa
7
+ alys
8
+ ```
9
+
10
+ Or run without installing:
11
+
12
+ ```bash
13
+ npx alys-akusa generate "B2B SaaS sales objections"
14
+ ```
15
+
16
+ ## Free Launch Credits
17
+
18
+ During the launch window, each Alys account receives 5 free dataset generations.
19
+ One generated dataset spends one generation credit. If a run requests 5 datasets,
20
+ it spends all 5 free generations.
21
+
22
+ ## Local Development
23
+
24
+ ```bash
25
+ pnpm install
26
+ pnpm alys
27
+ pnpm alys -- generate "AI evaluation datasets" --format jsonl,csv,rag
28
+ ```