@girardmedia/bootspring 2.5.5 → 2.5.7
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 +17137 -5422
- package/dist/cli-launcher.js +43 -11
- package/dist/core/index.d.ts +153 -172
- package/dist/core.js +3735 -3463
- package/dist/mcp/index.d.ts +168 -1
- package/dist/mcp-server.js +1448 -1157
- package/package.json +1 -1
- package/scripts/postinstall.cjs +127 -2
package/dist/mcp/index.d.ts
CHANGED
|
@@ -42,6 +42,10 @@ interface ResolveRuntimeRegistryOptions {
|
|
|
42
42
|
}
|
|
43
43
|
declare function createServer(options: MCPServerOptions): Promise<Server>;
|
|
44
44
|
declare function isRegistryPopulated(registry: RegistryExports): boolean;
|
|
45
|
+
/**
|
|
46
|
+
* @deprecated Legacy path resolution for pre-monorepo MCP installations.
|
|
47
|
+
* Will be removed in v5.0. Use getRegistryExports() from @bootspring/mcp/registry instead.
|
|
48
|
+
*/
|
|
45
49
|
declare function getLegacyRegistryCandidatePaths(basePath?: string): string[];
|
|
46
50
|
declare function resolveRuntimeRegistry(options?: ResolveRuntimeRegistryOptions): Promise<RegistryExports | null>;
|
|
47
51
|
declare function startStdioServer(options: MCPServerOptions): Promise<void>;
|
|
@@ -354,4 +358,167 @@ declare function buildCapabilities(deps: CapabilitiesDeps, options?: BuildCapabi
|
|
|
354
358
|
*/
|
|
355
359
|
declare function buildDefaultCapabilities(): CapabilitiesManifest;
|
|
356
360
|
|
|
357
|
-
|
|
361
|
+
/**
|
|
362
|
+
* MCP Tools — Docs Intelligence
|
|
363
|
+
* 5 tools for AI-powered documentation generation, updates, drift detection,
|
|
364
|
+
* quality improvement, and status checking.
|
|
365
|
+
*
|
|
366
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
367
|
+
* @package @bootspring/mcp
|
|
368
|
+
*/
|
|
369
|
+
|
|
370
|
+
declare function registerDocsIntelligenceTools(): void;
|
|
371
|
+
declare const DOCS_INTELLIGENCE_TOOLS: {
|
|
372
|
+
definition: ToolDefinition;
|
|
373
|
+
handler: ToolHandler;
|
|
374
|
+
}[];
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* MCP Tools — Quality Intelligence
|
|
378
|
+
* 3 tools for multi-agent quality analysis, history, and trend.
|
|
379
|
+
*
|
|
380
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
381
|
+
* @package @bootspring/mcp
|
|
382
|
+
*/
|
|
383
|
+
|
|
384
|
+
declare function registerQualityIntelligenceTools(): void;
|
|
385
|
+
declare const QUALITY_INTELLIGENCE_TOOLS: {
|
|
386
|
+
definition: ToolDefinition;
|
|
387
|
+
handler: ToolHandler;
|
|
388
|
+
}[];
|
|
389
|
+
|
|
390
|
+
/**
|
|
391
|
+
* MCP Tools — Assistant Parity Matrix
|
|
392
|
+
* 3 tools for assistant detection, listing, and parity checking.
|
|
393
|
+
*
|
|
394
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
395
|
+
* @package @bootspring/mcp
|
|
396
|
+
*/
|
|
397
|
+
|
|
398
|
+
declare function registerAssistantParityTools(): void;
|
|
399
|
+
declare const ASSISTANT_PARITY_TOOLS: {
|
|
400
|
+
definition: ToolDefinition;
|
|
401
|
+
handler: ToolHandler;
|
|
402
|
+
}[];
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* MCP Tools — RBAC Management
|
|
406
|
+
* 4 tools for project member management and audit access.
|
|
407
|
+
*
|
|
408
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
409
|
+
* @package @bootspring/mcp
|
|
410
|
+
*/
|
|
411
|
+
|
|
412
|
+
declare const RBAC_TOOLS: ToolDefinition[];
|
|
413
|
+
declare function registerRbacTools(): void;
|
|
414
|
+
|
|
415
|
+
/**
|
|
416
|
+
* MCP Tools — Metrics & Telemetry
|
|
417
|
+
* 3 tools for KPIs, telemetry events, and experiment management.
|
|
418
|
+
*
|
|
419
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
420
|
+
* @package @bootspring/mcp
|
|
421
|
+
*/
|
|
422
|
+
|
|
423
|
+
declare const METRICS_TOOLS: ToolDefinition[];
|
|
424
|
+
declare function registerMetricsTools(): void;
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* MCP Tools — Audit Quality Gates
|
|
428
|
+
* 4 tools for audit scanning, gate evaluation, findings, and regression.
|
|
429
|
+
*
|
|
430
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
431
|
+
* @package @bootspring/mcp
|
|
432
|
+
*/
|
|
433
|
+
|
|
434
|
+
declare const AUDIT_TOOLS: ToolDefinition[];
|
|
435
|
+
declare function registerAuditTools(): void;
|
|
436
|
+
|
|
437
|
+
/**
|
|
438
|
+
* MCP Tools — Release Engineering
|
|
439
|
+
* 4 tools for release gates, prepare, history, and rollback.
|
|
440
|
+
*
|
|
441
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
442
|
+
* @package @bootspring/mcp
|
|
443
|
+
*/
|
|
444
|
+
|
|
445
|
+
declare const RELEASE_TOOLS: ToolDefinition[];
|
|
446
|
+
declare function registerReleaseTools(): void;
|
|
447
|
+
|
|
448
|
+
/**
|
|
449
|
+
* MCP Tools — Context Sync & Document Integrity
|
|
450
|
+
* 4 tools for document tracking, integrity checks, sync operations, and conflict resolution.
|
|
451
|
+
*
|
|
452
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
453
|
+
* @package @bootspring/mcp
|
|
454
|
+
*/
|
|
455
|
+
|
|
456
|
+
declare const SYNC_TOOLS: ToolDefinition[];
|
|
457
|
+
declare function registerSyncTools(): void;
|
|
458
|
+
|
|
459
|
+
/**
|
|
460
|
+
* MCP Tools — Documentation Experience & Onboarding
|
|
461
|
+
* 4 tools for checklists, progress, guides, and onboarding stats.
|
|
462
|
+
*
|
|
463
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
464
|
+
* @package @bootspring/mcp
|
|
465
|
+
*/
|
|
466
|
+
|
|
467
|
+
declare const ONBOARDING_TOOLS: ToolDefinition[];
|
|
468
|
+
declare function registerOnboardingTools(): void;
|
|
469
|
+
|
|
470
|
+
/**
|
|
471
|
+
* MCP Tools — Marketplace & Partner Integration
|
|
472
|
+
* 4 tools for browsing integrations, managing installs, webhooks, and stats.
|
|
473
|
+
*
|
|
474
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
475
|
+
* @package @bootspring/mcp
|
|
476
|
+
*/
|
|
477
|
+
|
|
478
|
+
declare const MARKETPLACE_TOOLS: ToolDefinition[];
|
|
479
|
+
declare function registerMarketplaceTools(): void;
|
|
480
|
+
|
|
481
|
+
/**
|
|
482
|
+
* MCP Tools — Enterprise Compliance & Governance
|
|
483
|
+
* 4 tools for controls, risks, actions, and compliance stats.
|
|
484
|
+
*
|
|
485
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
486
|
+
* @package @bootspring/mcp
|
|
487
|
+
*/
|
|
488
|
+
|
|
489
|
+
declare const COMPLIANCE_TOOLS: ToolDefinition[];
|
|
490
|
+
declare function registerComplianceTools(): void;
|
|
491
|
+
|
|
492
|
+
/**
|
|
493
|
+
* MCP Tools — Notification & Event System
|
|
494
|
+
* 4 tools for events, notifications, subscriptions, and stats.
|
|
495
|
+
*
|
|
496
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
497
|
+
* @package @bootspring/mcp
|
|
498
|
+
*/
|
|
499
|
+
|
|
500
|
+
declare const NOTIFICATION_TOOLS: ToolDefinition[];
|
|
501
|
+
declare function registerNotificationTools(): void;
|
|
502
|
+
|
|
503
|
+
/**
|
|
504
|
+
* MCP Tools — Observer Intelligence Layer
|
|
505
|
+
* 10 tools for session metrics, cost tracking, intelligence analysis,
|
|
506
|
+
* pattern detection, alerts, trends, comparison, and optimization.
|
|
507
|
+
*
|
|
508
|
+
* All tools call the server API — no IP in the MCP layer.
|
|
509
|
+
* @package @bootspring/mcp
|
|
510
|
+
*/
|
|
511
|
+
|
|
512
|
+
declare const OBSERVER_TOOLS: ToolDefinition[];
|
|
513
|
+
declare function registerObserverTools(): void;
|
|
514
|
+
|
|
515
|
+
/**
|
|
516
|
+
* @bootspring/mcp — Autopilot MCP Tools
|
|
517
|
+
* 4 tools: autopilot-status, autopilot-config, autopilot-suggestions, autopilot-learning
|
|
518
|
+
* @package @bootspring/mcp
|
|
519
|
+
*/
|
|
520
|
+
|
|
521
|
+
declare const AUTOPILOT_TOOLS: ToolDefinition[];
|
|
522
|
+
declare function registerAutopilotTools(): void;
|
|
523
|
+
|
|
524
|
+
export { ASSISTANT_PARITY_TOOLS, AUDIT_TOOLS, AUTOPILOT_TOOLS, type AgentData, type AssistResponseData, 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, 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, registerComplianceTools, registerDocsIntelligenceTools, registerMarketplaceTools, registerMetricsTools, registerNotificationTools, registerObserverTools, registerOnboardingTools, registerQualityIntelligenceTools, registerRbacTools, registerReleaseTools, registerResource, registerSyncTools, registerTool, resolveCompatibilityRegistry, resolveRuntimeRegistry, skillDetails, startStdioServer, success, todoList, trackTelemetry, validateDependencies, warning };
|