rhachet 1.19.1 → 1.19.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/package.json +1 -1
- package/readme.md +14 -14
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "rhachet",
|
|
3
3
|
"author": "ehmpathy",
|
|
4
4
|
"description": "A framework for reliable, thorough thought. Weave threads of thought via stitches.",
|
|
5
|
-
"version": "1.19.
|
|
5
|
+
"version": "1.19.2",
|
|
6
6
|
"repository": "ehmpathy/rhachet",
|
|
7
7
|
"homepage": "https://github.com/ehmpathy/rhachet",
|
|
8
8
|
"keywords": [
|
package/readme.md
CHANGED
|
@@ -15,7 +15,7 @@ rhachet makes it simple to leverage thought routes - safely, easily, and effecti
|
|
|
15
15
|
- 🔩 **rigid** routes for augmented orchestration
|
|
16
16
|
- 💧 **fluid** routes for probabalistic exploration
|
|
17
17
|
|
|
18
|
-
with rhachet, you can
|
|
18
|
+
with rhachet, you can
|
|
19
19
|
- declare thought routes, reusably and maintainably
|
|
20
20
|
- apply thought routes, observably and reliably
|
|
21
21
|
- compose and accumulate reusable thought skill
|
|
@@ -86,7 +86,7 @@ npm install rhachet
|
|
|
86
86
|
|
|
87
87
|
## cli
|
|
88
88
|
|
|
89
|
-
rhachet provides cli commands for each thought route
|
|
89
|
+
rhachet provides cli commands for each thought route
|
|
90
90
|
|
|
91
91
|
| command | route | what it does |
|
|
92
92
|
| ----------------- | ------- | ------------------------------------------ |
|
|
@@ -111,14 +111,16 @@ export const getRoleRegistries = () => [
|
|
|
111
111
|
|
|
112
112
|
### 🪨 solid: run
|
|
113
113
|
|
|
114
|
+
deterministic operations, no brain.
|
|
115
|
+
|
|
114
116
|
```sh
|
|
115
117
|
npx rhachet run --skill gh.workflow.logs --workflow test
|
|
116
118
|
```
|
|
117
119
|
|
|
118
|
-
deterministic operations, no brain.
|
|
119
|
-
|
|
120
120
|
### 🔩 rigid: act
|
|
121
121
|
|
|
122
|
+
augmented orchestration, harness controls flow, brain augments.
|
|
123
|
+
|
|
122
124
|
```sh
|
|
123
125
|
npx rhachet act \
|
|
124
126
|
--role mechanic --skill review \
|
|
@@ -130,18 +132,16 @@ npx rhachet act \
|
|
|
130
132
|
--brain openai/codex
|
|
131
133
|
```
|
|
132
134
|
|
|
133
|
-
augmented orchestration, harness controls flow, brain augments.
|
|
134
|
-
|
|
135
135
|
### 💧 fluid: ask
|
|
136
136
|
|
|
137
|
+
probabilistic exploration, brain decides the path.
|
|
138
|
+
|
|
137
139
|
```sh
|
|
138
140
|
npx rhachet ask \
|
|
139
141
|
--role skeptic \
|
|
140
142
|
--ask "are birds real?"
|
|
141
143
|
```
|
|
142
144
|
|
|
143
|
-
probabilistic exploration, brain decides the path.
|
|
144
|
-
|
|
145
145
|
## sdk
|
|
146
146
|
|
|
147
147
|
rhachet provides a type-safe sdk for programmatic actor usage.
|
|
@@ -177,16 +177,18 @@ the `brains` allowlist:
|
|
|
177
177
|
|
|
178
178
|
### 🪨 solid: run
|
|
179
179
|
|
|
180
|
+
deterministic operations, no brain.
|
|
181
|
+
|
|
180
182
|
```ts
|
|
181
183
|
await mechanic.run({
|
|
182
184
|
skill: { 'gh.workflow.logs': { workflow: 'test' } },
|
|
183
185
|
});
|
|
184
186
|
```
|
|
185
187
|
|
|
186
|
-
deterministic operations, no brain.
|
|
187
|
-
|
|
188
188
|
### 🔩 rigid: act
|
|
189
189
|
|
|
190
|
+
augmented orchestration, harness controls flow, brain augments.
|
|
191
|
+
|
|
190
192
|
```ts
|
|
191
193
|
// uses default brain (first in allowlist)
|
|
192
194
|
await mechanic.act({
|
|
@@ -200,18 +202,16 @@ await mechanic.act({
|
|
|
200
202
|
});
|
|
201
203
|
```
|
|
202
204
|
|
|
203
|
-
augmented orchestration, harness controls flow, brain augments.
|
|
204
|
-
|
|
205
205
|
### 💧 fluid: ask
|
|
206
206
|
|
|
207
|
+
probabilistic exploration, brain decides the path.
|
|
208
|
+
|
|
207
209
|
```ts
|
|
208
210
|
await skeptic.ask({
|
|
209
211
|
prompt: 'are birds real?',
|
|
210
212
|
});
|
|
211
213
|
```
|
|
212
214
|
|
|
213
|
-
probabilistic exploration, brain decides the path.
|
|
214
|
-
|
|
215
215
|
# vision
|
|
216
216
|
|
|
217
217
|
build or use digital actors, who work even from your laptop, and work for anyone you choose.
|