ferix-code 0.0.2-beta.12 → 0.0.2-beta.14
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/index.d.ts +92 -3
- package/dist/index.js +443 -243
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import * as effect_Types from 'effect/Types';
|
|
|
4
4
|
import * as effect_Effect from 'effect/Effect';
|
|
5
5
|
import * as effect_ParseResult from 'effect/ParseResult';
|
|
6
6
|
import * as effect_SchemaAST from 'effect/SchemaAST';
|
|
7
|
+
import * as effect_Layer from 'effect/Layer';
|
|
7
8
|
|
|
8
9
|
declare const LLMError_base: new <A extends Record<string, any> = {}>(args: effect_Types.Equals<A, {}> extends true ? void : { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }) => effect_Cause.YieldableError & {
|
|
9
10
|
readonly _tag: "LLMError";
|
|
@@ -104,6 +105,11 @@ declare class GitError extends GitError_base<{
|
|
|
104
105
|
*/
|
|
105
106
|
type FerixError = LLMError | ParseError | PlanStoreError | SessionStoreError | ProgressStoreError | GuardrailsStoreError | OrchestratorError | GitError;
|
|
106
107
|
|
|
108
|
+
/**
|
|
109
|
+
* Supported LLM provider names.
|
|
110
|
+
*/
|
|
111
|
+
declare const ProviderNameSchema: Schema.Literal<["claude", "cursor", "opencode"]>;
|
|
112
|
+
type ProviderName = typeof ProviderNameSchema.Type;
|
|
107
113
|
declare const PhasePromptOverridesSchema: Schema.Struct<{
|
|
108
114
|
breakdown: Schema.optional<typeof Schema.String>;
|
|
109
115
|
planning: Schema.optional<typeof Schema.String>;
|
|
@@ -150,6 +156,8 @@ declare const LoopConfigSchema: Schema.Struct<{
|
|
|
150
156
|
}>>;
|
|
151
157
|
additionalContext: Schema.optional<typeof Schema.String>;
|
|
152
158
|
}>>;
|
|
159
|
+
/** LLM provider to use. Defaults to "claude". */
|
|
160
|
+
provider: Schema.optional<Schema.Literal<["claude", "cursor", "opencode"]>>;
|
|
153
161
|
}>;
|
|
154
162
|
type LoopConfig = typeof LoopConfigSchema.Type;
|
|
155
163
|
declare const LoopSummarySchema: Schema.Struct<{
|
|
@@ -188,6 +196,7 @@ declare const decodeLoopConfig: (u: unknown, overrideOptions?: effect_SchemaAST.
|
|
|
188
196
|
} | undefined;
|
|
189
197
|
readonly additionalContext?: string | undefined;
|
|
190
198
|
} | undefined;
|
|
199
|
+
readonly provider?: "claude" | "cursor" | "opencode" | undefined;
|
|
191
200
|
}, effect_ParseResult.ParseError, never>;
|
|
192
201
|
|
|
193
202
|
/**
|
|
@@ -216,6 +225,7 @@ declare const LoopStartedEventSchema: Schema.TaggedStruct<"LoopStarted", {
|
|
|
216
225
|
}>>;
|
|
217
226
|
additionalContext: Schema.optional<typeof Schema.String>;
|
|
218
227
|
}>>;
|
|
228
|
+
provider: Schema.optional<Schema.Literal<["claude", "cursor", "opencode"]>>;
|
|
219
229
|
}>;
|
|
220
230
|
timestamp: typeof Schema.Number;
|
|
221
231
|
}>;
|
|
@@ -507,6 +517,7 @@ declare const DomainEventSchema: Schema.Union<[Schema.TaggedStruct<"LoopStarted"
|
|
|
507
517
|
}>>;
|
|
508
518
|
additionalContext: Schema.optional<typeof Schema.String>;
|
|
509
519
|
}>>;
|
|
520
|
+
provider: Schema.optional<Schema.Literal<["claude", "cursor", "opencode"]>>;
|
|
510
521
|
}>;
|
|
511
522
|
timestamp: typeof Schema.Number;
|
|
512
523
|
}>, Schema.TaggedStruct<"LoopCompleted", {
|
|
@@ -1022,6 +1033,7 @@ declare const RunOptionsDataSchema: Schema.Struct<{
|
|
|
1022
1033
|
}>>;
|
|
1023
1034
|
additionalContext: Schema.optional<typeof Schema.String>;
|
|
1024
1035
|
}>>;
|
|
1036
|
+
provider: Schema.optional<Schema.Literal<["claude", "cursor", "opencode"]>>;
|
|
1025
1037
|
}>;
|
|
1026
1038
|
consumer: Schema.optional<Schema.Literal<["tui", "headless", "none"]>>;
|
|
1027
1039
|
}>;
|
|
@@ -2073,13 +2085,70 @@ declare const MemoryGuardrails: {
|
|
|
2073
2085
|
readonly layer: typeof layer$3;
|
|
2074
2086
|
};
|
|
2075
2087
|
|
|
2088
|
+
/**
|
|
2089
|
+
* Configuration for a provider.
|
|
2090
|
+
*/
|
|
2091
|
+
interface ProviderConfig {
|
|
2092
|
+
/** Provider name */
|
|
2093
|
+
readonly name: ProviderName;
|
|
2094
|
+
/** CLI command to execute */
|
|
2095
|
+
readonly cliCommand: string;
|
|
2096
|
+
/** Default arguments for the CLI */
|
|
2097
|
+
readonly args: readonly string[];
|
|
2098
|
+
/** Environment variables to pass */
|
|
2099
|
+
readonly env?: Readonly<Record<string, string>>;
|
|
2100
|
+
/** Permission mode for the CLI */
|
|
2101
|
+
readonly permissions?: "acceptEdits" | "yolo" | "prompt";
|
|
2102
|
+
/** URL for installation instructions */
|
|
2103
|
+
readonly installUrl: string;
|
|
2104
|
+
}
|
|
2105
|
+
/**
|
|
2106
|
+
* Provider interface that all LLM implementations must satisfy.
|
|
2107
|
+
*
|
|
2108
|
+
* This interface abstracts the execution of prompts across different
|
|
2109
|
+
* AI CLI tools (Claude, Cursor, etc.).
|
|
2110
|
+
*/
|
|
2111
|
+
interface Provider {
|
|
2112
|
+
/** Provider name for identification */
|
|
2113
|
+
readonly name: ProviderName;
|
|
2114
|
+
/**
|
|
2115
|
+
* Execute a prompt and return a stream of events.
|
|
2116
|
+
*
|
|
2117
|
+
* @param prompt - The prompt to send to the LLM
|
|
2118
|
+
* @param options - Optional execution options
|
|
2119
|
+
* @returns Stream of LLM events
|
|
2120
|
+
*/
|
|
2121
|
+
readonly execute: (prompt: string, options?: LLMExecuteOptions) => Stream.Stream<LLMEvent, LLMError>;
|
|
2122
|
+
}
|
|
2123
|
+
/**
|
|
2124
|
+
* Default provider configurations.
|
|
2125
|
+
*/
|
|
2126
|
+
declare const PROVIDER_CONFIGS: Readonly<Record<ProviderName, ProviderConfig>>;
|
|
2127
|
+
|
|
2076
2128
|
/**
|
|
2077
2129
|
* ClaudeCLI namespace containing the Live layer.
|
|
2078
2130
|
*/
|
|
2079
2131
|
declare const ClaudeCLI: {
|
|
2080
|
-
readonly Live:
|
|
2132
|
+
readonly Live: effect_Layer.Layer<LLM, never, never>;
|
|
2133
|
+
readonly Provider: Provider;
|
|
2081
2134
|
};
|
|
2082
2135
|
|
|
2136
|
+
/**
|
|
2137
|
+
* CursorCLI namespace containing the Live layer.
|
|
2138
|
+
*/
|
|
2139
|
+
declare const CursorCLI: {
|
|
2140
|
+
readonly Live: effect_Layer.Layer<LLM, never, never>;
|
|
2141
|
+
readonly Provider: Provider;
|
|
2142
|
+
};
|
|
2143
|
+
|
|
2144
|
+
/**
|
|
2145
|
+
* Creates a Layer for the specified provider.
|
|
2146
|
+
*
|
|
2147
|
+
* @param name - The provider name
|
|
2148
|
+
* @returns Layer providing the LLM service
|
|
2149
|
+
*/
|
|
2150
|
+
declare function createProviderLayer(name: ProviderName): Layer.Layer<LLM>;
|
|
2151
|
+
|
|
2083
2152
|
/**
|
|
2084
2153
|
* Service interface for plan persistence.
|
|
2085
2154
|
*
|
|
@@ -2454,7 +2523,7 @@ declare const FerixParser: {
|
|
|
2454
2523
|
* Production layer bundle.
|
|
2455
2524
|
*
|
|
2456
2525
|
* Uses real implementations:
|
|
2457
|
-
* - Claude CLI for LLM
|
|
2526
|
+
* - Claude CLI for LLM (default)
|
|
2458
2527
|
* - Ferix parser for signals
|
|
2459
2528
|
* - File system for plan, session, progress, guardrails, and git storage
|
|
2460
2529
|
*
|
|
@@ -2471,6 +2540,26 @@ declare const FerixParser: {
|
|
|
2471
2540
|
* ```
|
|
2472
2541
|
*/
|
|
2473
2542
|
declare const ProductionLayers: Layer.Layer<Git | GuardrailsStore | LLM | PlanStore | ProgressStore | SessionStore | SignalParser, never, never>;
|
|
2543
|
+
/**
|
|
2544
|
+
* Creates production layers with a specific LLM provider.
|
|
2545
|
+
*
|
|
2546
|
+
* @param provider - The provider name to use (defaults to "claude")
|
|
2547
|
+
* @returns A layer bundle with the specified provider
|
|
2548
|
+
*
|
|
2549
|
+
* @example
|
|
2550
|
+
* ```typescript
|
|
2551
|
+
* // Use Cursor instead of Claude
|
|
2552
|
+
* const layers = createProductionLayers("cursor");
|
|
2553
|
+
*
|
|
2554
|
+
* Effect.runPromise(
|
|
2555
|
+
* program.pipe(
|
|
2556
|
+
* Stream.runForEach(console.log),
|
|
2557
|
+
* Effect.provide(layers)
|
|
2558
|
+
* )
|
|
2559
|
+
* );
|
|
2560
|
+
* ```
|
|
2561
|
+
*/
|
|
2562
|
+
declare function createProductionLayers(provider?: ProviderName): Layer.Layer<Git | GuardrailsStore | LLM | PlanStore | ProgressStore | SessionStore | SignalParser, never, never>;
|
|
2474
2563
|
/**
|
|
2475
2564
|
* Test layer bundle.
|
|
2476
2565
|
*
|
|
@@ -2676,4 +2765,4 @@ declare function collectEvents(config: LoopConfig, mockEvents?: readonly LLMEven
|
|
|
2676
2765
|
*/
|
|
2677
2766
|
declare function main(config: LoopConfig): Promise<void>;
|
|
2678
2767
|
|
|
2679
|
-
export { type CheckFailedEvent, CheckFailedEventSchema, type CheckFailedSignal, CheckFailedSignalSchema, type CheckPassedEvent, CheckPassedEventSchema, type CheckPassedSignal, CheckPassedSignalSchema, ClaudeCLI, type CommitHash, type ConsoleLoggerConfig, ConsoleLoggerConfigSchema, type Consumer, type ConsumerType, ConsumerTypeSchema, type CriteriaDefinedData, CriteriaDefinedDataSchema, type CriteriaDefinedEvent, CriteriaDefinedEventSchema, type CriteriaDefinedSignal, CriteriaDefinedSignalSchema, type Criterion, type CriterionBasicInfo, CriterionBasicInfoSchema, type CriterionFailedData, CriterionFailedDataSchema, type CriterionFailedEvent, CriterionFailedEventSchema, type CriterionFailedSignal, CriterionFailedSignalSchema, type CriterionIdData, CriterionIdDataSchema, type CriterionPassedEvent, CriterionPassedEventSchema, type CriterionPassedSignal, CriterionPassedSignalSchema, CriterionSchema, type CriterionStatus, CriterionStatusSchema, type DiscoveryCompletedEvent, DiscoveryCompletedEventSchema, type DiscoveryStartedEvent, DiscoveryStartedEventSchema, type DomainEvent, DomainEventSchema, DomainEventUtils, type DoneEvent, DoneEventSchema, type ExecutionMode, ExecutionModeSchema, type FerixError, FerixParser, type FileLoggerConfig, FileLoggerConfigSchema, FileSystemGit, FileSystemGuardrails, FileSystemPlan, FileSystemProgress, FileSystemSession, type GeneratedTask, type GeneratedTaskList, GeneratedTaskListSchema, GeneratedTaskSchema, type GeneratedTaskStatus, GeneratedTaskStatusSchema, Git, GitError, type GitService, type Guardrail, type GuardrailAddedEvent, GuardrailAddedEventSchema, GuardrailSchema, type GuardrailSeverity, GuardrailSeveritySchema, type GuardrailSignal, GuardrailSignalSchema, type GuardrailsFile, GuardrailsFileSchema, GuardrailsStore, GuardrailsStoreError, type GuardrailsStoreService, type IterationCompletedEvent, IterationCompletedEventSchema, type IterationStartedEvent, IterationStartedEventSchema, LLM, LLMError, type LLMEvent, LLMEventSchema, type LLMExecuteOptions, type LLMService, type LLMTextEvent, LLMTextEventSchema, type LLMToolEndEvent, LLMToolEndEventSchema, type LLMToolStartEvent, LLMToolStartEventSchema, type LLMToolUseEvent, LLMToolUseEventSchema, type LearningCategory, LearningCategorySchema, type LearningRecordedEvent, LearningRecordedEventSchema, type LearningSignal, LearningSignalSchema, type LogEntry, LogEntrySchema, type LogLevel, LogLevelSchema, type LoopCompleteSignal, LoopCompleteSignalSchema, type LoopCompletedEvent, LoopCompletedEventSchema, type LoopConfig, LoopConfigSchema, type LoopError, LoopErrorSchema, type LoopFailedEvent, LoopFailedEventSchema, type LoopStartedEvent, LoopStartedEventSchema, type LoopStatus, LoopStatusSchema, type LoopSummary, LoopSummarySchema, MemoryGit, MemoryGuardrails, MemoryPlan, MemoryProgress, MemorySession, Mock, Mock as MockLLM, OrchestratorError, type OrchestratorServices, ParseError, type Phase, type PhaseBasicInfo, PhaseBasicInfoSchema, type PhaseCompletedEvent, PhaseCompletedEventSchema, type PhaseCompletedSignal, PhaseCompletedSignalSchema, type PhaseFailedData, PhaseFailedDataSchema, type PhaseFailedEvent, PhaseFailedEventSchema, type PhaseFailedSignal, PhaseFailedSignalSchema, type PhaseIdData, PhaseIdDataSchema, type PhasePromptOverrides, PhasePromptOverridesSchema, PhaseSchema, type PhaseStartedEvent, PhaseStartedEventSchema, type PhaseStartedSignal, PhaseStartedSignalSchema, type PhaseStatus, PhaseStatusSchema, type PhasesDefinedData, PhasesDefinedDataSchema, type PhasesDefinedEvent, PhasesDefinedEventSchema, type PhasesDefinedSignal, PhasesDefinedSignalSchema, type Plan, type PlanCreatedEvent, PlanCreatedEventSchema, type PlanData, PlanDataSchema, PlanId, PlanSchema, PlanStore, PlanStoreError, type PlanStoreService, type PlanUpdateFailedEvent, PlanUpdateFailedEventSchema, type PlanUpdatedEvent, PlanUpdatedEventSchema, type PrUrl, ProductionLayers, type ProgressAction, ProgressActionSchema, type ProgressEntry, ProgressEntrySchema, type ProgressFile, ProgressFileSchema, ProgressStore, ProgressStoreError, type ProgressStoreService, type ProgressUpdatedEvent, ProgressUpdatedEventSchema, type PromptConfig, PromptConfigSchema, type ReviewCompleteData, ReviewCompleteDataSchema, type ReviewCompleteEvent, ReviewCompleteEventSchema, type ReviewCompleteSignal, ReviewCompleteSignalSchema, type RunOptions, type RunOptionsData, RunOptionsDataSchema, type Session, SessionSchema, type SessionStatus, SessionStatusSchema, SessionStore, SessionStoreError, type SessionStoreService, type Signal, type SignalAccumulator, SignalParser, type SignalParserService, SignalSchema, type TUICriterion, TUICriterionSchema, type TUICriterionStatus, TUICriterionStatusSchema, type TUIPhase, TUIPhaseSchema, type TUIPhaseStatus, TUIPhaseStatusSchema, type TUIState, TUIStateSchema, type TUITask, TUITaskSchema, type TUITaskStatus, TUITaskStatusSchema, type Task, type TaskBasicInfo, TaskBasicInfoSchema, type TaskCompleteData, TaskCompleteDataSchema, type TaskCompleteSignal, type TaskCompleteSignalData, TaskCompleteSignalDataSchema, TaskCompleteSignalSchema, type TaskCompletedEvent, TaskCompletedEventSchema, TaskSchema, type TaskStatus, TaskStatusSchema, type TasksDefinedData, TasksDefinedDataSchema, type TasksDefinedEvent, TasksDefinedEventSchema, type TasksDefinedSignal, TasksDefinedSignalSchema, TestLayers, type TextEvent, TextEventSchema, type ToolEndEvent, ToolEndEventSchema, type ToolStartEvent, ToolStartEventSchema, type ToolUseEvent, ToolUseEventSchema, type ViewMode, ViewModeSchema, type WorktreeCreatedEvent, WorktreeCreatedEventSchema, type WorktreeInfo, type WorktreePath, type WorktreeRemovedEvent, WorktreeRemovedEventSchema, buildPrompt, collectEvents, createHeadlessConsumer, createTUIConsumer, createTestLayers, decodeGuardrail, decodeGuardrailsFile, decodeLLMEvent, decodeLoopConfig, decodePlan, decodePlanData, decodeProgressEntry, decodeProgressFile, decodeSession, decodeSignal, decodeSignalSync, formatTasksMd, main, parseTasksMd, run, runLoop, runTest };
|
|
2768
|
+
export { type CheckFailedEvent, CheckFailedEventSchema, type CheckFailedSignal, CheckFailedSignalSchema, type CheckPassedEvent, CheckPassedEventSchema, type CheckPassedSignal, CheckPassedSignalSchema, ClaudeCLI, type CommitHash, type ConsoleLoggerConfig, ConsoleLoggerConfigSchema, type Consumer, type ConsumerType, ConsumerTypeSchema, type CriteriaDefinedData, CriteriaDefinedDataSchema, type CriteriaDefinedEvent, CriteriaDefinedEventSchema, type CriteriaDefinedSignal, CriteriaDefinedSignalSchema, type Criterion, type CriterionBasicInfo, CriterionBasicInfoSchema, type CriterionFailedData, CriterionFailedDataSchema, type CriterionFailedEvent, CriterionFailedEventSchema, type CriterionFailedSignal, CriterionFailedSignalSchema, type CriterionIdData, CriterionIdDataSchema, type CriterionPassedEvent, CriterionPassedEventSchema, type CriterionPassedSignal, CriterionPassedSignalSchema, CriterionSchema, type CriterionStatus, CriterionStatusSchema, CursorCLI, type DiscoveryCompletedEvent, DiscoveryCompletedEventSchema, type DiscoveryStartedEvent, DiscoveryStartedEventSchema, type DomainEvent, DomainEventSchema, DomainEventUtils, type DoneEvent, DoneEventSchema, type ExecutionMode, ExecutionModeSchema, type FerixError, FerixParser, type FileLoggerConfig, FileLoggerConfigSchema, FileSystemGit, FileSystemGuardrails, FileSystemPlan, FileSystemProgress, FileSystemSession, type GeneratedTask, type GeneratedTaskList, GeneratedTaskListSchema, GeneratedTaskSchema, type GeneratedTaskStatus, GeneratedTaskStatusSchema, Git, GitError, type GitService, type Guardrail, type GuardrailAddedEvent, GuardrailAddedEventSchema, GuardrailSchema, type GuardrailSeverity, GuardrailSeveritySchema, type GuardrailSignal, GuardrailSignalSchema, type GuardrailsFile, GuardrailsFileSchema, GuardrailsStore, GuardrailsStoreError, type GuardrailsStoreService, type IterationCompletedEvent, IterationCompletedEventSchema, type IterationStartedEvent, IterationStartedEventSchema, LLM, LLMError, type LLMEvent, LLMEventSchema, type LLMExecuteOptions, type LLMService, type LLMTextEvent, LLMTextEventSchema, type LLMToolEndEvent, LLMToolEndEventSchema, type LLMToolStartEvent, LLMToolStartEventSchema, type LLMToolUseEvent, LLMToolUseEventSchema, type LearningCategory, LearningCategorySchema, type LearningRecordedEvent, LearningRecordedEventSchema, type LearningSignal, LearningSignalSchema, type LogEntry, LogEntrySchema, type LogLevel, LogLevelSchema, type LoopCompleteSignal, LoopCompleteSignalSchema, type LoopCompletedEvent, LoopCompletedEventSchema, type LoopConfig, LoopConfigSchema, type LoopError, LoopErrorSchema, type LoopFailedEvent, LoopFailedEventSchema, type LoopStartedEvent, LoopStartedEventSchema, type LoopStatus, LoopStatusSchema, type LoopSummary, LoopSummarySchema, MemoryGit, MemoryGuardrails, MemoryPlan, MemoryProgress, MemorySession, Mock, Mock as MockLLM, OrchestratorError, type OrchestratorServices, PROVIDER_CONFIGS, ParseError, type Phase, type PhaseBasicInfo, PhaseBasicInfoSchema, type PhaseCompletedEvent, PhaseCompletedEventSchema, type PhaseCompletedSignal, PhaseCompletedSignalSchema, type PhaseFailedData, PhaseFailedDataSchema, type PhaseFailedEvent, PhaseFailedEventSchema, type PhaseFailedSignal, PhaseFailedSignalSchema, type PhaseIdData, PhaseIdDataSchema, type PhasePromptOverrides, PhasePromptOverridesSchema, PhaseSchema, type PhaseStartedEvent, PhaseStartedEventSchema, type PhaseStartedSignal, PhaseStartedSignalSchema, type PhaseStatus, PhaseStatusSchema, type PhasesDefinedData, PhasesDefinedDataSchema, type PhasesDefinedEvent, PhasesDefinedEventSchema, type PhasesDefinedSignal, PhasesDefinedSignalSchema, type Plan, type PlanCreatedEvent, PlanCreatedEventSchema, type PlanData, PlanDataSchema, PlanId, PlanSchema, PlanStore, PlanStoreError, type PlanStoreService, type PlanUpdateFailedEvent, PlanUpdateFailedEventSchema, type PlanUpdatedEvent, PlanUpdatedEventSchema, type PrUrl, ProductionLayers, type ProgressAction, ProgressActionSchema, type ProgressEntry, ProgressEntrySchema, type ProgressFile, ProgressFileSchema, ProgressStore, ProgressStoreError, type ProgressStoreService, type ProgressUpdatedEvent, ProgressUpdatedEventSchema, type PromptConfig, PromptConfigSchema, type Provider, type ProviderConfig, type ProviderName, ProviderNameSchema, type ReviewCompleteData, ReviewCompleteDataSchema, type ReviewCompleteEvent, ReviewCompleteEventSchema, type ReviewCompleteSignal, ReviewCompleteSignalSchema, type RunOptions, type RunOptionsData, RunOptionsDataSchema, type Session, SessionSchema, type SessionStatus, SessionStatusSchema, SessionStore, SessionStoreError, type SessionStoreService, type Signal, type SignalAccumulator, SignalParser, type SignalParserService, SignalSchema, type TUICriterion, TUICriterionSchema, type TUICriterionStatus, TUICriterionStatusSchema, type TUIPhase, TUIPhaseSchema, type TUIPhaseStatus, TUIPhaseStatusSchema, type TUIState, TUIStateSchema, type TUITask, TUITaskSchema, type TUITaskStatus, TUITaskStatusSchema, type Task, type TaskBasicInfo, TaskBasicInfoSchema, type TaskCompleteData, TaskCompleteDataSchema, type TaskCompleteSignal, type TaskCompleteSignalData, TaskCompleteSignalDataSchema, TaskCompleteSignalSchema, type TaskCompletedEvent, TaskCompletedEventSchema, TaskSchema, type TaskStatus, TaskStatusSchema, type TasksDefinedData, TasksDefinedDataSchema, type TasksDefinedEvent, TasksDefinedEventSchema, type TasksDefinedSignal, TasksDefinedSignalSchema, TestLayers, type TextEvent, TextEventSchema, type ToolEndEvent, ToolEndEventSchema, type ToolStartEvent, ToolStartEventSchema, type ToolUseEvent, ToolUseEventSchema, type ViewMode, ViewModeSchema, type WorktreeCreatedEvent, WorktreeCreatedEventSchema, type WorktreeInfo, type WorktreePath, type WorktreeRemovedEvent, WorktreeRemovedEventSchema, buildPrompt, collectEvents, createHeadlessConsumer, createProductionLayers, createProviderLayer, createTUIConsumer, createTestLayers, decodeGuardrail, decodeGuardrailsFile, decodeLLMEvent, decodeLoopConfig, decodePlan, decodePlanData, decodeProgressEntry, decodeProgressFile, decodeSession, decodeSignal, decodeSignalSync, formatTasksMd, main, parseTasksMd, run, runLoop, runTest };
|