@girardmedia/bootspring 3.3.0 → 3.3.2

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.
@@ -540,13 +540,39 @@ declare const SWARM_TOOLS: ToolDefinition[];
540
540
  declare function registerSwarmTools(): void;
541
541
 
542
542
  /**
543
- * MCP Tools - Sprint Stack
544
- * Local role-based sprint workflow helpers for planning, readiness, and learnings.
543
+ * Local Sprint Stack artifact helpers.
545
544
  *
546
545
  * @package @bootspring/mcp
547
546
  */
547
+ type SprintEvidenceKind = 'review' | 'qa' | 'security' | 'release' | 'learning';
548
+ interface SprintArtifactResult {
549
+ kind: string;
550
+ path: string;
551
+ action: 'wrote' | 'appended';
552
+ }
553
+ interface SprintArtifactHistoryItem {
554
+ id: string;
555
+ kind: 'plan' | 'note';
556
+ label: string;
557
+ path: string;
558
+ updatedAt: string;
559
+ detail: string;
560
+ }
561
+ interface SprintArtifactDetail {
562
+ item: SprintArtifactHistoryItem;
563
+ content: string;
564
+ format: 'json' | 'markdown' | 'text';
565
+ size: number;
566
+ truncated: boolean;
567
+ }
568
+ declare const SPRINT_EVIDENCE_KINDS: SprintEvidenceKind[];
569
+ declare function sprintDir(projectRoot?: string): string;
570
+ declare function ensureSprintDir(projectRoot?: string): string;
571
+ declare function appendSprintEvidenceNote(kind: SprintEvidenceKind, note: string, projectRoot?: string): SprintArtifactResult;
572
+ declare function listSprintArtifacts(projectRoot?: string, limit?: number): SprintArtifactHistoryItem[];
573
+ declare function readSprintArtifactDetail(artifactPath: string, projectRoot?: string, maxBytes?: number): SprintArtifactDetail | null;
548
574
 
549
575
  declare const SPRINT_TOOLS: ToolDefinition[];
550
576
  declare function registerSprintTools(): void;
551
577
 
552
- export { ASSISTANT_PARITY_TOOLS, AUDIT_TOOLS, AUTOPILOT_TOOLS, type AgentData, type AssistResponseData, BRAIN_TOOLS, type BuildCapabilitiesOptions, COMPLIANCE_TOOLS, type CapabilitiesDeps, type ContextValidationResult, DOCS_INTELLIGENCE_TOOLS, type FilteredWorkflows, type ListOptions, MARKETPLACE_TOOLS, type MCPServerOptions, type MCPToolResultWithMeta, METRICS_TOOLS, NOTIFICATION_TOOLS, OBSERVER_TOOLS, ONBOARDING_TOOLS, type OrchestratorStatus, type PRDData, type PolicyProfile, type ProgressInfo, type ProjectContextDisplay, QUALITY_INTELLIGENCE_TOOLS, type QualityGateResults, RBAC_TOOLS, RELEASE_TOOLS, type RegistryExports, SPRINT_TOOLS, SWARM_TOOLS, SYNC_TOOLS, type SkillData, type SuccessOptions, type TodoItem, type ValidationResult, type WorkflowAccessContext, agentDetails, assistResponse, buildCapabilities, buildDefaultCapabilities, clearCache, contextSummary, contextValidation, createServer, error, generateProgressBar, getCompatibilityRegistryCandidatePaths, getLegacyRegistryCandidatePaths, getRegistryExports, getResourceHandlers, getResources, getToolHandlers, getTools, invokeTool, isRegistryPopulated, list, loadToolsFromDirectory, loopStatus, main, orchestratorStatus, qualityResults, registerAssistantParityTools, registerAuditTools, registerAutopilotTools, registerBrainTools, registerComplianceTools, registerDocsIntelligenceTools, registerMarketplaceTools, registerMetricsTools, registerNotificationTools, registerObserverTools, registerOnboardingTools, registerQualityIntelligenceTools, registerRbacTools, registerReleaseTools, registerResource, registerSprintTools, registerSwarmTools, registerSyncTools, registerTool, resolveCompatibilityRegistry, resolveRuntimeRegistry, skillDetails, startStdioServer, success, todoList, trackTelemetry, validateDependencies, warning };
578
+ export { ASSISTANT_PARITY_TOOLS, AUDIT_TOOLS, AUTOPILOT_TOOLS, type AgentData, type AssistResponseData, BRAIN_TOOLS, type BuildCapabilitiesOptions, COMPLIANCE_TOOLS, type CapabilitiesDeps, type ContextValidationResult, DOCS_INTELLIGENCE_TOOLS, type FilteredWorkflows, type ListOptions, MARKETPLACE_TOOLS, type MCPServerOptions, type MCPToolResultWithMeta, METRICS_TOOLS, NOTIFICATION_TOOLS, OBSERVER_TOOLS, ONBOARDING_TOOLS, type OrchestratorStatus, type PRDData, type PolicyProfile, type ProgressInfo, type ProjectContextDisplay, QUALITY_INTELLIGENCE_TOOLS, type QualityGateResults, RBAC_TOOLS, RELEASE_TOOLS, type RegistryExports, SPRINT_EVIDENCE_KINDS, SPRINT_TOOLS, SWARM_TOOLS, SYNC_TOOLS, type SkillData, type SprintArtifactDetail, type SprintArtifactHistoryItem, type SprintArtifactResult, type SprintEvidenceKind, type SuccessOptions, type TodoItem, type ValidationResult, type WorkflowAccessContext, agentDetails, appendSprintEvidenceNote, assistResponse, buildCapabilities, buildDefaultCapabilities, clearCache, contextSummary, contextValidation, createServer, ensureSprintDir, error, generateProgressBar, getCompatibilityRegistryCandidatePaths, getLegacyRegistryCandidatePaths, getRegistryExports, getResourceHandlers, getResources, getToolHandlers, getTools, invokeTool, isRegistryPopulated, list, listSprintArtifacts, loadToolsFromDirectory, loopStatus, main, orchestratorStatus, qualityResults, readSprintArtifactDetail, registerAssistantParityTools, registerAuditTools, registerAutopilotTools, registerBrainTools, registerComplianceTools, registerDocsIntelligenceTools, registerMarketplaceTools, registerMetricsTools, registerNotificationTools, registerObserverTools, registerOnboardingTools, registerQualityIntelligenceTools, registerRbacTools, registerReleaseTools, registerResource, registerSprintTools, registerSwarmTools, registerSyncTools, registerTool, resolveCompatibilityRegistry, resolveRuntimeRegistry, skillDetails, sprintDir, startStdioServer, success, todoList, trackTelemetry, validateDependencies, warning };