@opencode_weave/weave 0.7.4-preview.1 → 0.7.4
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/agents/tapestry/prompt-composer.d.ts +0 -2
- package/dist/config/schema.d.ts +6 -0
- package/dist/index.js +1150 -340
- package/dist/shared/index.d.ts +2 -2
- package/dist/shared/log.d.ts +11 -1
- package/package.json +3 -3
|
@@ -14,10 +14,8 @@ export declare function buildTapestryDisciplineSection(): string;
|
|
|
14
14
|
export declare function buildTapestrySidebarTodosSection(): string;
|
|
15
15
|
export declare function buildTapestryPlanExecutionSection(disabled?: Set<string>): string;
|
|
16
16
|
export declare function buildTapestryVerificationSection(): string;
|
|
17
|
-
export declare function buildTapestryVerificationGateSection(): string;
|
|
18
17
|
export declare function buildTapestryPostExecutionReviewSection(disabled: Set<string>): string;
|
|
19
18
|
export declare function buildTapestryExecutionSection(): string;
|
|
20
|
-
export declare function buildTapestryDebuggingSection(): string;
|
|
21
19
|
export declare function buildTapestryStyleSection(): string;
|
|
22
20
|
/**
|
|
23
21
|
* Compose the full Tapestry system prompt from sections.
|
package/dist/config/schema.d.ts
CHANGED
|
@@ -265,6 +265,12 @@ export declare const WeaveConfigSchema: z.ZodObject<{
|
|
|
265
265
|
disabled_workflows: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
266
266
|
directories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
267
267
|
}, z.core.$strip>>;
|
|
268
|
+
log_level: z.ZodOptional<z.ZodEnum<{
|
|
269
|
+
DEBUG: "DEBUG";
|
|
270
|
+
INFO: "INFO";
|
|
271
|
+
WARN: "WARN";
|
|
272
|
+
ERROR: "ERROR";
|
|
273
|
+
}>>;
|
|
268
274
|
}, z.core.$strip>;
|
|
269
275
|
export type AgentOverrideConfig = z.infer<typeof AgentOverrideConfigSchema>;
|
|
270
276
|
export type AgentOverrides = z.infer<typeof AgentOverridesSchema>;
|