juno-code 1.0.19 → 1.0.22

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/index.js CHANGED
@@ -75,7 +75,7 @@ var __export = (target, all) => {
75
75
  exports.version = void 0;
76
76
  var init_version = __esm({
77
77
  "src/version.ts"() {
78
- exports.version = "1.0.19";
78
+ exports.version = "1.0.22";
79
79
  }
80
80
  });
81
81
  function isHeadlessEnvironment() {
package/dist/index.mjs CHANGED
@@ -44,7 +44,7 @@ var __export = (target, all) => {
44
44
  var version;
45
45
  var init_version = __esm({
46
46
  "src/version.ts"() {
47
- version = "1.0.19";
47
+ version = "1.0.22";
48
48
  }
49
49
  });
50
50
  function isHeadlessEnvironment() {
@@ -15,7 +15,7 @@ class CodexService:
15
15
  """Service wrapper for OpenAI Codex CLI"""
16
16
 
17
17
  # Default configuration
18
- DEFAULT_MODEL = "gpt-4"
18
+ DEFAULT_MODEL = "gpt-5-codex"
19
19
  DEFAULT_AUTO_INSTRUCTION = """You are an AI coding assistant. Follow the instructions provided and generate high-quality code."""
20
20
 
21
21
  def __init__(self):
@@ -156,8 +156,10 @@ Examples:
156
156
  # Add exec command with prompt
157
157
  cmd.extend(["exec", full_prompt])
158
158
 
159
- # Note: We do NOT add --json flag. Codex will output text format by default.
160
- # This allows streaming text updates to work correctly with shell backend.
159
+ # Add --json flag for streaming support
160
+ # This is CRITICAL for codex to output streaming responses
161
+ # Without this flag, codex will not stream progress updates
162
+ cmd.append("--json")
161
163
 
162
164
  return cmd
163
165
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juno-code",
3
- "version": "1.0.19",
3
+ "version": "1.0.22",
4
4
  "description": "TypeScript CLI tool for AI subagent orchestration with code automation",
5
5
  "keywords": [
6
6
  "ai",