bb8ef30bbe
Trim rule and result char budgets after compaction via new postCompactMaxRuleChars/postCompactMaxResultChars config, applied through withPostCompactBudget. Extract codex-hook helpers into dynamic-target-fingerprints, hook-output, path-utils, rules-engine-factory, and transcript-rule-filter modules.
10 lines
327 B
TypeScript
10 lines
327 B
TypeScript
import type { PiRulesConfig } from "./rules/types.js";
|
|
|
|
export function withPostCompactBudget(config: PiRulesConfig): PiRulesConfig {
|
|
return {
|
|
...config,
|
|
maxRuleChars: Math.min(config.maxRuleChars, config.postCompactMaxRuleChars),
|
|
maxResultChars: Math.min(config.maxResultChars, config.postCompactMaxResultChars),
|
|
};
|
|
}
|