@pixpilot/scaffoldfy-configs 0.35.0 → 0.36.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @pixpilot/scaffoldfy-configs
2
2
 
3
+ ## 0.36.0
4
+
5
+ ### Minor Changes
6
+
7
+ - support interpolated command arguments
8
+
3
9
  ## 0.35.0
4
10
 
5
11
  ### Minor Changes
@@ -122,7 +122,22 @@
122
122
  "description": "Creates the agent worktree, starts Docker and hands the terminal to the agent",
123
123
  "type": "exec",
124
124
  "config": {
125
- "command": "npx -y @pixpilot/coding-agent-sandbox@latest --agent {{agent}} --repo \"{{repoPath}}\" --task \"{{taskName}}\" --skills-dir \"{{skillsDir}}\" --full-access {{fullAccess}} {{gitMountFlag}}"
125
+ "command": "npx",
126
+ "args": [
127
+ "-y",
128
+ "@pixpilot/coding-agent-sandbox@latest",
129
+ "--agent",
130
+ "{{agent}}",
131
+ "--repo",
132
+ "{{repoPath}}",
133
+ "--task",
134
+ "{{taskName}}",
135
+ "--skills-dir",
136
+ "{{skillsDir}}",
137
+ "--full-access",
138
+ "{{fullAccess}}",
139
+ "{{gitMountFlag}}"
140
+ ]
126
141
  },
127
142
  "enabled": {
128
143
  "type": "condition",
@@ -139,7 +154,19 @@
139
154
  "value": "sandboxAction === 'offline'"
140
155
  },
141
156
  "config": {
142
- "command": "coding-agent-sandbox --offline --agent {{agent}} --repo \"{{repoPath}}\" --task \"{{taskName}}\" --full-access {{fullAccess}} {{gitMountFlag}}"
157
+ "command": "coding-agent-sandbox",
158
+ "args": [
159
+ "--offline",
160
+ "--agent",
161
+ "{{agent}}",
162
+ "--repo",
163
+ "{{repoPath}}",
164
+ "--task",
165
+ "{{taskName}}",
166
+ "--full-access",
167
+ "{{fullAccess}}",
168
+ "{{gitMountFlag}}"
169
+ ]
143
170
  }
144
171
  },
145
172
  {
@@ -152,7 +179,8 @@
152
179
  "value": "sandboxAction === 'prune'"
153
180
  },
154
181
  "config": {
155
- "command": "npx -y @pixpilot/coding-agent-sandbox@latest prune"
182
+ "command": "npx",
183
+ "args": ["-y", "@pixpilot/coding-agent-sandbox@latest", "prune"]
156
184
  }
157
185
  }
158
186
  ]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixpilot/scaffoldfy-configs",
3
3
  "type": "module",
4
- "version": "0.35.0",
4
+ "version": "0.36.0",
5
5
  "author": "PixPilot <m.doaie@hotmail.com>",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -27,10 +27,10 @@
27
27
  "@types/node": "^22.18.11",
28
28
  "eslint": "^9.38.0",
29
29
  "@internal/eslint-config": "0.3.0",
30
- "@internal/prettier-config": "0.0.1",
31
30
  "@internal/tsdown-config": "0.1.0",
31
+ "@internal/prettier-config": "0.0.1",
32
32
  "@internal/vitest-config": "0.1.0",
33
- "@pixpilot/scaffoldfy": "0.53.0"
33
+ "@pixpilot/scaffoldfy": "0.54.0"
34
34
  },
35
35
  "prettier": "@internal/prettier-config",
36
36
  "publishConfig": {