foldrun 0.3.1 → 0.4.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/README.md +4 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # foldrun
2
2
 
3
+ [![ci](https://github.com/foldrun-io/foldrun-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/foldrun-io/foldrun-cli/actions/workflows/ci.yml)
4
+ [![npm](https://img.shields.io/npm/v/foldrun)](https://www.npmjs.com/package/foldrun)
5
+ [![licence](https://img.shields.io/badge/licence-Apache--2.0-blue)](LICENSE)
6
+
3
7
  **Agents are just folders.** An agent is a folder with a markdown file in it. A flow is
4
8
  a numbered list naming agents. You write them, read them, diff them in a pull
5
9
  request, and run them from this CLI.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foldrun",
3
- "version": "0.3.1",
3
+ "version": "0.4.0",
4
4
  "description": "Agents are just folders. Write them, check them, run them — on your machine.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -11,7 +11,7 @@
11
11
  "node": ">=22"
12
12
  },
13
13
  "dependencies": {
14
- "@foldrun/core": "^0.2.0"
14
+ "@foldrun/core": "^0.3.0"
15
15
  },
16
16
  "files": [
17
17
  "bin",
@@ -20,7 +20,8 @@
20
20
  ],
21
21
  "scripts": {
22
22
  "e2e": "FOLDRUN_E2E=1 FOLDRUN_DATA=$(mktemp -d /tmp/foldrun-e2e-XXXXXX) node --test --test-timeout=300000 tests/e2e.test.ts",
23
- "test": "FOLDRUN_DATA=$(mktemp -d /tmp/foldrun-test-XXXXXX) node --test tests/cli-secrets.test.ts tests/cli-check-library.test.ts tests/cli-connect.test.ts"
23
+ "test": "FOLDRUN_DATA=$(mktemp -d /tmp/foldrun-test-XXXXXX) node --test tests/cli-secrets.test.ts tests/cli-check-library.test.ts tests/cli-connect.test.ts",
24
+ "release": "node scripts/release.mjs"
24
25
  },
25
26
  "repository": {
26
27
  "type": "git",