Skip to content

Commit 0c32d61

Browse files
committed
Switch default codex model from gpt-5.3-codex to gpt-5.2-codex (v1.12.2)
1 parent 7e0c3ae commit 0c32d61

File tree

12 files changed

+36
-36
lines changed

12 files changed

+36
-36
lines changed

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"name": "humanize",
99
"source": "./",
1010
"description": "Humanize - An iterative development plugin that uses Codex to review Claude's work. Creates a feedback loop where Claude implements plans and Codex independently reviews progress, ensuring quality through continuous refinement.",
11-
"version": "1.12.1"
11+
"version": "1.12.2"
1212
}
1313
]
1414
}

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "humanize",
33
"description": "Humanize - An iterative development plugin that uses Codex to review Claude's work. Creates a feedback loop where Claude implements plans and Codex independently reviews progress, ensuring quality through continuous refinement.",
4-
"version": "1.12.1",
4+
"version": "1.12.2",
55
"author": {
66
"name": "humania-org"
77
},

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Humanize
22

3-
**Current Version: 1.12.1**
3+
**Current Version: 1.12.2**
44

55
> Derived from the [GAAC (GitHub-as-a-Context)](https://github.com/SihaoLiu/gaac) project.
66
@@ -151,7 +151,7 @@ OPTIONS:
151151
--plan-file <path> Explicit plan file path (alternative to positional arg)
152152
--max <N> Maximum iterations before auto-stop (default: 42)
153153
--codex-model <MODEL:EFFORT>
154-
Codex model and reasoning effort (default: gpt-5.3-codex:xhigh)
154+
Codex model and reasoning effort (default: gpt-5.2-codex:xhigh)
155155
--codex-timeout <SECONDS>
156156
Timeout for each Codex review in seconds (default: 5400)
157157
--track-plan-file Indicate plan file should be tracked in git (must be clean)
@@ -216,7 +216,7 @@ OPTIONS:
216216
217217
OPTIONS:
218218
--codex-model <MODEL:EFFORT>
219-
Codex model and reasoning effort (default: gpt-5.3-codex:xhigh)
219+
Codex model and reasoning effort (default: gpt-5.2-codex:xhigh)
220220
--codex-timeout <SECONDS>
221221
Timeout for the Codex query in seconds (default: 3600)
222222
-h, --help Show help message

hooks/lib/loop-common.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ readonly FIELD_AGENT_TEAMS="agent_teams"
4646
# Detect Claude Code plugin mode by checking if this script lives under
4747
# .claude/plugins/cache/ (CLAUDE_PLUGIN_ROOT is a config-time template
4848
# variable, not a runtime env var, so we cannot check it directly).
49-
# - Claude Code plugin mode -> gpt-5.3-codex
49+
# - Claude Code plugin mode -> gpt-5.2-codex
5050
# - Skill mode (Codex/Kimi) -> gpt-5.2
5151
if [[ -z "${DEFAULT_CODEX_MODEL:-}" ]]; then
5252
_LOOP_COMMON_SELF="${BASH_SOURCE[0]:-$0}"
5353
if [[ "$_LOOP_COMMON_SELF" == */.claude/plugins/cache/* ]]; then
54-
DEFAULT_CODEX_MODEL="gpt-5.3-codex"
54+
DEFAULT_CODEX_MODEL="gpt-5.2-codex"
5555
else
5656
DEFAULT_CODEX_MODEL="gpt-5.2"
5757
fi

scripts/ask-codex.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ USAGE:
5555
5656
OPTIONS:
5757
--codex-model <MODEL:EFFORT>
58-
Codex model and reasoning effort (default: gpt-5.3-codex:xhigh)
58+
Codex model and reasoning effort (default: gpt-5.2-codex:xhigh)
5959
--codex-timeout <SECONDS>
6060
Timeout for the Codex query in seconds (default: 3600)
6161
-h, --help Show this help message
@@ -68,7 +68,7 @@ DESCRIPTION:
6868
6969
EXAMPLES:
7070
/humanize:ask-codex How should I structure the authentication module?
71-
/humanize:ask-codex --codex-model gpt-5.3-codex:high What are the performance bottlenecks?
71+
/humanize:ask-codex --codex-model gpt-5.2-codex:high What are the performance bottlenecks?
7272
/humanize:ask-codex --codex-timeout 300 Review the error handling in src/api/
7373
7474
ENVIRONMENT:

skills/ask-codex/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ Execute the ask-codex script with the user's arguments:
3535
## Notes
3636

3737
- The response is saved to `.humanize/skill/<timestamp>/output.md` for reference
38-
- Default model is `gpt-5.3-codex:xhigh` with a 3600-second timeout
38+
- Default model is `gpt-5.2-codex:xhigh` with a 3600-second timeout

tests/robustness/test-state-file-robustness.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ cat > "$TEST_DIR/state.md" << 'EOF'
3636
---
3737
current_round: 5
3838
max_iterations: 10
39-
codex_model: gpt-5.3-codex
39+
codex_model: gpt-5.2-codex
4040
codex_effort: xhigh
4141
codex_timeout: 5400
4242
push_every_round: false
@@ -79,7 +79,7 @@ max_iterations: 20
7979
extra_field: some_value
8080
another_extra: 12345
8181
custom_metadata: true
82-
codex_model: gpt-5.3-codex
82+
codex_model: gpt-5.2-codex
8383
codex_effort: xhigh
8484
codex_timeout: 5400
8585
---
@@ -404,7 +404,7 @@ cat > "$TEST_DIR/state-full-review.md" << 'EOF'
404404
current_round: 3
405405
max_iterations: 20
406406
full_review_round: 7
407-
codex_model: gpt-5.3-codex
407+
codex_model: gpt-5.2-codex
408408
codex_effort: xhigh
409409
plan_file: plan.md
410410
plan_tracked: false
@@ -429,7 +429,7 @@ cat > "$TEST_DIR/state-no-full-review.md" << 'EOF'
429429
---
430430
current_round: 2
431431
max_iterations: 15
432-
codex_model: gpt-5.3-codex
432+
codex_model: gpt-5.2-codex
433433
codex_effort: xhigh
434434
plan_file: plan.md
435435
plan_tracked: false
@@ -455,7 +455,7 @@ cat > "$TEST_DIR/state-min-full-review.md" << 'EOF'
455455
current_round: 1
456456
max_iterations: 10
457457
full_review_round: 2
458-
codex_model: gpt-5.3-codex
458+
codex_model: gpt-5.2-codex
459459
codex_effort: xhigh
460460
plan_file: plan.md
461461
plan_tracked: false

tests/test-agent-teams.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ GI_EOF
441441
---
442442
current_round: $round
443443
max_iterations: 42
444-
codex_model: gpt-5.3-codex
444+
codex_model: gpt-5.2-codex
445445
codex_effort: xhigh
446446
codex_timeout: 5400
447447
push_every_round: false

tests/test-finalize-phase.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ setup_loop_dir() {
191191
---
192192
current_round: $round
193193
max_iterations: $max_iter
194-
codex_model: gpt-5.3-codex
194+
codex_model: gpt-5.2-codex
195195
codex_effort: xhigh
196196
codex_timeout: 5400
197197
push_every_round: false

tests/test-plan-file-validation.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ fi
717717
echo "Test 13: Reject codex effort with YAML-unsafe characters"
718718
rm -rf "$TEST_DIR/.humanize/rlcr" 2>/dev/null || true
719719
set +e
720-
RESULT=$("$PROJECT_ROOT/scripts/setup-rlcr-loop.sh" --codex-model "gpt-5.3-codex:high#comment" "plans/test-plan.md" 2>&1)
720+
RESULT=$("$PROJECT_ROOT/scripts/setup-rlcr-loop.sh" --codex-model "gpt-5.2-codex:high#comment" "plans/test-plan.md" 2>&1)
721721
EXIT_CODE=$?
722722
set -e
723723
if [[ $EXIT_CODE -ne 0 ]] && echo "$RESULT" | grep -q "invalid characters"; then
@@ -729,7 +729,7 @@ fi
729729
# Test 14: Accept valid codex model with dots and hyphens
730730
echo "Test 14: Accept valid codex model (alphanumeric, dots, hyphens)"
731731
set +e
732-
RESULT=$("$PROJECT_ROOT/scripts/setup-rlcr-loop.sh" --codex-model "gpt-5.3-codex:medium" "plans/test-plan.md" 2>&1)
732+
RESULT=$("$PROJECT_ROOT/scripts/setup-rlcr-loop.sh" --codex-model "gpt-5.2-codex:medium" "plans/test-plan.md" 2>&1)
733733
EXIT_CODE=$?
734734
set -e
735735
# Should not fail due to model/effort validation (may fail later for other reasons)

0 commit comments

Comments
 (0)