tardie 0.10.0 → 0.10.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 (2) hide show
  1. package/README.md +7 -7
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -150,17 +150,17 @@ const releaseAnalyst = actor({
150
150
  components: [
151
151
  // infer handles messages as model loops composed by children.
152
152
  infer([
153
- instructions, // the agent's system prompt
154
- deploys, // provides recent_deploys tool and its paired handler
153
+ instructions, // system prompt
154
+ deploys, // provides recent_deploys tool and paired handler
155
155
  // budget scopes the tool-call limit to the codeMode subtree
156
156
  budget([
157
157
  codeMode([ // sandboxed code execution
158
- filesPackage(), // access file system
159
- fetchPackage(), // make network fetch
160
- agentsPackage(), // call subagents
161
- workspacePackage() // sqlite workspace
158
+ filesPackage(),
159
+ fetchPackage(),
160
+ agentsPackage(),
161
+ workspacePackage()
162
162
  ])
163
- ], { authority: caller() }), // declares authority to grant budget
163
+ ], { authority: caller() }),
164
164
  compaction(), // bounded model context
165
165
  outputValidateOnce // validates structured result once without correction
166
166
  ], model),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tardie",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "license": "MIT",
5
5
  "author": "Clavia, Inc.",
6
6
  "description": "A durable agent harness. State is a pure function of the log.",
@@ -16,7 +16,7 @@
16
16
  "access": "public"
17
17
  },
18
18
  "tardigrade": {
19
- "sourceTree": "9ad5b25bb0b49092e6a3aa93d8c2f35886f769fb"
19
+ "sourceTree": "1ffdd0b2fc59369ef9abb85d1a820652aab8157e"
20
20
  },
21
21
  "files": [
22
22
  "src",
@@ -42,6 +42,8 @@
42
42
  "./runtime/*": "./src/agent/runtime/*.ts",
43
43
  "./core/actor": "./src/core/actor/index.ts",
44
44
  "./core/actor/*": "./src/core/actor/*.ts",
45
+ "./core/actor/method": "./src/core/actor/method/index.ts",
46
+ "./core/actor/method/*": "./src/core/actor/method/*.ts",
45
47
  "./core/communication": "./src/core/communication/index.ts",
46
48
  "./core/communication/*": "./src/core/communication/*.ts",
47
49
  "./core/log": "./src/core/log/index.ts",