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.
- package/dist/bin/cli.js +60 -15
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +60 -15
- 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 +12 -1
- package/package.json +1 -1
|
@@ -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-
|
|
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:
|