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.
@@ -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:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juno-code",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
4
4
  "description": "TypeScript CLI tool for AI subagent orchestration with code automation",
5
5
  "keywords": [
6
6
  "ai",