Merge pull request #637 from AutoMaker-Org/feature/v0.13.0rc-1768936017583-e6ni

feat: implement pipeline step exclusion functionality
This commit is contained in:
Shirone
2026-01-21 11:59:08 +00:00
committed by GitHub
20 changed files with 782 additions and 24 deletions

View File

@@ -49,6 +49,7 @@ export interface Feature {
// Branch info - worktree path is derived at runtime from branchName
branchName?: string; // Name of the feature branch (undefined = use current worktree)
skipTests?: boolean;
excludedPipelineSteps?: string[]; // Array of pipeline step IDs to skip for this feature
thinkingLevel?: ThinkingLevel;
reasoningEffort?: ReasoningEffort;
planningMode?: PlanningMode;

View File

@@ -19,6 +19,8 @@ export type {
McpHttpServerConfig,
AgentDefinition,
ReasoningEffort,
// System prompt configuration for CLAUDE.md auto-loading
SystemPromptPreset,
} from './provider.js';
// Provider constants and utilities
@@ -34,6 +36,10 @@ export type {
CodexApprovalPolicy,
CodexCliConfig,
CodexAuthStatus,
// Event types for CLI event parsing
CodexEventType,
CodexItemType,
CodexEvent,
} from './codex.js';
export * from './codex-models.js';