@mestreyoda/fabrica 0.2.30 → 0.2.31

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.
@@ -44,6 +44,8 @@ The `.worktrees/` directory sits NEXT TO the repo folder (not inside it). This k
44
44
 
45
45
  Never create or implement the project under `~/.openclaw/workspace/<slug>` unless the task message explicitly says that directory is the canonical repo path. If the repo already contains scaffolded files, do not re-initialize the project with `npm init`, `uv init`, `cargo init`, or a second skeleton generator — keep the existing stack and modify the scaffold inside the assigned worktree. Once you are in the assigned worktree, stay there for the rest of the task and do not switch back to the main checkout.
46
46
 
47
+ IMPORTANT: the shell `exec` tool is stateless and does NOT remember a previous `cd`. That means every shell command that depends on the repo location must explicitly prefix the worktree path, e.g. `cd "$WORKTREE" && <command>` or use absolute file paths. If `pwd` or tool output ever shows `~/.openclaw/workspace`, `~/`, or any directory outside the assigned worktree, stop, re-enter the worktree, and only continue with commands that include the explicit `cd "$WORKTREE" && ...` prefix.
48
+
47
49
  ### 2. Implement the changes
48
50
 
49
51
  - Read the issue description and comments thoroughly
@@ -56,6 +56,8 @@ fi
56
56
 
57
57
  **IMPORTANT:** Always verify you are on the correct branch before running tests. If you test on `main` and the feature code is not there, your results will be WRONG.
58
58
 
59
+ IMPORTANT: the shell `exec` tool is stateless and does NOT remember a previous `cd`. That means every repo-scoped command must explicitly include the worktree path, e.g. `cd "$WORKTREE" && <command>` or use absolute file paths inside the assigned worktree. If `pwd` or any command output shows `~/.openclaw/workspace`, `~/`, or any directory outside the assigned worktree, stop, re-enter the worktree, and rerun the command with an explicit `cd "$WORKTREE" && ...` prefix before trusting the result.
60
+
59
61
  ### 2. Run QA contract (MANDATORY)
60
62
 
61
63
  ```bash
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.30") {
113909
- return "0.2.30";
113908
+ if ("0.2.31") {
113909
+ return "0.2.31";
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.30",
3
+ "version": "0.2.31",
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",