juno-code 1.0.28 → 1.0.30
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 +89 -17
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +89 -17
- package/dist/bin/cli.mjs.map +1 -1
- package/dist/index.js +24 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +24 -1
- package/dist/index.mjs.map +1 -1
- package/dist/templates/services/claude.py +17 -4
- package/package.json +6 -6
|
@@ -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):
|
|
@@ -82,9 +83,9 @@ class ClaudeService:
|
|
|
82
83
|
Examples:
|
|
83
84
|
%(prog)s -p "Write a hello world function"
|
|
84
85
|
%(prog)s -pp prompt.txt --cd /path/to/project
|
|
85
|
-
%(prog)s -p "Add tests" -m :opus --tool
|
|
86
|
-
%(prog)s -p "Quick task" -m :haiku
|
|
87
|
-
%(prog)s -p "Complex task" -m claude-opus-4-20250514
|
|
86
|
+
%(prog)s -p "Add tests" -m :opus --tool Bash --tool Edit
|
|
87
|
+
%(prog)s -p "Quick task" -m :haiku --disallowed-tool Bash
|
|
88
|
+
%(prog)s -p "Complex task" -m claude-opus-4-20250514 --tool Read --tool Write
|
|
88
89
|
|
|
89
90
|
Environment Variables:
|
|
90
91
|
CLAUDE_PROJECT_PATH Project path (default: current directory)
|
|
@@ -138,6 +139,13 @@ Environment Variables:
|
|
|
138
139
|
help="Allowed tools (can be used multiple times, e.g. 'Bash' 'Edit')"
|
|
139
140
|
)
|
|
140
141
|
|
|
142
|
+
parser.add_argument(
|
|
143
|
+
"--disallowed-tool",
|
|
144
|
+
action="append",
|
|
145
|
+
dest="disallowed_tools",
|
|
146
|
+
help="Disallowed tools (can be used multiple times, e.g. 'Bash' 'Edit'). Default: empty"
|
|
147
|
+
)
|
|
148
|
+
|
|
141
149
|
parser.add_argument(
|
|
142
150
|
"--permission-mode",
|
|
143
151
|
type=str,
|
|
@@ -231,6 +239,11 @@ Environment Variables:
|
|
|
231
239
|
cmd.append("--allowed-tools")
|
|
232
240
|
cmd.extend(default_tools)
|
|
233
241
|
|
|
242
|
+
# Add disallowed tools if specified (AFTER the prompt)
|
|
243
|
+
if args.disallowed_tools:
|
|
244
|
+
cmd.append("--disallowed-tools")
|
|
245
|
+
cmd.extend(args.disallowed_tools)
|
|
246
|
+
|
|
234
247
|
# Add continue flag if specified
|
|
235
248
|
if args.continue_conversation:
|
|
236
249
|
cmd.append("--continue")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "juno-code",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.30",
|
|
4
4
|
"description": "TypeScript CLI tool for AI subagent orchestration with code automation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -129,16 +129,16 @@
|
|
|
129
129
|
},
|
|
130
130
|
"repository": {
|
|
131
131
|
"type": "git",
|
|
132
|
-
"url": "https://github.com/
|
|
132
|
+
"url": "https://github.com/askbudi/juno-code.git"
|
|
133
133
|
},
|
|
134
134
|
"bugs": {
|
|
135
|
-
"url": "https://github.com/
|
|
135
|
+
"url": "https://github.com/askbudi/juno-code/issues"
|
|
136
136
|
},
|
|
137
|
-
"homepage": "https://
|
|
137
|
+
"homepage": "https://askbudi.ai/juno-code#readme",
|
|
138
138
|
"license": "MIT",
|
|
139
139
|
"author": {
|
|
140
|
-
"name": "
|
|
141
|
-
"email": "
|
|
140
|
+
"name": "Juno AI INC.",
|
|
141
|
+
"email": "golchin@askdev.ai"
|
|
142
142
|
},
|
|
143
143
|
"publishConfig": {
|
|
144
144
|
"access": "public"
|