musubi-sdd 3.0.1 → 3.5.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/bin/musubi-change.js +623 -10
- package/bin/musubi-orchestrate.js +456 -0
- package/bin/musubi-trace.js +393 -0
- package/package.json +3 -2
- package/src/analyzers/impact-analyzer.js +682 -0
- package/src/integrations/cicd.js +782 -0
- package/src/integrations/documentation.js +740 -0
- package/src/integrations/examples.js +789 -0
- package/src/integrations/index.js +23 -0
- package/src/integrations/platforms.js +929 -0
- package/src/managers/delta-spec.js +484 -0
- package/src/monitoring/incident-manager.js +890 -0
- package/src/monitoring/index.js +633 -0
- package/src/monitoring/observability.js +938 -0
- package/src/monitoring/release-manager.js +622 -0
- package/src/orchestration/index.js +168 -0
- package/src/orchestration/orchestration-engine.js +409 -0
- package/src/orchestration/pattern-registry.js +319 -0
- package/src/orchestration/patterns/auto.js +386 -0
- package/src/orchestration/patterns/group-chat.js +395 -0
- package/src/orchestration/patterns/human-in-loop.js +506 -0
- package/src/orchestration/patterns/nested.js +322 -0
- package/src/orchestration/patterns/sequential.js +278 -0
- package/src/orchestration/patterns/swarm.js +395 -0
- package/src/orchestration/workflow-orchestrator.js +738 -0
- package/src/reporters/coverage-report.js +452 -0
- package/src/reporters/traceability-matrix-report.js +684 -0
- package/src/steering/advanced-validation.js +812 -0
- package/src/steering/auto-updater.js +670 -0
- package/src/steering/index.js +119 -0
- package/src/steering/quality-metrics.js +650 -0
- package/src/steering/template-constraints.js +789 -0
- package/src/templates/agents/claude-code/skills/agent-assistant/SKILL.md +22 -0
- package/src/templates/agents/claude-code/skills/issue-resolver/SKILL.md +21 -0
- package/src/templates/agents/claude-code/skills/orchestrator/SKILL.md +90 -28
- package/src/templates/agents/claude-code/skills/project-manager/SKILL.md +32 -0
- package/src/templates/agents/claude-code/skills/site-reliability-engineer/SKILL.md +27 -0
- package/src/templates/agents/claude-code/skills/steering/SKILL.md +30 -0
- package/src/templates/agents/claude-code/skills/test-engineer/SKILL.md +21 -0
- package/src/templates/agents/claude-code/skills/ui-ux-designer/SKILL.md +27 -0
- package/src/templates/agents/codex/AGENTS.md +36 -1
- package/src/templates/agents/cursor/AGENTS.md +36 -1
- package/src/templates/agents/gemini-cli/GEMINI.md +36 -1
- package/src/templates/agents/github-copilot/AGENTS.md +65 -1
- package/src/templates/agents/qwen-code/QWEN.md +36 -1
- package/src/templates/agents/windsurf/AGENTS.md +36 -1
- package/src/templates/shared/delta-spec-template.md +246 -0
- package/src/validators/delta-format.js +474 -0
- package/src/validators/traceability-validator.js +561 -0
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Steering Module - Main Entry Point
|
|
3
|
+
*
|
|
4
|
+
* Provides comprehensive steering file management:
|
|
5
|
+
* - Auto-Update: Automatic steering file updates
|
|
6
|
+
* - Template Constraints: LLM-constraining syntax
|
|
7
|
+
* - Quality Metrics: Dashboard and analytics
|
|
8
|
+
* - Advanced Validation: Cross-artifact consistency
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
// Auto-Update Module
|
|
12
|
+
const {
|
|
13
|
+
ChangeDetector,
|
|
14
|
+
SteeringUpdater,
|
|
15
|
+
ProjectYmlSync,
|
|
16
|
+
CustomSteeringRules,
|
|
17
|
+
SteeringAutoUpdater,
|
|
18
|
+
SteeringFileType,
|
|
19
|
+
UpdateTrigger,
|
|
20
|
+
createSteeringAutoUpdater
|
|
21
|
+
} = require('./auto-updater');
|
|
22
|
+
|
|
23
|
+
// Template Constraints Module
|
|
24
|
+
const {
|
|
25
|
+
Constraint,
|
|
26
|
+
ChecklistItem,
|
|
27
|
+
Checklist,
|
|
28
|
+
UncertaintyParser,
|
|
29
|
+
TemplateSection,
|
|
30
|
+
TemplateDefinition,
|
|
31
|
+
TemplateConstraintEngine,
|
|
32
|
+
ConstraintType,
|
|
33
|
+
UncertaintyMarker,
|
|
34
|
+
Severity: ConstraintSeverity,
|
|
35
|
+
createTemplateConstraintEngine
|
|
36
|
+
} = require('./template-constraints');
|
|
37
|
+
|
|
38
|
+
// Quality Metrics Module
|
|
39
|
+
const {
|
|
40
|
+
Metric,
|
|
41
|
+
CoverageMetric,
|
|
42
|
+
ComplianceMetric,
|
|
43
|
+
HealthIndicator,
|
|
44
|
+
TrendAnalyzer,
|
|
45
|
+
QualityScoreCalculator,
|
|
46
|
+
QualityMetricsDashboard,
|
|
47
|
+
MetricCategory,
|
|
48
|
+
HealthStatus,
|
|
49
|
+
TrendDirection,
|
|
50
|
+
createQualityDashboard
|
|
51
|
+
} = require('./quality-metrics');
|
|
52
|
+
|
|
53
|
+
// Advanced Validation Module
|
|
54
|
+
const {
|
|
55
|
+
ValidationIssue,
|
|
56
|
+
ArtifactReference,
|
|
57
|
+
ConsistencyChecker,
|
|
58
|
+
GapDetector,
|
|
59
|
+
CompletenessChecker,
|
|
60
|
+
DependencyValidator,
|
|
61
|
+
ReferenceValidator,
|
|
62
|
+
AdvancedValidator,
|
|
63
|
+
ValidationType,
|
|
64
|
+
Severity: ValidationSeverity,
|
|
65
|
+
ArtifactType,
|
|
66
|
+
createAdvancedValidator
|
|
67
|
+
} = require('./advanced-validation');
|
|
68
|
+
|
|
69
|
+
module.exports = {
|
|
70
|
+
// Auto-Update
|
|
71
|
+
ChangeDetector,
|
|
72
|
+
SteeringUpdater,
|
|
73
|
+
ProjectYmlSync,
|
|
74
|
+
CustomSteeringRules,
|
|
75
|
+
SteeringAutoUpdater,
|
|
76
|
+
SteeringFileType,
|
|
77
|
+
UpdateTrigger,
|
|
78
|
+
createSteeringAutoUpdater,
|
|
79
|
+
|
|
80
|
+
// Template Constraints
|
|
81
|
+
Constraint,
|
|
82
|
+
ChecklistItem,
|
|
83
|
+
Checklist,
|
|
84
|
+
UncertaintyParser,
|
|
85
|
+
TemplateSection,
|
|
86
|
+
TemplateDefinition,
|
|
87
|
+
TemplateConstraintEngine,
|
|
88
|
+
ConstraintType,
|
|
89
|
+
UncertaintyMarker,
|
|
90
|
+
ConstraintSeverity,
|
|
91
|
+
createTemplateConstraintEngine,
|
|
92
|
+
|
|
93
|
+
// Quality Metrics
|
|
94
|
+
Metric,
|
|
95
|
+
CoverageMetric,
|
|
96
|
+
ComplianceMetric,
|
|
97
|
+
HealthIndicator,
|
|
98
|
+
TrendAnalyzer,
|
|
99
|
+
QualityScoreCalculator,
|
|
100
|
+
QualityMetricsDashboard,
|
|
101
|
+
MetricCategory,
|
|
102
|
+
HealthStatus,
|
|
103
|
+
TrendDirection,
|
|
104
|
+
createQualityDashboard,
|
|
105
|
+
|
|
106
|
+
// Advanced Validation
|
|
107
|
+
ValidationIssue,
|
|
108
|
+
ArtifactReference,
|
|
109
|
+
ConsistencyChecker,
|
|
110
|
+
GapDetector,
|
|
111
|
+
CompletenessChecker,
|
|
112
|
+
DependencyValidator,
|
|
113
|
+
ReferenceValidator,
|
|
114
|
+
AdvancedValidator,
|
|
115
|
+
ValidationType,
|
|
116
|
+
ValidationSeverity,
|
|
117
|
+
ArtifactType,
|
|
118
|
+
createAdvancedValidator
|
|
119
|
+
};
|