agno-cli 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 (2) hide show
  1. package/dist/bin/agno.js +3616 -0
  2. package/package.json +42 -0
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "agno-cli",
3
+ "version": "0.1.0",
4
+ "description": "CLI for interacting with AgentOS instances",
5
+ "type": "module",
6
+ "bin": {
7
+ "agno-cli": "./dist/bin/agno.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "engines": {
13
+ "node": ">=20.0.0"
14
+ },
15
+ "scripts": {
16
+ "build": "tsup",
17
+ "dev": "tsx src/bin/agno.ts",
18
+ "test": "vitest run",
19
+ "test:e2e": "vitest run --dir tests/e2e",
20
+ "test:integration": "vitest run --dir tests/integration",
21
+ "test:watch": "vitest",
22
+ "lint": "biome check .",
23
+ "lint:fix": "biome check --write .",
24
+ "typecheck": "tsc --noEmit"
25
+ },
26
+ "dependencies": {
27
+ "@worksofadam/agentos-sdk": "^0.6.0",
28
+ "chalk": "^5.6",
29
+ "cli-table3": "^0.6.5",
30
+ "commander": "^14.0",
31
+ "ora": "^9.3",
32
+ "yaml": "^2.8"
33
+ },
34
+ "devDependencies": {
35
+ "@biomejs/biome": "^2.3",
36
+ "@types/node": "^22",
37
+ "tsup": "^8.5",
38
+ "tsx": "^4.21",
39
+ "typescript": "^5.7",
40
+ "vitest": "^2.1"
41
+ }
42
+ }