projecta-rrr 1.23.0 → 1.23.1
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/CHANGELOG.md +5 -0
- package/package.json +1 -1
- package/rrr/lib/codex-agent-gen.js +1 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to RRR will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
|
|
7
|
+
## [1.23.1] - 2026-04-20
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- **Codex agent TOML generation** — removed `tier` and `fallback_model` fields from generated `.toml` files; Codex CLI rejects these unknown fields and silently ignores the entire agent definition. Generated files now contain only `name`, `description`, and `model`.
|
|
11
|
+
|
|
7
12
|
## [1.23.0] - 2026-04-20
|
|
8
13
|
|
|
9
14
|
**v1.23 Multi-Provider Compatibility — RRR workflow now works on OpenAI Codex with zero extra setup.**
|
package/package.json
CHANGED
|
@@ -97,22 +97,16 @@ function generateCodexAgentToml(sourceMarkdown, filename) {
|
|
|
97
97
|
// Look up tier mapping; default to STANDARD (sonnet) if model not found
|
|
98
98
|
const tierEntry = TIER_MAP[modelField] || TIER_MAP.sonnet;
|
|
99
99
|
|
|
100
|
-
// Build TOML lines
|
|
100
|
+
// Build TOML lines — only fields Codex CLI accepts
|
|
101
101
|
const lines = [
|
|
102
102
|
'# Generated by projecta-rrr — do not edit manually',
|
|
103
103
|
`# Source: agents/${filename}`,
|
|
104
104
|
'',
|
|
105
105
|
`name = "${agentName}"`,
|
|
106
106
|
`description = "${descriptionField || agentName}"`,
|
|
107
|
-
`tier = "${tierEntry.tier}"`,
|
|
108
107
|
`model = "${tierEntry.model}"`,
|
|
109
108
|
];
|
|
110
109
|
|
|
111
|
-
// ADAPTIVE tier includes fallback_model
|
|
112
|
-
if (tierEntry.fallback_model) {
|
|
113
|
-
lines.push(`fallback_model = "${tierEntry.fallback_model}"`);
|
|
114
|
-
}
|
|
115
|
-
|
|
116
110
|
return lines.join('\n') + '\n';
|
|
117
111
|
}
|
|
118
112
|
|