vibe-splain 2.4.1 → 2.6.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.
@@ -41,7 +41,22 @@ export async function handleScanProject(args) {
41
41
  // Watch the real-source files for staleness.
42
42
  startWatcher(projectRoot, result.files.map(f => f.path));
43
43
  console.error(`[vibe-splain] Scan complete. ${result.totalFilesScanned} files, ${result.realSourceCount} real-source, ${result.wildCandidates.length} wild candidates.`);
44
+ const validation = result.validation ?? { passed: true, errors: 0, warnings: 0, reportPath: '.vibe-splainer/validation_report.json' };
44
45
  return {
46
+ ok: true,
47
+ validation: {
48
+ passed: validation.passed,
49
+ errors: validation.errors,
50
+ warnings: validation.warnings,
51
+ reportPath: validation.reportPath,
52
+ },
53
+ artifacts: {
54
+ analysis: '.vibe-splainer/analysis.json',
55
+ deltaTargets: '.vibe-splainer/delta_targets.json',
56
+ dossier: '.vibe-splainer/dossier.json',
57
+ graph: '.vibe-splainer/graph.json',
58
+ html: '.vibe-splainer/ui/index.html',
59
+ },
45
60
  projectRoot: result.projectRoot,
46
61
  totalFilesScanned: result.totalFilesScanned,
47
62
  realSourceCount: result.realSourceCount,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-splain",
3
- "version": "2.4.1",
3
+ "version": "2.6.0",
4
4
  "description": "Architectural dossier engine for vibe-coded TypeScript/JavaScript projects. Runs as an MCP server inside your coding agent.",
5
5
  "type": "module",
6
6
  "license": "MIT",