Skip to content

Commit b0e9780

Browse files
author
zenus
committed
chore: bump version to 1.15.0 and align alt plan language
1 parent 910aad6 commit b0e9780

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.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.16.0"
11+
"version": "1.15.0"
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.16.0",
4+
"version": "1.15.0",
55
"author": {
66
"name": "humania-org"
77
},

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Humanize
22

3-
**Current Version: 1.16.0**
3+
**Current Version: 1.15.0**
44

55
> Derived from the [GAAC (GitHub-as-a-Context)](https://github.com/SihaoLiu/gaac) project.
66

commands/gen-plan.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,15 +488,15 @@ This template is used to produce the main output file (e.g., `plan.md`).
488488
489489
### Translated Language Variant
490490
491-
When `alternative_plan_language` resolves to a supported language name through merged config loading, a translated variant of the output file is also written after the main file. The variant filename is constructed by inserting `_<code>` (the ISO 639-1 code from the built-in mapping table) immediately before the file extension:
491+
When `alternative_plan_language` resolves to a supported language name through merged config loading, a translated variant of the output file is also written after the main file. Humanize loads config from merged layers in this order: default config, optional user config, then optional project config; `alternative_plan_language` may be set at any of those layers. The variant filename is constructed by inserting `_<code>` (the ISO 639-1 code from the built-in mapping table) immediately before the file extension:
492492
493493
- `plan.md` becomes `plan_<code>.md` (e.g. `plan_zh.md` for Chinese, `plan_ko.md` for Korean)
494494
- `docs/my-plan.md` becomes `docs/my-plan_<code>.md`
495495
- `output` (no extension) becomes `output_<code>`
496496
497497
The translated variant file contains a full translation of the main plan file's current content in the configured language. All identifiers (`AC-*`, task IDs, file paths, API names, command flags) remain unchanged, as they are language-neutral.
498498
499-
When `alternative_plan_language` is empty, absent, set to `"English"`, or set to an unsupported language, no translated variant is written.
499+
When `alternative_plan_language` is empty, absent, set to `"English"`, or set to an unsupported language, no translated variant is written. Humanize does not auto-create `.humanize/config.json` when no project config file is present.
500500
```
501501
502502
### Generation Rules

config/default_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"codex_effort": "high",
44
"bitlesson_model": "haiku",
55
"agent_teams": false,
6-
"chinese_plan": false,
6+
"alternative_plan_language": "",
77
"gen_plan_mode": "discussion"
88
}

docs/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ Current built-in keys:
228228
| `codex_effort` | `high` | Shared default reasoning effort (`xhigh`, `high`, `medium`, `low`) |
229229
| `bitlesson_model` | `haiku` | Model used by the BitLesson selector agent |
230230
| `agent_teams` | `false` | Project-level default for agent teams workflow |
231-
| `chinese_plan` | `false` | Project preference for Chinese plan generation |
231+
| `alternative_plan_language` | `""` | Optional translated plan variant language; supported values include `Chinese`, `Korean`, `Japanese`, `Spanish`, `French`, `German`, `Portuguese`, `Russian`, `Arabic`, or ISO codes like `zh` |
232232
| `gen_plan_mode` | `discussion` | Default plan-generation mode |
233233

234234
### Codex Model Configuration

0 commit comments

Comments
 (0)