overstory 0.0.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.
Files changed (3) hide show
  1. package/README.md +7 -0
  2. package/index.js +2 -0
  3. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # overstory
2
+
3
+ > The runtime layer above your agents.
4
+
5
+ Compiled, not interpreted; resumed, not replayed; updated by dependency, not rerun by tree.
6
+
7
+ This name is reserved. Under active development — see [pi-taskflow](https://www.npmjs.com/package/pi-taskflow) for the current iteration.
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // overstory — name reserved, under active development.
2
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "overstory",
3
+ "version": "0.0.1",
4
+ "description": "The runtime layer above your agents: flows compile to IR, runs are snapshottable and resumable, expensive effects are scheduled, not fired. Name reserved — under active development.",
5
+ "license": "MIT",
6
+ "author": "heggria <bshengtao@gmail.com>",
7
+ "keywords": [
8
+ "agent",
9
+ "runtime",
10
+ "orchestration",
11
+ "incremental",
12
+ "resumable",
13
+ "supervision-tree"
14
+ ],
15
+ "main": "index.js"
16
+ }