agentic-dev 0.2.1 → 0.2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-dev",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Scaffold an agentic template repo with the selected frontend surface and shared toolchain assets.",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@10.32.0",
@@ -31,6 +31,7 @@ frontend_resolver_path="${script_dir}/resolve_frontend_target.py"
31
31
  proof_schema_path="${script_dir}/../ui-parity/contracts/proof-result.schema.json"
32
32
  route_gap_schema_path="${script_dir}/../ui-parity/contracts/route-gap-report.schema.json"
33
33
  schema_validator_path="${script_dir}/validate_json_schema.py"
34
+ repo_root="$(cd "${repo_root}" && pwd)"
34
35
 
35
36
  resolve_contract() {
36
37
  "${resolver_path}" "${repo_root}"
@@ -119,7 +120,6 @@ if [[ ! -f "${resolver_path}" ]]; then
119
120
  fi
120
121
 
121
122
  contract_path="$(resolve_contract)" || exit 1
122
- repo_root="$(cd "$(dirname "${contract_path}")/.." && pwd)"
123
123
 
124
124
  case "${phase}" in
125
125
  plan_audit|build|proof|deploy_dev|verify_dev)