juno-code 1.0.27 → 1.0.29

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.
@@ -26,10 +26,11 @@ class ClaudeService:
26
26
  MODEL_SHORTHANDS = {
27
27
  ":claude-haiku-4-5": "claude-haiku-4-5-20251001",
28
28
  ":claude-sonnet-4-5": "claude-sonnet-4-5-20250929",
29
+ ":claude-opus-4-5": "claude-opus-4-5-20251101",
29
30
  ":claude-opus-4": "claude-opus-4-20250514",
30
31
  ":haiku": "claude-haiku-4-5-20251001",
31
32
  ":sonnet": "claude-sonnet-4-5-20250929",
32
- ":opus": "claude-opus-4-20250514",
33
+ ":opus": "claude-opus-4-5-20251101",
33
34
  }
34
35
 
35
36
  def __init__(self):
@@ -175,6 +176,12 @@ Environment Variables:
175
176
  help="Continue the most recent conversation"
176
177
  )
177
178
 
179
+ parser.add_argument(
180
+ "--agents",
181
+ type=str,
182
+ help="Agents configuration (forwarded to Claude CLI --agents flag)"
183
+ )
184
+
178
185
  parser.add_argument(
179
186
  "--additional-args",
180
187
  type=str,
@@ -229,6 +236,10 @@ Environment Variables:
229
236
  if args.continue_conversation:
230
237
  cmd.append("--continue")
231
238
 
239
+ # Add agents configuration if specified
240
+ if args.agents:
241
+ cmd.extend(["--agents", args.agents])
242
+
232
243
  # Add output format if JSON requested
233
244
  # Note: stream-json requires --verbose when using --print mode
234
245
  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.29",
4
4
  "description": "TypeScript CLI tool for AI subagent orchestration with code automation",
5
5
  "keywords": [
6
6
  "ai",