@girardmedia/bootspring 3.2.0 → 3.3.1
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/cli/index.js +13872 -9865
- package/dist/core/index.d.ts +1 -1
- package/dist/core.js +3 -3
- package/dist/mcp/index.d.ts +11 -1
- package/dist/mcp-server.js +52860 -712
- package/package.json +1 -1
package/dist/core/index.d.ts
CHANGED
|
@@ -477,7 +477,7 @@ interface InstallContext {
|
|
|
477
477
|
scriptPath: string;
|
|
478
478
|
}
|
|
479
479
|
declare const PACKAGE_NAME = "@girardmedia/bootspring";
|
|
480
|
-
declare const CURRENT_VERSION = "3.
|
|
480
|
+
declare const CURRENT_VERSION = "3.3.1";
|
|
481
481
|
declare const DEFAULT_INTERVAL_MS: number;
|
|
482
482
|
declare const STATE_PATH: string;
|
|
483
483
|
declare function compareVersions(a: string, b: string): number;
|
package/dist/core.js
CHANGED
|
@@ -379,7 +379,7 @@ var init_release = __esm({
|
|
|
379
379
|
"../../packages/shared/src/release.ts"() {
|
|
380
380
|
"use strict";
|
|
381
381
|
init_cjs_shims();
|
|
382
|
-
BOOTSPRING_VERSION = "3.
|
|
382
|
+
BOOTSPRING_VERSION = "3.3.1";
|
|
383
383
|
BOOTSPRING_PACKAGE_NAME = "@girardmedia/bootspring";
|
|
384
384
|
}
|
|
385
385
|
});
|
|
@@ -21643,7 +21643,7 @@ ${COLORS2.dim}Run "bootspring mcp" for server options${COLORS2.reset}
|
|
|
21643
21643
|
console.log(`${COLORS2.dim}Run "bootspring mcp" for setup instructions.${COLORS2.reset}
|
|
21644
21644
|
`);
|
|
21645
21645
|
}
|
|
21646
|
-
var BOOTSPRING_VERSION2 = "3.
|
|
21646
|
+
var BOOTSPRING_VERSION2 = "3.3.1";
|
|
21647
21647
|
var BOOTSPRING_PACKAGE_NAME2 = "@girardmedia/bootspring";
|
|
21648
21648
|
var REDACTED2 = "[REDACTED]";
|
|
21649
21649
|
var SENSITIVE_KEY_PATTERN2 = /(?:^|[_-])(api[_-]?key|token|refresh[_-]?token|authorization|x[_-]?api[_-]?key|project[_-]?id)$/i;
|
|
@@ -21691,7 +21691,7 @@ var require_package = __commonJS({
|
|
|
21691
21691
|
"../../../package.json"(exports2, module2) {
|
|
21692
21692
|
module2.exports = {
|
|
21693
21693
|
name: "bootspring-workspace",
|
|
21694
|
-
version: "3.
|
|
21694
|
+
version: "3.3.1",
|
|
21695
21695
|
private: true,
|
|
21696
21696
|
description: "Workspace tooling for the Bootspring monorepo",
|
|
21697
21697
|
keywords: [
|
package/dist/mcp/index.d.ts
CHANGED
|
@@ -539,4 +539,14 @@ declare function registerBrainTools(): void;
|
|
|
539
539
|
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.
|
|
545
|
+
*
|
|
546
|
+
* @package @bootspring/mcp
|
|
547
|
+
*/
|
|
548
|
+
|
|
549
|
+
declare const SPRINT_TOOLS: ToolDefinition[];
|
|
550
|
+
declare function registerSprintTools(): void;
|
|
551
|
+
|
|
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 };
|