@yesod/cli 0.0.1 → 0.0.2
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/README.md +17 -0
- package/package.json +5 -3
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @yesod/cli
|
|
2
|
+
|
|
3
|
+
CLI for [Yesod](https://github.com/eryv-ai/yesod) — orchestration toolkit that makes AI agents delegate better and lets humans see why.
|
|
4
|
+
|
|
5
|
+
## Commands
|
|
6
|
+
|
|
7
|
+
- `yesod init` — detect your agent runtime, install the adapter, register yesod tools
|
|
8
|
+
- `yesod status` — show running workflows and session status
|
|
9
|
+
- `yesod run` — replay a saved workflow from stored events
|
|
10
|
+
|
|
11
|
+
## Status
|
|
12
|
+
|
|
13
|
+
Pre-alpha. Commands are stubbed.
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yesod/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/eryv-ai/yesod.git",
|
|
@@ -10,14 +10,16 @@
|
|
|
10
10
|
"bin": {
|
|
11
11
|
"yesod": "./dist/index.js"
|
|
12
12
|
},
|
|
13
|
-
"files": [
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
14
16
|
"publishConfig": {
|
|
15
17
|
"access": "public"
|
|
16
18
|
},
|
|
17
19
|
"scripts": {
|
|
18
20
|
"build": "tsup",
|
|
19
21
|
"dev": "tsup --watch",
|
|
20
|
-
"test": "vitest run",
|
|
22
|
+
"test": "vitest run --passWithNoTests",
|
|
21
23
|
"clean": "rm -rf dist"
|
|
22
24
|
},
|
|
23
25
|
"dependencies": {
|