juno-code 1.0.31 → 1.0.32

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.
@@ -95,6 +95,8 @@ Examples:
95
95
  %(prog)s -p "Complex task" -m claude-opus-4-20250514 --tool Read --tool Write
96
96
  %(prog)s -p "Multi-tool task" --allowed-tools Bash Edit Read Write
97
97
  %(prog)s -p "Restricted task" --disallowed-tools Bash WebSearch
98
+ %(prog)s --continue -p "Continue previous conversation"
99
+ %(prog)s --resume abc123 -p "Resume session abc123"
98
100
 
99
101
  Default Tools (enabled by default when no --allowed-tools specified):
100
102
  Task, Bash, Glob, Grep, ExitPlanMode, Read, Edit, Write, NotebookEdit,
@@ -210,6 +212,14 @@ Environment Variables:
210
212
  help="Continue the most recent conversation"
211
213
  )
212
214
 
215
+ parser.add_argument(
216
+ "-r", "--resume",
217
+ type=str,
218
+ dest="resume_session",
219
+ metavar="SESSION_ID",
220
+ help="Resume a conversation by session ID (e.g., claude --resume abc123)"
221
+ )
222
+
213
223
  parser.add_argument(
214
224
  "--agents",
215
225
  type=str,
@@ -286,6 +296,10 @@ Environment Variables:
286
296
  if args.continue_conversation:
287
297
  cmd.append("--continue")
288
298
 
299
+ # Add resume flag if specified
300
+ if args.resume_session:
301
+ cmd.extend(["--resume", args.resume_session])
302
+
289
303
  # Add agents configuration if specified
290
304
  if args.agents:
291
305
  cmd.extend(["--agents", args.agents])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juno-code",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "TypeScript CLI tool for AI subagent orchestration with code automation",
5
5
  "keywords": [
6
6
  "ai",