@su-record/vibe 2.14.0 → 2.14.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/README.en.md +2 -2
- package/README.md +2 -2
- package/dist/cli/detect/matcher.d.ts +15 -0
- package/dist/cli/detect/matcher.d.ts.map +1 -0
- package/dist/cli/detect/matcher.js +278 -0
- package/dist/cli/detect/matcher.js.map +1 -0
- package/dist/cli/detect/signatures.d.ts +76 -0
- package/dist/cli/detect/signatures.d.ts.map +1 -0
- package/dist/cli/detect/signatures.js +175 -0
- package/dist/cli/detect/signatures.js.map +1 -0
- package/dist/cli/detect/workspace.d.ts +7 -0
- package/dist/cli/detect/workspace.d.ts.map +1 -0
- package/dist/cli/detect/workspace.js +112 -0
- package/dist/cli/detect/workspace.js.map +1 -0
- package/dist/cli/detect.characterization.test.d.ts +7 -0
- package/dist/cli/detect.characterization.test.d.ts.map +1 -0
- package/dist/cli/detect.characterization.test.js +294 -0
- package/dist/cli/detect.characterization.test.js.map +1 -0
- package/dist/cli/detect.d.ts.map +1 -1
- package/dist/cli/detect.js +64 -488
- package/dist/cli/detect.js.map +1 -1
- package/dist/cli/setup/ProjectSetup.js +1 -1
- package/dist/cli/setup/ProjectSetup.js.map +1 -1
- package/dist/infra/lib/ui-ux/CsvDataLoader.d.ts +10 -1
- package/dist/infra/lib/ui-ux/CsvDataLoader.d.ts.map +1 -1
- package/dist/infra/lib/ui-ux/CsvDataLoader.js +11 -5
- package/dist/infra/lib/ui-ux/CsvDataLoader.js.map +1 -1
- package/dist/infra/lib/ui-ux/CsvDataLoader.test.js +8 -8
- package/dist/infra/lib/ui-ux/CsvDataLoader.test.js.map +1 -1
- package/dist/infra/lib/ui-ux/SearchService.test.js +1 -1
- package/dist/infra/lib/ui-ux/SearchService.test.js.map +1 -1
- package/hooks/scripts/__tests__/.vibe/command-log.txt +18 -0
- package/hooks/scripts/__tests__/.vibe/memories/memories.db-shm +0 -0
- package/hooks/scripts/__tests__/.vibe/memories/memories.db-wal +0 -0
- package/package.json +3 -2
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Monorepo workspace path discovery.
|
|
3
|
+
* Supports: pnpm-workspace.yaml, package.json workspaces, lerna.json, nx.json, turbo.json.
|
|
4
|
+
*/
|
|
5
|
+
import path from 'path';
|
|
6
|
+
import fs from 'fs';
|
|
7
|
+
// ── helpers ────────────────────────────────────────────────────────────────
|
|
8
|
+
function readText(filePath) {
|
|
9
|
+
try {
|
|
10
|
+
return fs.readFileSync(filePath, 'utf-8');
|
|
11
|
+
}
|
|
12
|
+
catch {
|
|
13
|
+
return '';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
function expandGlobPattern(projectRoot, pattern, out) {
|
|
17
|
+
const clean = pattern.replace(/['"]/g, '').trim();
|
|
18
|
+
if (clean.startsWith('!'))
|
|
19
|
+
return;
|
|
20
|
+
if (!clean.includes('*')) {
|
|
21
|
+
const full = path.join(projectRoot, clean);
|
|
22
|
+
if (fs.existsSync(full) && fs.statSync(full).isDirectory())
|
|
23
|
+
out.add(clean);
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
if (clean.endsWith('/*') || clean.endsWith('/*/')) {
|
|
27
|
+
const baseDir = clean.replace(/\/\*+\/?$/, '');
|
|
28
|
+
const basePath = path.join(projectRoot, baseDir);
|
|
29
|
+
if (!fs.existsSync(basePath) || !fs.statSync(basePath).isDirectory())
|
|
30
|
+
return;
|
|
31
|
+
try {
|
|
32
|
+
for (const entry of fs.readdirSync(basePath)) {
|
|
33
|
+
if (entry.startsWith('.'))
|
|
34
|
+
continue;
|
|
35
|
+
const ep = path.join(basePath, entry);
|
|
36
|
+
if (fs.statSync(ep).isDirectory())
|
|
37
|
+
out.add(`${baseDir}/${entry}`);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
catch { /* ignore */ }
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
function expandPatterns(projectRoot, patterns, out) {
|
|
44
|
+
for (const p of patterns)
|
|
45
|
+
expandGlobPattern(projectRoot, p, out);
|
|
46
|
+
}
|
|
47
|
+
// ── readers ────────────────────────────────────────────────────────────────
|
|
48
|
+
function readPnpmWorkspace(projectRoot, out) {
|
|
49
|
+
const content = readText(path.join(projectRoot, 'pnpm-workspace.yaml'));
|
|
50
|
+
if (!content)
|
|
51
|
+
return;
|
|
52
|
+
const match = content.match(/packages:\s*\n((?:\s*-\s*.+\n?)+)/);
|
|
53
|
+
if (!match)
|
|
54
|
+
return;
|
|
55
|
+
for (const line of match[1].split('\n')) {
|
|
56
|
+
const m = line.match(/^\s*-\s*['"]?([^'"#\n]+)['"]?\s*$/);
|
|
57
|
+
if (m)
|
|
58
|
+
expandGlobPattern(projectRoot, m[1].trim(), out);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
function readPackageJsonWorkspaces(projectRoot, out) {
|
|
62
|
+
try {
|
|
63
|
+
const raw = readText(path.join(projectRoot, 'package.json'));
|
|
64
|
+
if (!raw)
|
|
65
|
+
return;
|
|
66
|
+
const pkg = JSON.parse(raw);
|
|
67
|
+
const ws = pkg.workspaces;
|
|
68
|
+
if (Array.isArray(ws)) {
|
|
69
|
+
expandPatterns(projectRoot, ws, out);
|
|
70
|
+
return;
|
|
71
|
+
}
|
|
72
|
+
if (ws?.packages && Array.isArray(ws.packages))
|
|
73
|
+
expandPatterns(projectRoot, ws.packages, out);
|
|
74
|
+
}
|
|
75
|
+
catch { /* ignore */ }
|
|
76
|
+
}
|
|
77
|
+
function readLerna(projectRoot, out) {
|
|
78
|
+
try {
|
|
79
|
+
const raw = readText(path.join(projectRoot, 'lerna.json'));
|
|
80
|
+
if (!raw)
|
|
81
|
+
return;
|
|
82
|
+
const lerna = JSON.parse(raw);
|
|
83
|
+
expandPatterns(projectRoot, lerna.packages ?? ['packages/*'], out);
|
|
84
|
+
}
|
|
85
|
+
catch { /* ignore */ }
|
|
86
|
+
}
|
|
87
|
+
function readNx(projectRoot, out) {
|
|
88
|
+
if (!fs.existsSync(path.join(projectRoot, 'nx.json')))
|
|
89
|
+
return;
|
|
90
|
+
for (const dir of ['apps', 'libs', 'packages']) {
|
|
91
|
+
expandGlobPattern(projectRoot, `${dir}/*`, out);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
function readTurbo(projectRoot, out) {
|
|
95
|
+
if (!fs.existsSync(path.join(projectRoot, 'turbo.json')))
|
|
96
|
+
return;
|
|
97
|
+
for (const dir of ['apps', 'packages']) {
|
|
98
|
+
expandGlobPattern(projectRoot, `${dir}/*`, out);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
// ── public API ─────────────────────────────────────────────────────────────
|
|
102
|
+
/** Return relative paths of monorepo workspace package directories. */
|
|
103
|
+
export function detectWorkspacePaths(projectRoot) {
|
|
104
|
+
const out = new Set();
|
|
105
|
+
readPnpmWorkspace(projectRoot, out);
|
|
106
|
+
readPackageJsonWorkspaces(projectRoot, out);
|
|
107
|
+
readLerna(projectRoot, out);
|
|
108
|
+
readNx(projectRoot, out);
|
|
109
|
+
readTurbo(projectRoot, out);
|
|
110
|
+
return [...out];
|
|
111
|
+
}
|
|
112
|
+
//# sourceMappingURL=workspace.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workspace.js","sourceRoot":"","sources":["../../../src/cli/detect/workspace.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Characterization tests for detectTechStacks — lock in current behavior before refactoring.
|
|
3
|
+
* These tests build real temp-dir fixtures and run against the actual implementation.
|
|
4
|
+
* They MUST NOT change during or after refactoring.
|
|
5
|
+
*/
|
|
6
|
+
export {};
|
|
7
|
+
//# sourceMappingURL=detect.characterization.test.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"detect.characterization.test.d.ts","sourceRoot":"","sources":["../../src/cli/detect.characterization.test.ts"],"names":[],"mappings":"AAAA;;;;GAIG"}
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Characterization tests for detectTechStacks — lock in current behavior before refactoring.
|
|
3
|
+
* These tests build real temp-dir fixtures and run against the actual implementation.
|
|
4
|
+
* They MUST NOT change during or after refactoring.
|
|
5
|
+
*/
|
|
6
|
+
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
|
|
7
|
+
import fs from 'fs';
|
|
8
|
+
import path from 'path';
|
|
9
|
+
import os from 'os';
|
|
10
|
+
import { detectTechStacks } from './detect.js';
|
|
11
|
+
// ── helpers ────────────────────────────────────────────────────────────────
|
|
12
|
+
function makeTmpDir() {
|
|
13
|
+
return fs.mkdtempSync(path.join(os.tmpdir(), 'vibe-detect-'));
|
|
14
|
+
}
|
|
15
|
+
function writeFile(dir, relPath, content) {
|
|
16
|
+
const full = path.join(dir, relPath);
|
|
17
|
+
fs.mkdirSync(path.dirname(full), { recursive: true });
|
|
18
|
+
fs.writeFileSync(full, content, 'utf-8');
|
|
19
|
+
}
|
|
20
|
+
function writePkg(dir, pkg) {
|
|
21
|
+
writeFile(dir, 'package.json', JSON.stringify(pkg));
|
|
22
|
+
}
|
|
23
|
+
function stackTypes(result) {
|
|
24
|
+
return result.stacks.map(s => s.type);
|
|
25
|
+
}
|
|
26
|
+
// ── suite ──────────────────────────────────────────────────────────────────
|
|
27
|
+
describe('detectTechStacks — characterization', () => {
|
|
28
|
+
let tmp;
|
|
29
|
+
beforeEach(() => { tmp = makeTmpDir(); });
|
|
30
|
+
afterEach(() => { fs.rmSync(tmp, { recursive: true, force: true }); });
|
|
31
|
+
// ── 1. Empty directory ───────────────────────────────────────────────────
|
|
32
|
+
it('empty dir → no stacks, empty details', () => {
|
|
33
|
+
const result = detectTechStacks(tmp);
|
|
34
|
+
expect(result.stacks).toHaveLength(0);
|
|
35
|
+
expect(result.details.databases).toHaveLength(0);
|
|
36
|
+
expect(result.details.stateManagement).toHaveLength(0);
|
|
37
|
+
expect(result.details.hosting).toHaveLength(0);
|
|
38
|
+
expect(result.details.cicd).toHaveLength(0);
|
|
39
|
+
expect(result.details.capabilities).toHaveLength(0);
|
|
40
|
+
});
|
|
41
|
+
// ── 2. Next.js ───────────────────────────────────────────────────────────
|
|
42
|
+
it('Next.js — detects typescript-nextjs', () => {
|
|
43
|
+
writePkg(tmp, { name: 'myapp', dependencies: { next: '^14.0.0', react: '^18.0.0' } });
|
|
44
|
+
const result = detectTechStacks(tmp);
|
|
45
|
+
expect(stackTypes(result)).toContain('typescript-nextjs');
|
|
46
|
+
// "react" is also present but next takes priority
|
|
47
|
+
expect(stackTypes(result)).not.toContain('typescript-react');
|
|
48
|
+
});
|
|
49
|
+
// ── 3. React + Vite ──────────────────────────────────────────────────────
|
|
50
|
+
it('React (vite) — detects typescript-react', () => {
|
|
51
|
+
writePkg(tmp, { name: 'myapp', dependencies: { react: '^18.0.0' } });
|
|
52
|
+
const result = detectTechStacks(tmp);
|
|
53
|
+
expect(stackTypes(result)).toContain('typescript-react');
|
|
54
|
+
});
|
|
55
|
+
// ── 4. Vue ───────────────────────────────────────────────────────────────
|
|
56
|
+
it('Vue — detects typescript-vue', () => {
|
|
57
|
+
writePkg(tmp, { name: 'myapp', dependencies: { vue: '^3.0.0' } });
|
|
58
|
+
const result = detectTechStacks(tmp);
|
|
59
|
+
expect(stackTypes(result)).toContain('typescript-vue');
|
|
60
|
+
});
|
|
61
|
+
// ── 5. Nuxt ──────────────────────────────────────────────────────────────
|
|
62
|
+
it('Nuxt — detects typescript-nuxt and not typescript-vue', () => {
|
|
63
|
+
writePkg(tmp, { name: 'myapp', dependencies: { nuxt: '^3.0.0', vue: '^3.0.0' } });
|
|
64
|
+
const result = detectTechStacks(tmp);
|
|
65
|
+
expect(stackTypes(result)).toContain('typescript-nuxt');
|
|
66
|
+
expect(stackTypes(result)).not.toContain('typescript-vue');
|
|
67
|
+
});
|
|
68
|
+
// ── 6. Django ────────────────────────────────────────────────────────────
|
|
69
|
+
it('Django — detects python-django via requirements.txt', () => {
|
|
70
|
+
writeFile(tmp, 'requirements.txt', 'django==4.2\npsycopg2-binary==2.9\n');
|
|
71
|
+
const result = detectTechStacks(tmp);
|
|
72
|
+
expect(stackTypes(result)).toContain('python-django');
|
|
73
|
+
expect(result.details.databases).toContain('PostgreSQL');
|
|
74
|
+
});
|
|
75
|
+
// ── 7. FastAPI via pyproject.toml ────────────────────────────────────────
|
|
76
|
+
it('FastAPI — detects python-fastapi via pyproject.toml', () => {
|
|
77
|
+
writeFile(tmp, 'pyproject.toml', '[tool.poetry.dependencies]\nfastapi = "^0.100"\nasyncpg = "^0.27"\n');
|
|
78
|
+
const result = detectTechStacks(tmp);
|
|
79
|
+
expect(stackTypes(result)).toContain('python-fastapi');
|
|
80
|
+
expect(result.details.databases).toContain('PostgreSQL');
|
|
81
|
+
});
|
|
82
|
+
// ── 8. Ruby on Rails ─────────────────────────────────────────────────────
|
|
83
|
+
it('Rails — detects ruby-rails via Gemfile', () => {
|
|
84
|
+
writeFile(tmp, 'Gemfile', "source 'https://rubygems.org'\ngem 'rails', '~> 7.1'\ngem 'pg'\n");
|
|
85
|
+
const result = detectTechStacks(tmp);
|
|
86
|
+
expect(stackTypes(result)).toContain('ruby-rails');
|
|
87
|
+
expect(result.details.databases).toContain('PostgreSQL');
|
|
88
|
+
});
|
|
89
|
+
// ── 9. Go ────────────────────────────────────────────────────────────────
|
|
90
|
+
it('Go — detects go via go.mod with Redis', () => {
|
|
91
|
+
writeFile(tmp, 'go.mod', 'module example.com/myapp\n\ngo 1.21\n\nrequire github.com/go-redis/redis/v9 v9.0.0\n');
|
|
92
|
+
const result = detectTechStacks(tmp);
|
|
93
|
+
expect(stackTypes(result)).toContain('go');
|
|
94
|
+
expect(result.details.databases).toContain('Redis');
|
|
95
|
+
});
|
|
96
|
+
// ── 10. Rust ─────────────────────────────────────────────────────────────
|
|
97
|
+
it('Rust — detects rust via Cargo.toml with sqlx', () => {
|
|
98
|
+
writeFile(tmp, 'Cargo.toml', '[package]\nname = "myapp"\nversion = "0.1.0"\n\n[dependencies]\nsqlx = "0.7"\n');
|
|
99
|
+
const result = detectTechStacks(tmp);
|
|
100
|
+
expect(stackTypes(result)).toContain('rust');
|
|
101
|
+
expect(result.details.databases).toContain('PostgreSQL');
|
|
102
|
+
});
|
|
103
|
+
// ── 11. Flutter / Dart ───────────────────────────────────────────────────
|
|
104
|
+
it('Flutter — detects dart-flutter via pubspec.yaml with Riverpod', () => {
|
|
105
|
+
writeFile(tmp, 'pubspec.yaml', 'name: myapp\ndependencies:\n flutter:\n sdk: flutter\n flutter_riverpod: ^2.0.0\n');
|
|
106
|
+
const result = detectTechStacks(tmp);
|
|
107
|
+
expect(stackTypes(result)).toContain('dart-flutter');
|
|
108
|
+
expect(result.details.stateManagement).toContain('Riverpod');
|
|
109
|
+
});
|
|
110
|
+
// ── 12. Plain Node/TS ────────────────────────────────────────────────────
|
|
111
|
+
it('plain Node.js — detects typescript-node via package.json with name only', () => {
|
|
112
|
+
writePkg(tmp, { name: 'mylib', version: '1.0.0' });
|
|
113
|
+
const result = detectTechStacks(tmp);
|
|
114
|
+
expect(stackTypes(result)).toContain('typescript-node');
|
|
115
|
+
});
|
|
116
|
+
// ── 13. Monorepo — nested detection via workspace subdirs ────────────────
|
|
117
|
+
it('monorepo — detects stacks in packages/* subdirectories', () => {
|
|
118
|
+
// root package.json with workspaces
|
|
119
|
+
writePkg(tmp, { name: 'monorepo', workspaces: ['packages/*'] });
|
|
120
|
+
// packages/web = Next.js
|
|
121
|
+
writePkg(path.join(tmp, 'packages/web'), { name: 'web', dependencies: { next: '^14.0.0' } });
|
|
122
|
+
// packages/api = NestJS
|
|
123
|
+
writePkg(path.join(tmp, 'packages/api'), { name: 'api', dependencies: { '@nestjs/core': '^10.0.0' } });
|
|
124
|
+
const result = detectTechStacks(tmp);
|
|
125
|
+
const types = stackTypes(result);
|
|
126
|
+
expect(types).toContain('typescript-nextjs');
|
|
127
|
+
expect(types).toContain('typescript-nestjs');
|
|
128
|
+
});
|
|
129
|
+
// ── 14. detectInDir via conventional subdirs ──────────────────────────────
|
|
130
|
+
it('conventional backend/ frontend/ subdirs are detected', () => {
|
|
131
|
+
// frontend
|
|
132
|
+
writePkg(path.join(tmp, 'frontend'), { name: 'fe', dependencies: { react: '^18.0.0' } });
|
|
133
|
+
// backend
|
|
134
|
+
writePkg(path.join(tmp, 'backend'), { name: 'be', dependencies: { '@nestjs/core': '^10.0.0' } });
|
|
135
|
+
const result = detectTechStacks(tmp);
|
|
136
|
+
const types = stackTypes(result);
|
|
137
|
+
expect(types).toContain('typescript-react');
|
|
138
|
+
expect(types).toContain('typescript-nestjs');
|
|
139
|
+
// paths should reflect the subdir prefix
|
|
140
|
+
const reactStack = result.stacks.find(s => s.type === 'typescript-react');
|
|
141
|
+
expect(reactStack?.path).toBe('frontend');
|
|
142
|
+
const nestStack = result.stacks.find(s => s.type === 'typescript-nestjs');
|
|
143
|
+
expect(nestStack?.path).toBe('backend');
|
|
144
|
+
});
|
|
145
|
+
// ── 15. Multiple stacks in one project (monorepo + no workspaces config) ─
|
|
146
|
+
it('monorepo fallback — detects stacks in apps/ without workspace config', () => {
|
|
147
|
+
// no root package.json
|
|
148
|
+
writePkg(path.join(tmp, 'apps/web'), { name: 'web', dependencies: { react: '^18.0.0' } });
|
|
149
|
+
writeFile(path.join(tmp, 'apps/service'), 'go.mod', 'module service\n\ngo 1.21\n');
|
|
150
|
+
const result = detectTechStacks(tmp);
|
|
151
|
+
const types = stackTypes(result);
|
|
152
|
+
expect(types).toContain('typescript-react');
|
|
153
|
+
expect(types).toContain('go');
|
|
154
|
+
});
|
|
155
|
+
// ── 16. DB detection — multiple DBs ──────────────────────────────────────
|
|
156
|
+
it('detects multiple databases from package.json deps', () => {
|
|
157
|
+
writePkg(tmp, {
|
|
158
|
+
name: 'myapp',
|
|
159
|
+
dependencies: {
|
|
160
|
+
react: '^18.0.0',
|
|
161
|
+
pg: '^8.0.0',
|
|
162
|
+
redis: '^4.0.0',
|
|
163
|
+
mongoose: '^7.0.0',
|
|
164
|
+
}
|
|
165
|
+
});
|
|
166
|
+
const result = detectTechStacks(tmp);
|
|
167
|
+
expect(result.details.databases).toContain('PostgreSQL');
|
|
168
|
+
expect(result.details.databases).toContain('Redis');
|
|
169
|
+
expect(result.details.databases).toContain('MongoDB');
|
|
170
|
+
// no duplicates
|
|
171
|
+
const pg = result.details.databases.filter(d => d === 'PostgreSQL');
|
|
172
|
+
expect(pg).toHaveLength(1);
|
|
173
|
+
});
|
|
174
|
+
// ── 17. State management detection ───────────────────────────────────────
|
|
175
|
+
it('detects state management libraries', () => {
|
|
176
|
+
writePkg(tmp, {
|
|
177
|
+
name: 'myapp',
|
|
178
|
+
dependencies: {
|
|
179
|
+
react: '^18.0.0',
|
|
180
|
+
zustand: '^4.0.0',
|
|
181
|
+
'@tanstack/react-query': '^5.0.0',
|
|
182
|
+
}
|
|
183
|
+
});
|
|
184
|
+
const result = detectTechStacks(tmp);
|
|
185
|
+
expect(result.details.stateManagement).toContain('Zustand');
|
|
186
|
+
expect(result.details.stateManagement).toContain('React Query');
|
|
187
|
+
});
|
|
188
|
+
// ── 18. Capability detection — commerce ──────────────────────────────────
|
|
189
|
+
it('detects commerce capability via stripe dep', () => {
|
|
190
|
+
writePkg(tmp, {
|
|
191
|
+
name: 'shop',
|
|
192
|
+
dependencies: { react: '^18.0.0', stripe: '^14.0.0' }
|
|
193
|
+
});
|
|
194
|
+
const result = detectTechStacks(tmp);
|
|
195
|
+
expect(result.details.capabilities).toContain('commerce');
|
|
196
|
+
});
|
|
197
|
+
// ── 19. Capability detection — video ─────────────────────────────────────
|
|
198
|
+
it('detects video capability via fluent-ffmpeg dep', () => {
|
|
199
|
+
writePkg(tmp, {
|
|
200
|
+
name: 'video-tool',
|
|
201
|
+
dependencies: { 'fluent-ffmpeg': '^2.0.0' }
|
|
202
|
+
});
|
|
203
|
+
const result = detectTechStacks(tmp);
|
|
204
|
+
expect(result.details.capabilities).toContain('video');
|
|
205
|
+
});
|
|
206
|
+
// ── 20. Capability detection — event-automation (with required dir) ───────
|
|
207
|
+
it('detects event-automation only when dir structure present', () => {
|
|
208
|
+
writePkg(tmp, {
|
|
209
|
+
name: 'event-tool',
|
|
210
|
+
dependencies: { nodemailer: '^6.0.0', '@notionhq/client': '^2.0.0' }
|
|
211
|
+
});
|
|
212
|
+
// Without required directories: no event-automation
|
|
213
|
+
const resultBefore = detectTechStacks(tmp);
|
|
214
|
+
expect(resultBefore.details.capabilities).not.toContain('event-automation');
|
|
215
|
+
// With required directory: event-automation detected
|
|
216
|
+
fs.mkdirSync(path.join(tmp, 'agents'), { recursive: true });
|
|
217
|
+
const resultAfter = detectTechStacks(tmp);
|
|
218
|
+
expect(resultAfter.details.capabilities).toContain('event-automation');
|
|
219
|
+
});
|
|
220
|
+
// ── 21. CI/CD detection ───────────────────────────────────────────────────
|
|
221
|
+
it('detects GitHub Actions CI/CD', () => {
|
|
222
|
+
fs.mkdirSync(path.join(tmp, '.github', 'workflows'), { recursive: true });
|
|
223
|
+
writeFile(tmp, '.github/workflows/ci.yml', 'name: CI\n');
|
|
224
|
+
const result = detectTechStacks(tmp);
|
|
225
|
+
expect(result.details.cicd).toContain('GitHub Actions');
|
|
226
|
+
});
|
|
227
|
+
// ── 22. Hosting detection ─────────────────────────────────────────────────
|
|
228
|
+
it('detects Vercel hosting via vercel.json', () => {
|
|
229
|
+
writeFile(tmp, 'vercel.json', '{}');
|
|
230
|
+
const result = detectTechStacks(tmp);
|
|
231
|
+
expect(result.details.hosting).toContain('Vercel');
|
|
232
|
+
});
|
|
233
|
+
it('detects Docker hosting', () => {
|
|
234
|
+
writeFile(tmp, 'Dockerfile', 'FROM node:20\n');
|
|
235
|
+
const result = detectTechStacks(tmp);
|
|
236
|
+
expect(result.details.hosting).toContain('Docker');
|
|
237
|
+
});
|
|
238
|
+
// ── 23. Priority: Tauri > React ───────────────────────────────────────────
|
|
239
|
+
it('Tauri takes priority over React', () => {
|
|
240
|
+
writePkg(tmp, {
|
|
241
|
+
name: 'desktop',
|
|
242
|
+
dependencies: { '@tauri-apps/api': '^1.0.0', react: '^18.0.0' }
|
|
243
|
+
});
|
|
244
|
+
const result = detectTechStacks(tmp);
|
|
245
|
+
expect(stackTypes(result)).toContain('typescript-tauri');
|
|
246
|
+
expect(stackTypes(result)).not.toContain('typescript-react');
|
|
247
|
+
});
|
|
248
|
+
// ── 24. Angular ───────────────────────────────────────────────────────────
|
|
249
|
+
it('Angular — detects typescript-angular', () => {
|
|
250
|
+
writePkg(tmp, { name: 'ng-app', dependencies: { '@angular/core': '^17.0.0' } });
|
|
251
|
+
const result = detectTechStacks(tmp);
|
|
252
|
+
expect(stackTypes(result)).toContain('typescript-angular');
|
|
253
|
+
});
|
|
254
|
+
// ── 25. Java Spring via pom.xml ───────────────────────────────────────────
|
|
255
|
+
it('Java Spring — detects java-spring via pom.xml', () => {
|
|
256
|
+
writeFile(tmp, 'pom.xml', '<project>\n<dependencies>\n<groupId>org.springframework</groupId>\n</dependencies>\n</project>');
|
|
257
|
+
const result = detectTechStacks(tmp);
|
|
258
|
+
expect(stackTypes(result)).toContain('java-spring');
|
|
259
|
+
});
|
|
260
|
+
// ── 26. pnpm workspace monorepo ───────────────────────────────────────────
|
|
261
|
+
it('pnpm-workspace.yaml — detects stacks in workspace packages', () => {
|
|
262
|
+
writeFile(tmp, 'pnpm-workspace.yaml', 'packages:\n - "apps/*"\n');
|
|
263
|
+
writePkg(path.join(tmp, 'apps/dashboard'), { name: 'dashboard', dependencies: { vue: '^3.0.0' } });
|
|
264
|
+
const result = detectTechStacks(tmp);
|
|
265
|
+
expect(stackTypes(result)).toContain('typescript-vue');
|
|
266
|
+
const vueStack = result.stacks.find(s => s.type === 'typescript-vue');
|
|
267
|
+
expect(vueStack?.path).toBe('apps/dashboard');
|
|
268
|
+
});
|
|
269
|
+
// ── 27. Electron ──────────────────────────────────────────────────────────
|
|
270
|
+
it('Electron — detects typescript-electron', () => {
|
|
271
|
+
writePkg(tmp, { name: 'desktop', dependencies: { electron: '^28.0.0' } });
|
|
272
|
+
const result = detectTechStacks(tmp);
|
|
273
|
+
expect(stackTypes(result)).toContain('typescript-electron');
|
|
274
|
+
});
|
|
275
|
+
// ── 28. NestJS ────────────────────────────────────────────────────────────
|
|
276
|
+
it('NestJS — detects typescript-nestjs', () => {
|
|
277
|
+
writePkg(tmp, { name: 'api', dependencies: { '@nestjs/core': '^10.0.0' } });
|
|
278
|
+
const result = detectTechStacks(tmp);
|
|
279
|
+
expect(stackTypes(result)).toContain('typescript-nestjs');
|
|
280
|
+
});
|
|
281
|
+
// ── 29. Astro ─────────────────────────────────────────────────────────────
|
|
282
|
+
it('Astro — detects typescript-astro', () => {
|
|
283
|
+
writePkg(tmp, { name: 'blog', dependencies: { astro: '^4.0.0' } });
|
|
284
|
+
const result = detectTechStacks(tmp);
|
|
285
|
+
expect(stackTypes(result)).toContain('typescript-astro');
|
|
286
|
+
});
|
|
287
|
+
// ── 30. React Native ──────────────────────────────────────────────────────
|
|
288
|
+
it('React Native — detects typescript-react-native', () => {
|
|
289
|
+
writePkg(tmp, { name: 'mobile', dependencies: { 'react-native': '^0.73.0' } });
|
|
290
|
+
const result = detectTechStacks(tmp);
|
|
291
|
+
expect(stackTypes(result)).toContain('typescript-react-native');
|
|
292
|
+
});
|
|
293
|
+
});
|
|
294
|
+
//# sourceMappingURL=detect.characterization.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"detect.characterization.test.js","sourceRoot":"","sources":["../../src/cli/detect.characterization.test.ts"],"names":[],"mappings":"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"}
|
package/dist/cli/detect.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"detect.d.ts","sourceRoot":"","sources":["../../src/cli/detect.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,EAA+B,eAAe,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"detect.d.ts","sourceRoot":"","sources":["../../src/cli/detect.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,EAA+B,eAAe,EAAE,MAAM,YAAY,CAAC;AAoF1E;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,WAAW,EAAE,MAAM,GAAG,eAAe,CA6BrE;AAED;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,CAiCzF,CAAC;AAEF;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,MAAM,EAAE,KAAK,CAAC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC,GAAG,MAAM,CAM/F;AAED;;GAEG;AACH,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAyCjD,CAAC;AAEF;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,KAAK,CAAC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC,GAAG,MAAM,CAsB7F"}
|