repowise 0.1.4 → 0.1.6
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/bin/repowise.js +116 -14
- package/dist/src/commands/create.d.ts +1 -1
- package/dist/src/commands/create.d.ts.map +1 -1
- package/dist/src/commands/create.js +237 -2
- package/dist/src/commands/create.js.map +1 -1
- package/dist/src/commands/listen.d.ts +3 -2
- package/dist/src/commands/listen.d.ts.map +1 -1
- package/dist/src/commands/listen.js +45 -3
- package/dist/src/commands/listen.js.map +1 -1
- package/dist/src/commands/login.d.ts +4 -1
- package/dist/src/commands/login.d.ts.map +1 -1
- package/dist/src/commands/login.js +56 -2
- package/dist/src/commands/login.js.map +1 -1
- package/dist/src/commands/logout.d.ts +1 -1
- package/dist/src/commands/logout.d.ts.map +1 -1
- package/dist/src/commands/logout.js +10 -2
- package/dist/src/commands/logout.js.map +1 -1
- package/dist/src/commands/start.d.ts +2 -0
- package/dist/src/commands/start.d.ts.map +1 -0
- package/dist/src/commands/start.js +17 -0
- package/dist/src/commands/start.js.map +1 -0
- package/dist/src/commands/status.d.ts +1 -1
- package/dist/src/commands/status.d.ts.map +1 -1
- package/dist/src/commands/status.js +61 -2
- package/dist/src/commands/status.js.map +1 -1
- package/dist/src/commands/stop.d.ts +2 -0
- package/dist/src/commands/stop.d.ts.map +1 -0
- package/dist/src/commands/stop.js +17 -0
- package/dist/src/commands/stop.js.map +1 -0
- package/dist/src/lib/ai-tools.d.ts +23 -0
- package/dist/src/lib/ai-tools.d.ts.map +1 -0
- package/dist/src/lib/ai-tools.js +193 -0
- package/dist/src/lib/ai-tools.js.map +1 -0
- package/dist/src/lib/api.d.ts.map +1 -1
- package/dist/src/lib/api.js +25 -4
- package/dist/src/lib/api.js.map +1 -1
- package/dist/src/lib/auth.d.ts +18 -0
- package/dist/src/lib/auth.d.ts.map +1 -1
- package/dist/src/lib/auth.js +251 -7
- package/dist/src/lib/auth.js.map +1 -1
- package/dist/src/lib/config.d.ts +2 -0
- package/dist/src/lib/config.d.ts.map +1 -1
- package/dist/src/lib/config.js.map +1 -1
- package/dist/src/lib/env.d.ts +10 -0
- package/dist/src/lib/env.d.ts.map +1 -0
- package/dist/src/lib/env.js +26 -0
- package/dist/src/lib/env.js.map +1 -0
- package/dist/src/lib/interview-handler.d.ts +2 -0
- package/dist/src/lib/interview-handler.d.ts.map +1 -0
- package/dist/src/lib/interview-handler.js +96 -0
- package/dist/src/lib/interview-handler.js.map +1 -0
- package/dist/src/lib/progress-renderer.d.ts +69 -0
- package/dist/src/lib/progress-renderer.d.ts.map +1 -0
- package/dist/src/lib/progress-renderer.js +186 -0
- package/dist/src/lib/progress-renderer.js.map +1 -0
- package/dist/src/lib/prompts.d.ts +6 -1
- package/dist/src/lib/prompts.d.ts.map +1 -1
- package/dist/src/lib/prompts.js +21 -3
- package/dist/src/lib/prompts.js.map +1 -1
- package/dist/src/types/index.d.ts +1 -0
- package/dist/src/types/index.d.ts.map +1 -1
- package/dist/tsup.config.d.ts +3 -0
- package/dist/tsup.config.d.ts.map +1 -0
- package/dist/tsup.config.js +18 -0
- package/dist/tsup.config.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
import chalk from 'chalk';
|
|
2
|
+
export class ProgressRenderer {
|
|
3
|
+
privacyShieldShown = false;
|
|
4
|
+
discoveryShown = false;
|
|
5
|
+
scanSummaryShown = false;
|
|
6
|
+
validationShown = false;
|
|
7
|
+
lastValidationRound = 0;
|
|
8
|
+
shownPersonas = new Set();
|
|
9
|
+
renderPrivacyShield(enabled, spinner) {
|
|
10
|
+
if (this.privacyShieldShown)
|
|
11
|
+
return;
|
|
12
|
+
this.privacyShieldShown = true;
|
|
13
|
+
spinner.stop();
|
|
14
|
+
console.log('');
|
|
15
|
+
console.log(chalk.cyan.bold(' ── Privacy Shield ──'));
|
|
16
|
+
if (enabled) {
|
|
17
|
+
console.log(` ${chalk.green('✓')} Privacy Shield active`);
|
|
18
|
+
console.log(` ${chalk.green('✓')} Private connection established`);
|
|
19
|
+
}
|
|
20
|
+
else {
|
|
21
|
+
console.log(` ${chalk.yellow('ℹ')} Privacy Shield not in current plan`);
|
|
22
|
+
console.log(chalk.dim(' Shield your data from the open internet.'));
|
|
23
|
+
}
|
|
24
|
+
console.log('');
|
|
25
|
+
spinner.start();
|
|
26
|
+
}
|
|
27
|
+
renderDiscovery(result, spinner) {
|
|
28
|
+
if (this.discoveryShown)
|
|
29
|
+
return;
|
|
30
|
+
this.discoveryShown = true;
|
|
31
|
+
spinner.stop();
|
|
32
|
+
console.log('');
|
|
33
|
+
console.log(chalk.cyan.bold(' ── Repository Discovery ──'));
|
|
34
|
+
if (result.languages.length > 0) {
|
|
35
|
+
const langs = result.languages
|
|
36
|
+
.slice(0, 5)
|
|
37
|
+
.map((l) => `${l.name} (${Math.round(l.percentage)}%)`)
|
|
38
|
+
.join(', ');
|
|
39
|
+
console.log(` ${chalk.dim('Languages:')} ${langs}`);
|
|
40
|
+
}
|
|
41
|
+
if (result.frameworks.length > 0) {
|
|
42
|
+
console.log(` ${chalk.dim('Frameworks:')} ${result.frameworks.map((f) => f.name).join(', ')}`);
|
|
43
|
+
}
|
|
44
|
+
console.log(` ${chalk.dim('Structure:')} ${result.structureType} ${chalk.dim(`(${result.fileCount} files)`)}`);
|
|
45
|
+
if (result.existingDocs.length > 0) {
|
|
46
|
+
console.log(` ${chalk.dim('Existing docs:')} ${result.existingDocs.join(', ')}`);
|
|
47
|
+
}
|
|
48
|
+
if (result.fileTree && result.fileTree.length > 0) {
|
|
49
|
+
this.renderTree(result.fileTree);
|
|
50
|
+
}
|
|
51
|
+
console.log('');
|
|
52
|
+
spinner.start();
|
|
53
|
+
}
|
|
54
|
+
renderTree(entries) {
|
|
55
|
+
console.log('');
|
|
56
|
+
console.log(chalk.cyan.bold(' ── Project Structure ──'));
|
|
57
|
+
const root = { name: '', type: 'tree', children: new Map() };
|
|
58
|
+
for (const entry of entries) {
|
|
59
|
+
const parts = entry.path.split('/');
|
|
60
|
+
let current = root;
|
|
61
|
+
for (let i = 0; i < parts.length; i++) {
|
|
62
|
+
const part = parts[i];
|
|
63
|
+
if (!current.children.has(part)) {
|
|
64
|
+
const isLast = i === parts.length - 1;
|
|
65
|
+
current.children.set(part, {
|
|
66
|
+
name: part,
|
|
67
|
+
type: isLast ? entry.type : 'tree',
|
|
68
|
+
children: new Map(),
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
current = current.children.get(part);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
const printNode = (node, prefix, isLast) => {
|
|
75
|
+
const connector = isLast ? '└── ' : '├── ';
|
|
76
|
+
const display = node.type === 'tree' ? chalk.bold.dim(`${node.name}/`) : node.name;
|
|
77
|
+
console.log(` ${prefix}${connector}${display}`);
|
|
78
|
+
const sorted = [...node.children.values()].sort((a, b) => {
|
|
79
|
+
if (a.type === 'tree' && b.type !== 'tree')
|
|
80
|
+
return -1;
|
|
81
|
+
if (a.type !== 'tree' && b.type === 'tree')
|
|
82
|
+
return 1;
|
|
83
|
+
return a.name.localeCompare(b.name);
|
|
84
|
+
});
|
|
85
|
+
const childPrefix = prefix + (isLast ? ' ' : '│ ');
|
|
86
|
+
sorted.forEach((child, idx) => {
|
|
87
|
+
printNode(child, childPrefix, idx === sorted.length - 1);
|
|
88
|
+
});
|
|
89
|
+
};
|
|
90
|
+
const topLevel = [...root.children.values()].sort((a, b) => {
|
|
91
|
+
if (a.type === 'tree' && b.type !== 'tree')
|
|
92
|
+
return -1;
|
|
93
|
+
if (a.type !== 'tree' && b.type === 'tree')
|
|
94
|
+
return 1;
|
|
95
|
+
return a.name.localeCompare(b.name);
|
|
96
|
+
});
|
|
97
|
+
topLevel.forEach((child, idx) => {
|
|
98
|
+
printNode(child, '', idx === topLevel.length - 1);
|
|
99
|
+
});
|
|
100
|
+
}
|
|
101
|
+
renderScanSummary(summary, spinner) {
|
|
102
|
+
if (this.scanSummaryShown)
|
|
103
|
+
return;
|
|
104
|
+
this.scanSummaryShown = true;
|
|
105
|
+
spinner.stop();
|
|
106
|
+
console.log(chalk.dim(` Scan complete: ${summary.totalFiles} files, ${summary.totalFunctions} functions, ${summary.totalClasses} classes, ${summary.totalEndpoints} endpoints`));
|
|
107
|
+
console.log('');
|
|
108
|
+
spinner.start();
|
|
109
|
+
}
|
|
110
|
+
renderValidation(progress, spinner) {
|
|
111
|
+
if (progress.status === 'complete' && !this.validationShown) {
|
|
112
|
+
this.validationShown = true;
|
|
113
|
+
spinner.stop();
|
|
114
|
+
console.log(chalk.cyan.bold(' ── Validation Results ──'));
|
|
115
|
+
for (const result of progress.personaResults) {
|
|
116
|
+
const scoreColor = result.score === 'PASS'
|
|
117
|
+
? chalk.green
|
|
118
|
+
: result.score === 'PARTIAL'
|
|
119
|
+
? chalk.yellow
|
|
120
|
+
: chalk.red;
|
|
121
|
+
console.log(` ${result.persona}: ${scoreColor(result.score)}`);
|
|
122
|
+
}
|
|
123
|
+
const passCount = progress.personaResults.filter((r) => r.score === 'PASS').length;
|
|
124
|
+
const total = progress.personaResults.length;
|
|
125
|
+
const roundInfo = progress.round > 1 ? ` (${progress.round} rounds)` : '';
|
|
126
|
+
console.log(chalk.dim(` ${passCount}/${total} PASS${roundInfo}`));
|
|
127
|
+
console.log('');
|
|
128
|
+
spinner.start();
|
|
129
|
+
return;
|
|
130
|
+
}
|
|
131
|
+
// Show individual persona results as they come in
|
|
132
|
+
if (progress.round > this.lastValidationRound) {
|
|
133
|
+
this.lastValidationRound = progress.round;
|
|
134
|
+
}
|
|
135
|
+
for (const result of progress.personaResults) {
|
|
136
|
+
const key = `${progress.round}:${result.persona}`;
|
|
137
|
+
if (!this.shownPersonas.has(key)) {
|
|
138
|
+
this.shownPersonas.add(key);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
getSpinnerText(syncResult) {
|
|
143
|
+
const stepLabel = syncResult.stepLabel ?? syncResult.currentStep ?? 'Processing';
|
|
144
|
+
const pct = syncResult.progressPercentage ?? 0;
|
|
145
|
+
let progressText = stepLabel;
|
|
146
|
+
if (syncResult.scanProgress && !syncResult.scanProgress.summary) {
|
|
147
|
+
progressText = `Scanning batch ${syncResult.scanProgress.currentBatch}/${syncResult.scanProgress.totalBatches}`;
|
|
148
|
+
}
|
|
149
|
+
else if (syncResult.generationProgress) {
|
|
150
|
+
const gp = syncResult.generationProgress;
|
|
151
|
+
progressText = `Generating ${gp.currentFileName} (${gp.currentFile}/${gp.totalFiles})`;
|
|
152
|
+
}
|
|
153
|
+
else if (syncResult.validationProgress &&
|
|
154
|
+
syncResult.validationProgress.status !== 'complete') {
|
|
155
|
+
const vp = syncResult.validationProgress;
|
|
156
|
+
if (vp.status === 'regenerating') {
|
|
157
|
+
progressText = `Regenerating files (round ${vp.round})`;
|
|
158
|
+
}
|
|
159
|
+
else {
|
|
160
|
+
progressText = `Validation round ${vp.round}/${vp.maxRounds}`;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
return `${progressText}... ${chalk.dim(`(${pct}%)`)}`;
|
|
164
|
+
}
|
|
165
|
+
update(syncResult, spinner) {
|
|
166
|
+
// Show Privacy Shield status once (before first pipeline step)
|
|
167
|
+
if (syncResult.privacyShieldEnabled !== undefined) {
|
|
168
|
+
this.renderPrivacyShield(syncResult.privacyShieldEnabled, spinner);
|
|
169
|
+
}
|
|
170
|
+
// Show discovery results once
|
|
171
|
+
if (syncResult.discoveryResult) {
|
|
172
|
+
this.renderDiscovery(syncResult.discoveryResult, spinner);
|
|
173
|
+
}
|
|
174
|
+
// Show scan summary once
|
|
175
|
+
if (syncResult.scanProgress?.summary) {
|
|
176
|
+
this.renderScanSummary(syncResult.scanProgress.summary, spinner);
|
|
177
|
+
}
|
|
178
|
+
// Show validation progress
|
|
179
|
+
if (syncResult.validationProgress) {
|
|
180
|
+
this.renderValidation(syncResult.validationProgress, spinner);
|
|
181
|
+
}
|
|
182
|
+
// Update spinner text
|
|
183
|
+
spinner.text = this.getSpinnerText(syncResult);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
//# sourceMappingURL=progress-renderer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"progress-renderer.js","sourceRoot":"","sources":["../../../src/lib/progress-renderer.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import type { AiTool } from './ai-tools.js';
|
|
2
|
+
export interface AiToolSelection {
|
|
3
|
+
tools: AiTool[];
|
|
4
|
+
hasOther: boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare function selectAiTools(): Promise<AiToolSelection>;
|
|
2
7
|
//# sourceMappingURL=prompts.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prompts.d.ts","sourceRoot":"","sources":["../../../src/lib/prompts.ts"],"names":[],"mappings":"AAEA,
|
|
1
|
+
{"version":3,"file":"prompts.d.ts","sourceRoot":"","sources":["../../../src/lib/prompts.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAE5C,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,wBAAsB,aAAa,IAAI,OAAO,CAAC,eAAe,CAAC,CAqB9D"}
|
package/dist/src/lib/prompts.js
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export
|
|
1
|
+
import { checkbox } from '@inquirer/prompts';
|
|
2
|
+
import chalk from 'chalk';
|
|
3
|
+
export async function selectAiTools() {
|
|
4
|
+
const choices = [
|
|
5
|
+
{ name: 'Cursor', value: 'cursor' },
|
|
6
|
+
{ name: 'Claude Code', value: 'claude-code' },
|
|
7
|
+
{ name: 'GitHub Copilot', value: 'copilot' },
|
|
8
|
+
{ name: 'Windsurf', value: 'windsurf' },
|
|
9
|
+
{ name: 'Cline', value: 'cline' },
|
|
10
|
+
{ name: 'Codex', value: 'codex' },
|
|
11
|
+
{ name: 'Roo Code', value: 'roo-code' },
|
|
12
|
+
{ name: 'Other (manual setup)', value: 'other' },
|
|
13
|
+
];
|
|
14
|
+
const selected = await checkbox({
|
|
15
|
+
message: chalk.bold('Which AI tools do you use?'),
|
|
16
|
+
choices,
|
|
17
|
+
});
|
|
18
|
+
const hasOther = selected.includes('other');
|
|
19
|
+
const tools = selected.filter((s) => s !== 'other');
|
|
20
|
+
return { tools, hasOther };
|
|
21
|
+
}
|
|
4
22
|
//# sourceMappingURL=prompts.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prompts.js","sourceRoot":"","sources":["../../../src/lib/prompts.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"prompts.js","sourceRoot":"","sources":["../../../src/lib/prompts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7C,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,MAAM,CAAC,KAAK,UAAU,aAAa;IACjC,MAAM,OAAO,GAAG;QACd,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAiB,EAAE;QAC5C,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,EAAE,aAAsB,EAAE;QACtD,EAAE,IAAI,EAAE,gBAAgB,EAAE,KAAK,EAAE,SAAkB,EAAE;QACrD,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,UAAmB,EAAE;QAChD,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,OAAgB,EAAE;QAC1C,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,OAAgB,EAAE;QAC1C,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,UAAmB,EAAE;QAChD,EAAE,IAAI,EAAE,sBAAsB,EAAE,KAAK,EAAE,OAAgB,EAAE;KAC1D,CAAC;IAEF,MAAM,QAAQ,GAAG,MAAM,QAAQ,CAAC;QAC9B,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC,4BAA4B,CAAC;QACjD,OAAO;KACR,CAAC,CAAC;IAEH,MAAM,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC;IAC5C,MAAM,KAAK,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,EAAe,EAAE,CAAC,CAAC,KAAK,OAAO,CAAC,CAAC;IAEjE,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC;AAC7B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACxD,YAAY,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACxD,YAAY,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAClD,YAAY,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import("tsup").Options | import("tsup").Options[] | ((overrideOptions: import("tsup").Options) => import("tsup").Options | import("tsup").Options[] | Promise<import("tsup").Options | import("tsup").Options[]>);
|
|
2
|
+
export default _default;
|
|
3
|
+
//# sourceMappingURL=tsup.config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tsup.config.d.ts","sourceRoot":"","sources":["../tsup.config.ts"],"names":[],"mappings":";AAEA,wBAeG"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { defineConfig } from 'tsup';
|
|
2
|
+
export default defineConfig({
|
|
3
|
+
entry: ['bin/repowise.ts'],
|
|
4
|
+
outDir: 'dist/bin',
|
|
5
|
+
format: 'esm',
|
|
6
|
+
target: 'node20',
|
|
7
|
+
platform: 'node',
|
|
8
|
+
splitting: false,
|
|
9
|
+
clean: true,
|
|
10
|
+
banner: {
|
|
11
|
+
js: '#!/usr/bin/env node',
|
|
12
|
+
},
|
|
13
|
+
// Only bundle @repowise/* workspace packages — everything else stays external
|
|
14
|
+
noExternal: [/@repowise\/.*/],
|
|
15
|
+
// Externalize all non-workspace dependencies (npm will install them)
|
|
16
|
+
external: [/^[^.@/]|^@(?!repowise\/)/],
|
|
17
|
+
});
|
|
18
|
+
//# sourceMappingURL=tsup.config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tsup.config.js","sourceRoot":"","sources":["../tsup.config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAEpC,eAAe,YAAY,CAAC;IAC1B,KAAK,EAAE,CAAC,iBAAiB,CAAC;IAC1B,MAAM,EAAE,UAAU;IAClB,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,MAAM;IAChB,SAAS,EAAE,KAAK;IAChB,KAAK,EAAE,IAAI;IACX,MAAM,EAAE;QACN,EAAE,EAAE,qBAAqB;KAC1B;IACD,8EAA8E;IAC9E,UAAU,EAAE,CAAC,eAAe,CAAC;IAC7B,qEAAqE;IACrE,QAAQ,EAAE,CAAC,0BAA0B,CAAC;CACvC,CAAC,CAAC"}
|