juno-code 1.0.29 → 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.
@@ -83,9 +83,9 @@ class ClaudeService:
83
83
  Examples:
84
84
  %(prog)s -p "Write a hello world function"
85
85
  %(prog)s -pp prompt.txt --cd /path/to/project
86
- %(prog)s -p "Add tests" -m :opus --tool "Bash Edit"
87
- %(prog)s -p "Quick task" -m :haiku
88
- %(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
89
89
 
90
90
  Environment Variables:
91
91
  CLAUDE_PROJECT_PATH Project path (default: current directory)
@@ -139,6 +139,13 @@ Environment Variables:
139
139
  help="Allowed tools (can be used multiple times, e.g. 'Bash' 'Edit')"
140
140
  )
141
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
+
142
149
  parser.add_argument(
143
150
  "--permission-mode",
144
151
  type=str,
@@ -232,6 +239,11 @@ Environment Variables:
232
239
  cmd.append("--allowed-tools")
233
240
  cmd.extend(default_tools)
234
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
+
235
247
  # Add continue flag if specified
236
248
  if args.continue_conversation:
237
249
  cmd.append("--continue")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juno-code",
3
- "version": "1.0.29",
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/owner/juno-code.git"
132
+ "url": "https://github.com/askbudi/juno-code.git"
133
133
  },
134
134
  "bugs": {
135
- "url": "https://github.com/owner/juno-code/issues"
135
+ "url": "https://github.com/askbudi/juno-code/issues"
136
136
  },
137
- "homepage": "https://github.com/owner/juno-code#readme",
137
+ "homepage": "https://askbudi.ai/juno-code#readme",
138
138
  "license": "MIT",
139
139
  "author": {
140
- "name": "Development Team",
141
- "email": "dev@example.com"
140
+ "name": "Juno AI INC.",
141
+ "email": "golchin@askdev.ai"
142
142
  },
143
143
  "publishConfig": {
144
144
  "access": "public"