@agntk/cli 0.1.2 → 0.2.1
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.
- package/dist/cli-v2.d.ts +14 -0
- package/dist/cli-v2.d.ts.map +1 -0
- package/dist/cli-v2.js +848 -0
- package/dist/cli-v2.js.map +1 -0
- package/dist/cli.d.ts +7 -4
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +923 -74
- package/dist/cli.js.map +1 -1
- package/dist/config.d.ts +10 -40
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +40 -39
- package/dist/config.js.map +1 -1
- package/dist/index.d.ts +1 -8
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -4
- package/dist/index.js.map +1 -1
- package/package.json +13 -13
- package/LICENSE +0 -22
package/dist/cli-v2.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* @fileoverview V2 CLI entry point — zero-config agent.
|
|
4
|
+
*
|
|
5
|
+
* Usage:
|
|
6
|
+
* npx agntk-v2 --name "my-agent" "do something"
|
|
7
|
+
* npx agntk-v2 --name "my-agent" --instructions "you are a deploy bot" "roll back staging"
|
|
8
|
+
* npx agntk-v2 --name "my-agent" -i
|
|
9
|
+
* npx agntk-v2 list
|
|
10
|
+
* npx agntk-v2 "my-agent" "what were you working on?"
|
|
11
|
+
* cat error.log | npx agntk-v2 --name "debugger" "explain these errors"
|
|
12
|
+
*/
|
|
13
|
+
import 'dotenv/config';
|
|
14
|
+
//# sourceMappingURL=cli-v2.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli-v2.d.ts","sourceRoot":"","sources":["../src/cli-v2.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;GAUG;AAGH,OAAO,eAAe,CAAC"}
|