@mestreyoda/fabrica 0.2.13 → 0.2.15

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.
@@ -103,6 +103,7 @@ else
103
103
  DELIVERY_TARGET="$(genesis_cross_validate_delivery_target "$DELIVERY_TARGET_NORMALIZED" "${GENESIS_IDEA:-$TITLE}")"
104
104
  fi
105
105
  INPUT_REPO_URL="$(echo "$INPUT" | jq -r '.metadata.repo_url // .repo_url // .repo // .scaffold.repo_url // empty')"
106
+ INPUT_REPO_PATH="$(echo "$INPUT" | jq -r '.metadata.repo_path // .metadata.scaffold_plan.repo_local // empty')"
106
107
  INPUT_PROJECT_NAME="$(echo "$INPUT" | jq -r '.metadata.project_name // .project_name // .name // .repo_name // empty')"
107
108
  EXPLICIT_OWNER_REPO="$(genesis_parse_owner_repo "$INPUT_REPO_URL" || true)"
108
109
 
@@ -189,7 +190,7 @@ if ! validate_repo_name "$REPO_NAME"; then
189
190
  fi
190
191
 
191
192
  REPO_URL="https://github.com/$GH_OWNER/$REPO_NAME"
192
- REPO_LOCAL="$HOME/git/$REPO_NAME"
193
+ REPO_LOCAL="${INPUT_REPO_PATH:-$HOME/git/$REPO_NAME}"
193
194
 
194
195
  echo "Repo: $GH_OWNER/$REPO_NAME, Stack: $STACK" >&2
195
196
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mestreyoda/fabrica",
3
- "version": "0.2.13",
3
+ "version": "0.2.15",
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",