@harness.farm/whipflow 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.
- package/README.md +32 -0
- package/bin/whipflow +0 -0
- package/package.json +36 -0
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# whipflow.dev
|
|
2
|
+
|
|
3
|
+
AI workflow automation for [harness.farm](https://harness.farm).
|
|
4
|
+
|
|
5
|
+
## Setup
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
bun install
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Run a flow
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
bun run run flows/hello.prose
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Install skills into Claude Code
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
bun run skills
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Then use `/whipflow` in any Claude Code session.
|
|
24
|
+
|
|
25
|
+
## Add a new flow
|
|
26
|
+
|
|
27
|
+
Create a `.prose` file in `flows/` and run it with:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
open-prose validate flows/my-flow.prose
|
|
31
|
+
open-prose run flows/my-flow.prose
|
|
32
|
+
```
|
package/bin/whipflow
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@harness.farm/whipflow",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "AI workflow automation — harness.farm",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"type": "commonjs",
|
|
9
|
+
"bin": {
|
|
10
|
+
"whipflow": "bin/whipflow"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"bin/whipflow"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "bun build --compile bin/whipflow.ts --outfile bin/whipflow",
|
|
17
|
+
"dev": "bun run bin/whipflow.ts",
|
|
18
|
+
"run": "bun run bin/whipflow.ts run",
|
|
19
|
+
"validate": "bun run bin/whipflow.ts validate",
|
|
20
|
+
"compile": "bun run bin/whipflow.ts compile",
|
|
21
|
+
"install-skills": "bun run bin/whipflow.ts install-skills",
|
|
22
|
+
"lint": "tsc --noEmit",
|
|
23
|
+
"prepublishOnly": "bun run build"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@types/node": "^20.10.0",
|
|
27
|
+
"typescript": "^5.3.0"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"open-prose": "file:../open-prose/plugin",
|
|
31
|
+
"dotenv": "^17.3.1"
|
|
32
|
+
},
|
|
33
|
+
"engines": {
|
|
34
|
+
"bun": ">=1.0.0"
|
|
35
|
+
}
|
|
36
|
+
}
|