thoth-agents 0.2.6 → 0.2.8
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/prompt-sections.d.ts +5 -1
- package/dist/{chunk-5DHG5II4.js → chunk-75JOF37E.js} +1 -1
- package/dist/{chunk-DAZFSPN4.js → chunk-FM7HCZSW.js} +992 -161
- package/dist/{chunk-76DARQOT.js → chunk-YLRPDTU7.js} +256 -208
- package/dist/cli/claude-code-install.d.ts +7 -2
- package/dist/cli/codex-install.d.ts +4 -0
- package/dist/cli/commands.d.ts +13 -3
- package/dist/cli/index.js +83 -15
- package/dist/cli/managed-state-io.d.ts +1 -0
- package/dist/cli/model-catalog/cache.d.ts +29 -0
- package/dist/cli/model-catalog/index.d.ts +18 -0
- package/dist/cli/model-catalog/models-dev.d.ts +12 -0
- package/dist/cli/model-catalog/types.d.ts +19 -0
- package/dist/cli/model-effort.d.ts +11 -0
- package/dist/cli/opencode-effort.d.ts +10 -0
- package/dist/cli/operations/claude-code.d.ts +9 -0
- package/dist/cli/operations/codex.d.ts +9 -1
- package/dist/cli/operations/types.d.ts +4 -0
- package/dist/cli/paths.d.ts +1 -0
- package/dist/cli/providers.d.ts +9 -9
- package/dist/cli/tui/components/ModelChoiceScreen.d.ts +8 -0
- package/dist/cli/tui/components/ModelScreen.d.ts +1 -0
- package/dist/cli/tui/index.js +250 -335
- package/dist/cli/tui/model-catalog.d.ts +4 -8
- package/dist/cli/tui/operations.d.ts +1 -1
- package/dist/cli/types.d.ts +3 -1
- package/dist/config/constants.d.ts +26 -0
- package/dist/harness/writers/claude-code-subagent.d.ts +2 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
|
@@ -12,6 +12,9 @@ export interface SubagentRulesSection {
|
|
|
12
12
|
progressConcept: 'progress';
|
|
13
13
|
userQuestionConcept: 'userQuestion';
|
|
14
14
|
}
|
|
15
|
+
export interface ReasoningDisciplineSection {
|
|
16
|
+
kind: 'reasoning-discipline';
|
|
17
|
+
}
|
|
15
18
|
export interface ResponseBudgetSection {
|
|
16
19
|
kind: 'response-budget';
|
|
17
20
|
}
|
|
@@ -28,13 +31,14 @@ export interface RoleTextSection {
|
|
|
28
31
|
kind: 'role-text';
|
|
29
32
|
template: string;
|
|
30
33
|
}
|
|
31
|
-
export type PromptSection = QuestionProtocolSection | SubagentRulesSection | ResponseBudgetSection | StepBudgetSection | ModelFamilySection | RoleTextSection;
|
|
34
|
+
export type PromptSection = QuestionProtocolSection | SubagentRulesSection | ReasoningDisciplineSection | ResponseBudgetSection | StepBudgetSection | ModelFamilySection | RoleTextSection;
|
|
32
35
|
export type RolePromptSection = PromptSection;
|
|
33
36
|
export interface PromptSectionRenderer<TSection extends PromptSection> {
|
|
34
37
|
render(section: TSection, dialect: HarnessPromptDialect): string;
|
|
35
38
|
}
|
|
36
39
|
export declare function createQuestionProtocolSection(): QuestionProtocolSection;
|
|
37
40
|
export declare function createSubagentRulesSection(memoryAccess?: SemanticMemoryAccess): SubagentRulesSection;
|
|
41
|
+
export declare function createReasoningDisciplineSection(): ReasoningDisciplineSection;
|
|
38
42
|
export declare function createResponseBudgetSection(): ResponseBudgetSection;
|
|
39
43
|
export declare function createStepBudgetSection(steps?: number): StepBudgetSection | undefined;
|
|
40
44
|
export declare function detectModelFamilyFromModel(model?: string | ModelEntry[]): ModelFamily | undefined;
|