forge-pipeline 0.8.0 → 0.8.1

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.
Files changed (2) hide show
  1. package/lib/utils.sh +4 -0
  2. package/package.json +1 -1
package/lib/utils.sh CHANGED
@@ -96,6 +96,10 @@ validate_json() {
96
96
  json_get() {
97
97
  local file="$1"
98
98
  local key="$2"
99
+ # Auto-prepend dot if the key doesn't start with one
100
+ if [[ "$key" != .* ]]; then
101
+ key=".${key}"
102
+ fi
99
103
  jq -r "$key" "$file" 2>/dev/null
100
104
  }
101
105
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forge-pipeline",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Autonomous multi-agent coding pipeline",
5
5
  "bin": {
6
6
  "forge": "./bin/forge.js"