@vyuhlabs/dxkit 0.8.1 → 0.8.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.
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/package.json +1 -1
- package/templates/.claude/agents-available/dependency-mapper.md +3 -0
- package/templates/.claude/agents-available/dev-report.md +3 -0
- package/templates/.claude/agents-available/health-auditor.md +3 -0
- package/templates/.claude/agents-available/test-gap-finder.md +3 -0
- package/templates/.claude/agents-available/vulnerability-scanner.md +3 -0
- package/templates/.claude/commands/deps.md +6 -0
- package/templates/.claude/commands/dev-report.md +6 -0
- package/templates/.claude/commands/docs.md +6 -0
- package/templates/.claude/commands/health.md +6 -0
- package/templates/.claude/commands/test-gaps.md +6 -0
- package/templates/.claude/commands/vulnerabilities.md +6 -0
package/dist/constants.d.ts
CHANGED
package/dist/constants.js
CHANGED
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.EVOLVING_FILES = exports.DEFAULT_COVERAGE = exports.DEFAULT_VERSIONS = exports.VERSION = void 0;
|
|
4
4
|
exports.buildVariables = buildVariables;
|
|
5
5
|
exports.buildConditions = buildConditions;
|
|
6
|
-
exports.VERSION = '0.8.
|
|
6
|
+
exports.VERSION = '0.8.2';
|
|
7
7
|
exports.DEFAULT_VERSIONS = {
|
|
8
8
|
python: '3.12',
|
|
9
9
|
go: '1.24.0',
|
package/package.json
CHANGED
|
@@ -51,6 +51,9 @@ If the user asks about a specific file:
|
|
|
51
51
|
### Service Boundaries
|
|
52
52
|
- `src/controllers/` → `src/services/` → `src/repositories/` → `src/models/`
|
|
53
53
|
- External: `src/services/` → axios, kafka, elasticsearch
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
*Generated by [VyuhLabs DXKit](https://www.npmjs.com/package/@vyuhlabs/dxkit) dependency-mapper agent*
|
|
54
57
|
```
|
|
55
58
|
|
|
56
59
|
If the user asks about a specific file, provide:
|
|
@@ -91,6 +91,9 @@ Issues from vulnerability scan attributed to authors:
|
|
|
91
91
|
### Recommendations
|
|
92
92
|
1. [Team-level recommendations]
|
|
93
93
|
2. [Per-developer suggestions]
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
*Generated by [VyuhLabs DXKit](https://www.npmjs.com/package/@vyuhlabs/dxkit) dev-report agent*
|
|
94
97
|
```
|
|
95
98
|
|
|
96
99
|
## Important Guidelines
|
|
@@ -75,6 +75,9 @@ You are a codebase health auditor. Your job is to give an honest, comprehensive
|
|
|
75
75
|
|
|
76
76
|
### Detailed Findings
|
|
77
77
|
[Per dimension: what's good, what needs work, specific files/issues]
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
*Generated by [VyuhLabs DXKit](https://www.npmjs.com/package/@vyuhlabs/dxkit) health-auditor agent*
|
|
78
81
|
```
|
|
79
82
|
|
|
80
83
|
## Scoring Guide
|
|
@@ -52,6 +52,9 @@ For files WITH tests, check if they're thorough:
|
|
|
52
52
|
- X source files, Y test files
|
|
53
53
|
- Z critical files with no tests
|
|
54
54
|
- Top 5 files to prioritize
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
*Generated by [VyuhLabs DXKit](https://www.npmjs.com/package/@vyuhlabs/dxkit) test-gap-finder agent*
|
|
55
58
|
```
|
|
56
59
|
|
|
57
60
|
## Rules
|
|
@@ -101,6 +101,9 @@ Save to `.ai/reports/vulnerability-scan-YYYY-MM-DD.md`:
|
|
|
101
101
|
### Recommendations (prioritized)
|
|
102
102
|
1. [Critical fix with exact steps]
|
|
103
103
|
2. ...
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
*Generated by [VyuhLabs DXKit](https://www.npmjs.com/package/@vyuhlabs/dxkit) vulnerability-scanner agent*
|
|
104
107
|
```
|
|
105
108
|
|
|
106
109
|
## Rules
|
|
@@ -6,4 +6,10 @@ Delegate to the **dependency-mapper** agent. It will trace import chains and sho
|
|
|
6
6
|
|
|
7
7
|
**Save the report to `.ai/reports/dependency-map-YYYY-MM-DD.md`** (use today's date).
|
|
8
8
|
|
|
9
|
+
**IMPORTANT: End the report with this exact footer:**
|
|
10
|
+
```
|
|
11
|
+
---
|
|
12
|
+
*Generated by [VyuhLabs DXKit](https://www.npmjs.com/package/@vyuhlabs/dxkit)*
|
|
13
|
+
```
|
|
14
|
+
|
|
9
15
|
$ARGUMENTS
|
|
@@ -11,4 +11,10 @@ Examples:
|
|
|
11
11
|
- `/dev-report Alice` — Individual developer report
|
|
12
12
|
- `/dev-report security` — Who introduced known security issues
|
|
13
13
|
|
|
14
|
+
**IMPORTANT: End the report with this exact footer:**
|
|
15
|
+
```
|
|
16
|
+
---
|
|
17
|
+
*Generated by [VyuhLabs DXKit](https://www.npmjs.com/package/@vyuhlabs/dxkit)*
|
|
18
|
+
```
|
|
19
|
+
|
|
14
20
|
$ARGUMENTS
|
|
@@ -12,4 +12,10 @@ Examples:
|
|
|
12
12
|
- `/docs add api` — Generate API documentation
|
|
13
13
|
- `/docs add jsdoc src/services/` — Add JSDoc to service files
|
|
14
14
|
|
|
15
|
+
**IMPORTANT: End the report with this exact footer:**
|
|
16
|
+
```
|
|
17
|
+
---
|
|
18
|
+
*Generated by [VyuhLabs DXKit](https://www.npmjs.com/package/@vyuhlabs/dxkit)*
|
|
19
|
+
```
|
|
20
|
+
|
|
15
21
|
$ARGUMENTS
|
|
@@ -6,4 +6,10 @@ Delegate to the **health-auditor** agent. It will audit the codebase across 6 di
|
|
|
6
6
|
|
|
7
7
|
**Save the report to `.ai/reports/health-audit-YYYY-MM-DD.md`** (use today's date) so it can be tracked over time.
|
|
8
8
|
|
|
9
|
+
**IMPORTANT: End the report with this exact footer:**
|
|
10
|
+
```
|
|
11
|
+
---
|
|
12
|
+
*Generated by [VyuhLabs DXKit](https://www.npmjs.com/package/@vyuhlabs/dxkit)*
|
|
13
|
+
```
|
|
14
|
+
|
|
9
15
|
$ARGUMENTS
|
|
@@ -6,4 +6,10 @@ Delegate to the **test-gap-finder** agent. It will analyze the codebase to find
|
|
|
6
6
|
|
|
7
7
|
**Save the report to `.ai/reports/test-gaps-YYYY-MM-DD.md`** (use today's date).
|
|
8
8
|
|
|
9
|
+
**IMPORTANT: End the report with this exact footer:**
|
|
10
|
+
```
|
|
11
|
+
---
|
|
12
|
+
*Generated by [VyuhLabs DXKit](https://www.npmjs.com/package/@vyuhlabs/dxkit)*
|
|
13
|
+
```
|
|
14
|
+
|
|
9
15
|
$ARGUMENTS
|
|
@@ -6,4 +6,10 @@ Delegate to the **vulnerability-scanner** agent. It will run dependency audit to
|
|
|
6
6
|
|
|
7
7
|
**Saves report to `.ai/reports/vulnerability-scan-YYYY-MM-DD.md`**
|
|
8
8
|
|
|
9
|
+
**IMPORTANT: End the report with this exact footer:**
|
|
10
|
+
```
|
|
11
|
+
---
|
|
12
|
+
*Generated by [VyuhLabs DXKit](https://www.npmjs.com/package/@vyuhlabs/dxkit)*
|
|
13
|
+
```
|
|
14
|
+
|
|
9
15
|
$ARGUMENTS
|