juno-code 1.0.27 → 1.0.28
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/dist/bin/cli.js +18 -3
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +18 -3
- package/dist/bin/cli.mjs.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/dist/templates/services/claude.py +10 -0
- package/package.json +1 -1
|
@@ -175,6 +175,12 @@ Environment Variables:
|
|
|
175
175
|
help="Continue the most recent conversation"
|
|
176
176
|
)
|
|
177
177
|
|
|
178
|
+
parser.add_argument(
|
|
179
|
+
"--agents",
|
|
180
|
+
type=str,
|
|
181
|
+
help="Agents configuration (forwarded to Claude CLI --agents flag)"
|
|
182
|
+
)
|
|
183
|
+
|
|
178
184
|
parser.add_argument(
|
|
179
185
|
"--additional-args",
|
|
180
186
|
type=str,
|
|
@@ -229,6 +235,10 @@ Environment Variables:
|
|
|
229
235
|
if args.continue_conversation:
|
|
230
236
|
cmd.append("--continue")
|
|
231
237
|
|
|
238
|
+
# Add agents configuration if specified
|
|
239
|
+
if args.agents:
|
|
240
|
+
cmd.extend(["--agents", args.agents])
|
|
241
|
+
|
|
232
242
|
# Add output format if JSON requested
|
|
233
243
|
# Note: stream-json requires --verbose when using --print mode
|
|
234
244
|
if args.json:
|