musubi-sdd 5.0.0 → 5.1.0
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/package.json +1 -1
- package/src/analyzers/ast-extractor.js +8 -1
- package/src/analyzers/context-optimizer.js +8 -1
- package/src/analyzers/repository-map.js +8 -1
- package/src/monitoring/cost-tracker.js +7 -0
- package/src/monitoring/incident-manager.js +10 -0
- package/src/monitoring/observability.js +10 -0
- package/src/monitoring/quality-dashboard.js +8 -0
- package/src/monitoring/release-manager.js +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "musubi-sdd",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "Ultimate Specification Driven Development Tool with 27 Agents for 7 AI Coding Platforms + MCP Integration (Claude Code, GitHub Copilot, Cursor, Gemini CLI, Windsurf, Codex, Qwen Code)",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -4,8 +4,15 @@
|
|
|
4
4
|
* Extracts Abstract Syntax Tree information from source code files.
|
|
5
5
|
* Provides structured analysis of code structure, symbols, and relationships.
|
|
6
6
|
*
|
|
7
|
-
* Part of MUSUBI
|
|
7
|
+
* Part of MUSUBI v5.0.0 - Codebase Intelligence
|
|
8
|
+
*
|
|
9
|
+
* @module analyzers/ast-extractor
|
|
8
10
|
* @version 1.0.0
|
|
11
|
+
*
|
|
12
|
+
* @traceability
|
|
13
|
+
* - Requirement: REQ-P4-002 (AST Extraction and Analysis)
|
|
14
|
+
* - Design: docs/design/tdd-musubi-v5.0.0.md#2.2
|
|
15
|
+
* - Test: tests/analyzers/ast-extractor.test.js
|
|
9
16
|
*/
|
|
10
17
|
|
|
11
18
|
const fs = require('fs');
|
|
@@ -4,8 +4,15 @@
|
|
|
4
4
|
* Optimizes context for LLM consumption by intelligently selecting
|
|
5
5
|
* and prioritizing relevant code and documentation.
|
|
6
6
|
*
|
|
7
|
-
* Part of MUSUBI
|
|
7
|
+
* Part of MUSUBI v5.0.0 - Codebase Intelligence
|
|
8
|
+
*
|
|
9
|
+
* @module analyzers/context-optimizer
|
|
8
10
|
* @version 1.0.0
|
|
11
|
+
*
|
|
12
|
+
* @traceability
|
|
13
|
+
* - Requirement: REQ-P4-003 (Context Optimization)
|
|
14
|
+
* - Design: docs/design/tdd-musubi-v5.0.0.md#2.3
|
|
15
|
+
* - Test: tests/analyzers/context-optimizer.test.js
|
|
9
16
|
*/
|
|
10
17
|
|
|
11
18
|
const { EventEmitter } = require('events');
|
|
@@ -4,8 +4,15 @@
|
|
|
4
4
|
* Generates a comprehensive map of the repository structure for LLM context.
|
|
5
5
|
* Implements efficient file scanning, caching, and incremental updates.
|
|
6
6
|
*
|
|
7
|
-
* Part of MUSUBI
|
|
7
|
+
* Part of MUSUBI v5.0.0 - Codebase Intelligence
|
|
8
|
+
*
|
|
9
|
+
* @module analyzers/repository-map
|
|
8
10
|
* @version 1.0.0
|
|
11
|
+
*
|
|
12
|
+
* @traceability
|
|
13
|
+
* - Requirement: REQ-P4-001 (Repository Map Generation)
|
|
14
|
+
* - Design: docs/design/tdd-musubi-v5.0.0.md#2.1
|
|
15
|
+
* - Test: tests/analyzers/repository-map.test.js
|
|
9
16
|
*/
|
|
10
17
|
|
|
11
18
|
const fs = require('fs');
|
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
* @module monitoring/cost-tracker
|
|
4
4
|
* @version 1.0.0
|
|
5
5
|
* @description Tracks LLM API usage and costs across providers
|
|
6
|
+
*
|
|
7
|
+
* Part of MUSUBI v5.0.0 - Production Readiness
|
|
8
|
+
*
|
|
9
|
+
* @traceability
|
|
10
|
+
* - Requirement: REQ-P5-005 (Cost Tracking)
|
|
11
|
+
* - Design: docs/design/tdd-musubi-v5.0.0.md#3.5
|
|
12
|
+
* - Test: tests/monitoring/cost-tracker.test.js
|
|
6
13
|
*/
|
|
7
14
|
|
|
8
15
|
'use strict';
|
|
@@ -6,6 +6,16 @@
|
|
|
6
6
|
* - Runbook execution
|
|
7
7
|
* - Post-mortem generation
|
|
8
8
|
* - On-call management
|
|
9
|
+
*
|
|
10
|
+
* Part of MUSUBI v5.0.0 - Production Readiness
|
|
11
|
+
*
|
|
12
|
+
* @module monitoring/incident-manager
|
|
13
|
+
* @version 1.0.0
|
|
14
|
+
*
|
|
15
|
+
* @traceability
|
|
16
|
+
* - Requirement: REQ-P5-002 (Incident Management)
|
|
17
|
+
* - Design: docs/design/tdd-musubi-v5.0.0.md#3.2
|
|
18
|
+
* - Test: tests/monitoring/incident-manager.test.js
|
|
9
19
|
*/
|
|
10
20
|
|
|
11
21
|
const { EventEmitter } = require('events');
|
|
@@ -6,6 +6,16 @@
|
|
|
6
6
|
* - Metrics collection
|
|
7
7
|
* - Distributed tracing
|
|
8
8
|
* - Correlation IDs
|
|
9
|
+
*
|
|
10
|
+
* Part of MUSUBI v5.0.0 - Production Readiness
|
|
11
|
+
*
|
|
12
|
+
* @module monitoring/observability
|
|
13
|
+
* @version 1.0.0
|
|
14
|
+
*
|
|
15
|
+
* @traceability
|
|
16
|
+
* - Requirement: REQ-P5-004 (Observability Integration)
|
|
17
|
+
* - Design: docs/design/tdd-musubi-v5.0.0.md#3.4
|
|
18
|
+
* - Test: tests/monitoring/observability.test.js
|
|
9
19
|
*/
|
|
10
20
|
|
|
11
21
|
const { EventEmitter } = require('events');
|
|
@@ -2,7 +2,15 @@
|
|
|
2
2
|
* Quality Metrics Dashboard
|
|
3
3
|
* カバレッジメトリクス、Constitutional準拠メトリクス、プロジェクトヘルス指標
|
|
4
4
|
*
|
|
5
|
+
* Part of MUSUBI v5.0.0 - Production Readiness
|
|
6
|
+
*
|
|
5
7
|
* @module monitoring/quality-dashboard
|
|
8
|
+
* @version 1.0.0
|
|
9
|
+
*
|
|
10
|
+
* @traceability
|
|
11
|
+
* - Requirement: REQ-P5-001 (Quality Dashboard)
|
|
12
|
+
* - Design: docs/design/tdd-musubi-v5.0.0.md#3.1
|
|
13
|
+
* - Test: tests/monitoring/quality-dashboard.test.js
|
|
6
14
|
*/
|
|
7
15
|
|
|
8
16
|
const EventEmitter = require('events');
|
|
@@ -6,6 +6,16 @@
|
|
|
6
6
|
* - Feature flag management
|
|
7
7
|
* - Rollback procedures
|
|
8
8
|
* - Release notes generation
|
|
9
|
+
*
|
|
10
|
+
* Part of MUSUBI v5.0.0 - Production Readiness
|
|
11
|
+
*
|
|
12
|
+
* @module monitoring/release-manager
|
|
13
|
+
* @version 1.0.0
|
|
14
|
+
*
|
|
15
|
+
* @traceability
|
|
16
|
+
* - Requirement: REQ-P5-003 (Release Automation)
|
|
17
|
+
* - Design: docs/design/tdd-musubi-v5.0.0.md#3.3
|
|
18
|
+
* - Test: tests/monitoring/release-manager.test.js
|
|
9
19
|
*/
|
|
10
20
|
|
|
11
21
|
const { EventEmitter } = require('events');
|