cclaw-cli 0.48.4 → 0.48.6
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/artifact-linter.js +32 -0
- package/dist/config.d.ts +1 -1
- package/dist/config.js +44 -5
- package/dist/content/hooks.js +111 -42
- package/dist/content/ideate-command.js +11 -0
- package/dist/content/iron-laws.d.ts +134 -0
- package/dist/content/iron-laws.js +182 -0
- package/dist/content/meta-skill.js +1 -0
- package/dist/content/next-command.js +12 -0
- package/dist/content/observe.js +189 -4
- package/dist/content/ops-command.js +11 -0
- package/dist/content/session-hooks.js +3 -1
- package/dist/content/stage-schema.d.ts +16 -0
- package/dist/content/stage-schema.js +82 -5
- package/dist/content/stages/review.js +2 -2
- package/dist/content/stages/tdd.js +7 -7
- package/dist/content/start-command.js +12 -0
- package/dist/content/subagents.js +26 -0
- package/dist/content/view-command.js +11 -0
- package/dist/eval/agents/workflow.js +22 -2
- package/dist/gate-evidence.js +30 -1
- package/dist/harness-adapters.js +3 -0
- package/dist/install.js +8 -0
- package/dist/internal/advance-stage.js +10 -2
- package/dist/internal/envelope-validate.d.ts +7 -0
- package/dist/internal/envelope-validate.js +66 -0
- package/dist/internal/knowledge-digest.d.ts +7 -0
- package/dist/internal/knowledge-digest.js +93 -0
- package/dist/knowledge-store.d.ts +8 -0
- package/dist/knowledge-store.js +95 -0
- package/dist/tdd-cycle.d.ts +7 -0
- package/dist/tdd-cycle.js +29 -0
- package/dist/types.d.ts +6 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -109,6 +109,10 @@ export interface TddPathConfig {
|
|
|
109
109
|
export interface CompoundConfig {
|
|
110
110
|
recurrenceThreshold?: number;
|
|
111
111
|
}
|
|
112
|
+
export interface IronLawsConfig {
|
|
113
|
+
mode?: "advisory" | "strict";
|
|
114
|
+
strictLaws?: string[];
|
|
115
|
+
}
|
|
112
116
|
export interface CclawConfig {
|
|
113
117
|
version: string;
|
|
114
118
|
flowVersion: string;
|
|
@@ -173,6 +177,8 @@ export interface CclawConfig {
|
|
|
173
177
|
* discipline tractable without forcing it on tiny quick-track fixes.
|
|
174
178
|
*/
|
|
175
179
|
sliceReview?: SliceReviewConfig;
|
|
180
|
+
/** Optional per-law strictness controls for hook-enforced iron laws. */
|
|
181
|
+
ironLaws?: IronLawsConfig;
|
|
176
182
|
}
|
|
177
183
|
/**
|
|
178
184
|
* @deprecated Use `CclawConfig` instead.
|