@mestreyoda/fabrica 0.2.41 → 0.2.42
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 +21 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -203,6 +203,27 @@ tail -f ~/.openclaw/workspace/logs/genesis.log
|
|
|
203
203
|
openclaw fabrica metrics
|
|
204
204
|
```
|
|
205
205
|
|
|
206
|
+
This command now includes convergence-oriented telemetry such as:
|
|
207
|
+
- cause counts (for example `qa_missing_required_gates`, `qa_sanitization_failed`)
|
|
208
|
+
- human escalations
|
|
209
|
+
- average dispatch → first PR timing
|
|
210
|
+
- per-stack breakdowns
|
|
211
|
+
|
|
212
|
+
**11. Inspect a live issue/run**:
|
|
213
|
+
|
|
214
|
+
```bash
|
|
215
|
+
openclaw fabrica doctor issue --project <slug> --issue <id>
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
Use this when a project is looping or stuck. It shows:
|
|
219
|
+
- current PR / artifact state
|
|
220
|
+
- progress state
|
|
221
|
+
- convergence cause + QA subcause
|
|
222
|
+
- missing QA gates, when applicable
|
|
223
|
+
- recommended next action
|
|
224
|
+
|
|
225
|
+
For deferred, non-blocking ideas after this milestone, see `FUTURE_IMPROVEMENTS.md`.
|
|
226
|
+
|
|
206
227
|
## Configuration
|
|
207
228
|
|
|
208
229
|
### Minimal (gh CLI only)
|
package/dist/index.js
CHANGED
|
@@ -113905,8 +113905,8 @@ import fsSync from "node:fs";
|
|
|
113905
113905
|
import path5 from "node:path";
|
|
113906
113906
|
import { fileURLToPath as fileURLToPath3 } from "node:url";
|
|
113907
113907
|
function getCurrentVersion() {
|
|
113908
|
-
if ("0.2.
|
|
113909
|
-
return "0.2.
|
|
113908
|
+
if ("0.2.42") {
|
|
113909
|
+
return "0.2.42";
|
|
113910
113910
|
}
|
|
113911
113911
|
try {
|
|
113912
113912
|
const pkgPath = path5.join(THIS_DIR, "..", "..", "package.json");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mestreyoda/fabrica",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.42",
|
|
4
4
|
"description": "Autonomous software engineering pipeline for OpenClaw. Turns ideas into deployed code via intake, dispatch, review, test, and merge.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|