popeye-cli 1.1.0 → 1.2.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/.env.example +24 -1
- package/CONTRIBUTING.md +275 -0
- package/OPEN_SOURCE_MANIFESTO.md +172 -0
- package/README.md +340 -27
- package/dist/adapters/claude.d.ts +5 -2
- package/dist/adapters/claude.d.ts.map +1 -1
- package/dist/adapters/claude.js +239 -19
- package/dist/adapters/claude.js.map +1 -1
- package/dist/adapters/grok.d.ts +73 -0
- package/dist/adapters/grok.d.ts.map +1 -0
- package/dist/adapters/grok.js +430 -0
- package/dist/adapters/grok.js.map +1 -0
- package/dist/adapters/openai.d.ts +1 -1
- package/dist/adapters/openai.d.ts.map +1 -1
- package/dist/adapters/openai.js +6 -1
- package/dist/adapters/openai.js.map +1 -1
- package/dist/auth/grok.d.ts +73 -0
- package/dist/auth/grok.d.ts.map +1 -0
- package/dist/auth/grok.js +211 -0
- package/dist/auth/grok.js.map +1 -0
- package/dist/auth/index.d.ts +9 -6
- package/dist/auth/index.d.ts.map +1 -1
- package/dist/auth/index.js +23 -6
- package/dist/auth/index.js.map +1 -1
- package/dist/cli/commands/auth.d.ts +1 -1
- package/dist/cli/commands/auth.d.ts.map +1 -1
- package/dist/cli/commands/auth.js +79 -8
- package/dist/cli/commands/auth.js.map +1 -1
- package/dist/cli/commands/create.d.ts.map +1 -1
- package/dist/cli/commands/create.js +15 -4
- package/dist/cli/commands/create.js.map +1 -1
- package/dist/cli/interactive.d.ts.map +1 -1
- package/dist/cli/interactive.js +374 -35
- package/dist/cli/interactive.js.map +1 -1
- package/dist/config/defaults.d.ts +3 -0
- package/dist/config/defaults.d.ts.map +1 -1
- package/dist/config/defaults.js +9 -0
- package/dist/config/defaults.js.map +1 -1
- package/dist/config/index.d.ts +9 -0
- package/dist/config/index.d.ts.map +1 -1
- package/dist/config/index.js +16 -3
- package/dist/config/index.js.map +1 -1
- package/dist/config/schema.d.ts +27 -0
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config/schema.js +24 -3
- package/dist/config/schema.js.map +1 -1
- package/dist/generators/fullstack.d.ts +32 -0
- package/dist/generators/fullstack.d.ts.map +1 -0
- package/dist/generators/fullstack.js +497 -0
- package/dist/generators/fullstack.js.map +1 -0
- package/dist/generators/index.d.ts +4 -3
- package/dist/generators/index.d.ts.map +1 -1
- package/dist/generators/index.js +15 -1
- package/dist/generators/index.js.map +1 -1
- package/dist/generators/python.d.ts +17 -1
- package/dist/generators/python.d.ts.map +1 -1
- package/dist/generators/python.js +34 -21
- package/dist/generators/python.js.map +1 -1
- package/dist/generators/templates/fullstack.d.ts +113 -0
- package/dist/generators/templates/fullstack.d.ts.map +1 -0
- package/dist/generators/templates/fullstack.js +1004 -0
- package/dist/generators/templates/fullstack.js.map +1 -0
- package/dist/generators/typescript.d.ts +19 -1
- package/dist/generators/typescript.d.ts.map +1 -1
- package/dist/generators/typescript.js +37 -21
- package/dist/generators/typescript.js.map +1 -1
- package/dist/types/cli.d.ts +4 -0
- package/dist/types/cli.d.ts.map +1 -1
- package/dist/types/cli.js.map +1 -1
- package/dist/types/consensus.d.ts +119 -2
- package/dist/types/consensus.d.ts.map +1 -1
- package/dist/types/consensus.js +12 -1
- package/dist/types/consensus.js.map +1 -1
- package/dist/types/project.d.ts +76 -0
- package/dist/types/project.d.ts.map +1 -1
- package/dist/types/project.js +1 -1
- package/dist/types/project.js.map +1 -1
- package/dist/types/workflow.d.ts +162 -16
- package/dist/types/workflow.d.ts.map +1 -1
- package/dist/types/workflow.js +24 -1
- package/dist/types/workflow.js.map +1 -1
- package/dist/workflow/consensus.d.ts +29 -3
- package/dist/workflow/consensus.d.ts.map +1 -1
- package/dist/workflow/consensus.js +334 -27
- package/dist/workflow/consensus.js.map +1 -1
- package/dist/workflow/milestone-workflow.js +2 -2
- package/dist/workflow/milestone-workflow.js.map +1 -1
- package/dist/workflow/plan-mode.d.ts +66 -2
- package/dist/workflow/plan-mode.d.ts.map +1 -1
- package/dist/workflow/plan-mode.js +187 -11
- package/dist/workflow/plan-mode.js.map +1 -1
- package/dist/workflow/plan-storage.d.ts +252 -8
- package/dist/workflow/plan-storage.d.ts.map +1 -1
- package/dist/workflow/plan-storage.js +580 -33
- package/dist/workflow/plan-storage.js.map +1 -1
- package/dist/workflow/project-verification.js +1 -1
- package/dist/workflow/project-verification.js.map +1 -1
- package/dist/workflow/task-workflow.d.ts.map +1 -1
- package/dist/workflow/task-workflow.js +4 -1
- package/dist/workflow/task-workflow.js.map +1 -1
- package/dist/workflow/test-runner.d.ts +8 -0
- package/dist/workflow/test-runner.d.ts.map +1 -1
- package/dist/workflow/test-runner.js +92 -0
- package/dist/workflow/test-runner.js.map +1 -1
- package/dist/workflow/workspace-manager.d.ts +342 -0
- package/dist/workflow/workspace-manager.d.ts.map +1 -0
- package/dist/workflow/workspace-manager.js +733 -0
- package/dist/workflow/workspace-manager.js.map +1 -0
- package/package.json +1 -1
- package/src/adapters/claude.ts +263 -24
- package/src/adapters/grok.ts +492 -0
- package/src/adapters/openai.ts +8 -2
- package/src/auth/grok.ts +255 -0
- package/src/auth/index.ts +27 -9
- package/src/cli/commands/auth.ts +89 -10
- package/src/cli/commands/create.ts +13 -4
- package/src/cli/interactive.ts +424 -34
- package/src/config/defaults.ts +9 -0
- package/src/config/index.ts +17 -3
- package/src/config/schema.ts +25 -3
- package/src/generators/fullstack.ts +551 -0
- package/src/generators/index.ts +25 -1
- package/src/generators/python.ts +65 -21
- package/src/generators/templates/fullstack.ts +1047 -0
- package/src/generators/typescript.ts +69 -21
- package/src/types/cli.ts +4 -0
- package/src/types/consensus.ts +135 -3
- package/src/types/project.ts +82 -1
- package/src/types/workflow.ts +56 -2
- package/src/workflow/consensus.ts +461 -31
- package/src/workflow/milestone-workflow.ts +2 -2
- package/src/workflow/plan-mode.ts +238 -10
- package/src/workflow/plan-storage.ts +835 -35
- package/src/workflow/project-verification.ts +1 -1
- package/src/workflow/task-workflow.ts +4 -1
- package/src/workflow/test-runner.ts +110 -0
- package/src/workflow/workspace-manager.ts +912 -0
|
@@ -0,0 +1,342 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Workspace manager module
|
|
3
|
+
* Handles loading, saving, and querying workspace configuration for fullstack projects
|
|
4
|
+
* Also provides app-specific context for AI reviews
|
|
5
|
+
*/
|
|
6
|
+
import type { WorkspaceConfig, WorkspaceApp } from '../types/project.js';
|
|
7
|
+
import type { ReviewAppTarget } from '../types/consensus.js';
|
|
8
|
+
/**
|
|
9
|
+
* Context for AI review of a specific app
|
|
10
|
+
*/
|
|
11
|
+
export interface AppReviewContext {
|
|
12
|
+
appName: 'frontend' | 'backend';
|
|
13
|
+
language: 'python' | 'typescript';
|
|
14
|
+
path: string;
|
|
15
|
+
/** Key source files content for review */
|
|
16
|
+
sourceFiles: Array<{
|
|
17
|
+
path: string;
|
|
18
|
+
content: string;
|
|
19
|
+
}>;
|
|
20
|
+
/** UI spec for frontend */
|
|
21
|
+
uiSpec?: string;
|
|
22
|
+
/** API contracts (OpenAPI) */
|
|
23
|
+
apiContracts?: string;
|
|
24
|
+
/** Test file content */
|
|
25
|
+
testFiles?: Array<{
|
|
26
|
+
path: string;
|
|
27
|
+
content: string;
|
|
28
|
+
}>;
|
|
29
|
+
/** Dependencies (package.json or pyproject.toml) */
|
|
30
|
+
dependencies?: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Combined review context for fullstack projects
|
|
34
|
+
*/
|
|
35
|
+
export interface FullstackReviewContext {
|
|
36
|
+
frontend?: AppReviewContext;
|
|
37
|
+
backend?: AppReviewContext;
|
|
38
|
+
/** Shared contracts (OpenAPI spec) */
|
|
39
|
+
contracts?: string;
|
|
40
|
+
/** Project-level context */
|
|
41
|
+
projectName: string;
|
|
42
|
+
projectIdea?: string;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Workspace manager class
|
|
46
|
+
*/
|
|
47
|
+
export declare class WorkspaceManager {
|
|
48
|
+
private projectDir;
|
|
49
|
+
private config;
|
|
50
|
+
constructor(projectDir: string);
|
|
51
|
+
/**
|
|
52
|
+
* Get the path to workspace.json
|
|
53
|
+
*/
|
|
54
|
+
private getWorkspacePath;
|
|
55
|
+
/**
|
|
56
|
+
* Check if this is a workspace project
|
|
57
|
+
*/
|
|
58
|
+
isWorkspaceProject(): Promise<boolean>;
|
|
59
|
+
/**
|
|
60
|
+
* Load workspace configuration
|
|
61
|
+
*/
|
|
62
|
+
load(): Promise<WorkspaceConfig | null>;
|
|
63
|
+
/**
|
|
64
|
+
* Save workspace configuration
|
|
65
|
+
*/
|
|
66
|
+
save(config: WorkspaceConfig): Promise<void>;
|
|
67
|
+
/**
|
|
68
|
+
* Get the loaded configuration
|
|
69
|
+
*/
|
|
70
|
+
getConfig(): WorkspaceConfig | null;
|
|
71
|
+
/**
|
|
72
|
+
* Get a specific app configuration
|
|
73
|
+
*/
|
|
74
|
+
getApp(appName: 'frontend' | 'backend'): WorkspaceApp | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* Get the absolute path to an app
|
|
77
|
+
*/
|
|
78
|
+
getAppPath(appName: 'frontend' | 'backend'): string | null;
|
|
79
|
+
/**
|
|
80
|
+
* Get all app names
|
|
81
|
+
*/
|
|
82
|
+
getAppNames(): ('frontend' | 'backend')[];
|
|
83
|
+
/**
|
|
84
|
+
* Get test command for a specific app
|
|
85
|
+
*/
|
|
86
|
+
getTestCommand(appName: 'frontend' | 'backend'): string | null;
|
|
87
|
+
/**
|
|
88
|
+
* Get all test commands (returns object with app names as keys)
|
|
89
|
+
*/
|
|
90
|
+
getAllTestCommands(): Record<string, {
|
|
91
|
+
path: string;
|
|
92
|
+
command: string;
|
|
93
|
+
}>;
|
|
94
|
+
/**
|
|
95
|
+
* Get the combined test-all command
|
|
96
|
+
*/
|
|
97
|
+
getTestAllCommand(): string | null;
|
|
98
|
+
/**
|
|
99
|
+
* Get lint command for a specific app
|
|
100
|
+
*/
|
|
101
|
+
getLintCommand(appName: 'frontend' | 'backend'): string | null;
|
|
102
|
+
/**
|
|
103
|
+
* Get all lint commands
|
|
104
|
+
*/
|
|
105
|
+
getAllLintCommands(): Record<string, {
|
|
106
|
+
path: string;
|
|
107
|
+
command: string;
|
|
108
|
+
}>;
|
|
109
|
+
/**
|
|
110
|
+
* Get the combined lint-all command
|
|
111
|
+
*/
|
|
112
|
+
getLintAllCommand(): string | null;
|
|
113
|
+
/**
|
|
114
|
+
* Get build command for a specific app
|
|
115
|
+
*/
|
|
116
|
+
getBuildCommand(appName: 'frontend' | 'backend'): string | null;
|
|
117
|
+
/**
|
|
118
|
+
* Get all build commands
|
|
119
|
+
*/
|
|
120
|
+
getAllBuildCommands(): Record<string, {
|
|
121
|
+
path: string;
|
|
122
|
+
command: string;
|
|
123
|
+
}>;
|
|
124
|
+
/**
|
|
125
|
+
* Get the combined build-all command
|
|
126
|
+
*/
|
|
127
|
+
getBuildAllCommand(): string | null;
|
|
128
|
+
/**
|
|
129
|
+
* Get dev command for a specific app
|
|
130
|
+
*/
|
|
131
|
+
getDevCommand(appName: 'frontend' | 'backend'): string | null;
|
|
132
|
+
/**
|
|
133
|
+
* Get all dev commands
|
|
134
|
+
*/
|
|
135
|
+
getAllDevCommands(): Record<string, {
|
|
136
|
+
path: string;
|
|
137
|
+
command: string;
|
|
138
|
+
}>;
|
|
139
|
+
/**
|
|
140
|
+
* Get the combined dev-all command (usually docker-compose up)
|
|
141
|
+
*/
|
|
142
|
+
getDevAllCommand(): string | null;
|
|
143
|
+
/**
|
|
144
|
+
* Get docker-compose path
|
|
145
|
+
*/
|
|
146
|
+
getDockerComposePath(): string | null;
|
|
147
|
+
/**
|
|
148
|
+
* Get context roots for an app (files to include in AI context)
|
|
149
|
+
*/
|
|
150
|
+
getContextRoots(appName: 'frontend' | 'backend'): string[];
|
|
151
|
+
/**
|
|
152
|
+
* Get UI spec path (for frontend)
|
|
153
|
+
*/
|
|
154
|
+
getUiSpecPath(): string | null;
|
|
155
|
+
/**
|
|
156
|
+
* Get contracts path (OpenAPI spec)
|
|
157
|
+
*/
|
|
158
|
+
getContractsPath(): string | null;
|
|
159
|
+
/**
|
|
160
|
+
* Get app language
|
|
161
|
+
*/
|
|
162
|
+
getAppLanguage(appName: 'frontend' | 'backend'): 'python' | 'typescript' | null;
|
|
163
|
+
/**
|
|
164
|
+
* Determine which app should handle a file based on path
|
|
165
|
+
*/
|
|
166
|
+
getAppForFile(filePath: string): 'frontend' | 'backend' | null;
|
|
167
|
+
/**
|
|
168
|
+
* Get review context for a specific app
|
|
169
|
+
* Reads key files from contextRoots to provide to AI reviewers
|
|
170
|
+
*/
|
|
171
|
+
getAppReviewContext(appName: 'frontend' | 'backend', options?: {
|
|
172
|
+
maxFiles?: number;
|
|
173
|
+
maxFileSize?: number;
|
|
174
|
+
includeTests?: boolean;
|
|
175
|
+
}): Promise<AppReviewContext | null>;
|
|
176
|
+
/**
|
|
177
|
+
* Get combined review context for fullstack project
|
|
178
|
+
*/
|
|
179
|
+
getFullstackReviewContext(projectName: string, projectIdea?: string, options?: {
|
|
180
|
+
maxFilesPerApp?: number;
|
|
181
|
+
includeTests?: boolean;
|
|
182
|
+
}): Promise<FullstackReviewContext>;
|
|
183
|
+
/**
|
|
184
|
+
* Format app context for AI review prompt
|
|
185
|
+
*/
|
|
186
|
+
formatContextForReview(context: AppReviewContext): string;
|
|
187
|
+
/**
|
|
188
|
+
* Format fullstack context for review prompt
|
|
189
|
+
*/
|
|
190
|
+
formatFullstackContextForReview(context: FullstackReviewContext): string;
|
|
191
|
+
/**
|
|
192
|
+
* Determine review app target based on plan content
|
|
193
|
+
* Analyzes plan text to determine if it's frontend, backend, or unified
|
|
194
|
+
*/
|
|
195
|
+
categorizeByPlanContent(planContent: string): ReviewAppTarget;
|
|
196
|
+
/**
|
|
197
|
+
* Read directory recursively and return file contents
|
|
198
|
+
*/
|
|
199
|
+
private readDirectoryRecursive;
|
|
200
|
+
/**
|
|
201
|
+
* Find test files in a directory
|
|
202
|
+
*/
|
|
203
|
+
private findTestFiles;
|
|
204
|
+
/**
|
|
205
|
+
* Get feedback document paths for workspace
|
|
206
|
+
*/
|
|
207
|
+
getFeedbackPaths(): {
|
|
208
|
+
master: {
|
|
209
|
+
unified: string;
|
|
210
|
+
frontend: string;
|
|
211
|
+
backend: string;
|
|
212
|
+
};
|
|
213
|
+
getMilestonePaths: (milestoneId: string) => {
|
|
214
|
+
unified: string;
|
|
215
|
+
frontend: string;
|
|
216
|
+
backend: string;
|
|
217
|
+
};
|
|
218
|
+
getTaskPaths: (milestoneId: string, taskId: string) => {
|
|
219
|
+
unified: string;
|
|
220
|
+
frontend: string;
|
|
221
|
+
backend: string;
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* Load workspace configuration from a project directory
|
|
227
|
+
*
|
|
228
|
+
* @param projectDir - Project directory
|
|
229
|
+
* @returns WorkspaceConfig or null if not a workspace project
|
|
230
|
+
*/
|
|
231
|
+
export declare function loadWorkspace(projectDir: string): Promise<WorkspaceConfig | null>;
|
|
232
|
+
/**
|
|
233
|
+
* Save workspace configuration to a project directory
|
|
234
|
+
*
|
|
235
|
+
* @param projectDir - Project directory
|
|
236
|
+
* @param config - Workspace configuration
|
|
237
|
+
*/
|
|
238
|
+
export declare function saveWorkspace(projectDir: string, config: WorkspaceConfig): Promise<void>;
|
|
239
|
+
/**
|
|
240
|
+
* Check if a directory is a workspace project
|
|
241
|
+
*
|
|
242
|
+
* @param projectDir - Project directory
|
|
243
|
+
* @returns True if workspace project
|
|
244
|
+
*/
|
|
245
|
+
export declare function isWorkspaceProject(projectDir: string): Promise<boolean>;
|
|
246
|
+
/**
|
|
247
|
+
* Get app context for AI code generation
|
|
248
|
+
*
|
|
249
|
+
* @param projectDir - Project directory
|
|
250
|
+
* @param appName - App name
|
|
251
|
+
* @returns Object with app info and context files
|
|
252
|
+
*/
|
|
253
|
+
export declare function getAppContext(projectDir: string, appName: 'frontend' | 'backend'): Promise<{
|
|
254
|
+
app: WorkspaceApp | undefined;
|
|
255
|
+
language: 'python' | 'typescript' | null;
|
|
256
|
+
contextRoots: string[];
|
|
257
|
+
path: string | null;
|
|
258
|
+
} | null>;
|
|
259
|
+
/**
|
|
260
|
+
* Get test commands for workspace
|
|
261
|
+
*
|
|
262
|
+
* @param projectDir - Project directory
|
|
263
|
+
* @returns Test commands per app and combined command
|
|
264
|
+
*/
|
|
265
|
+
export declare function getTestCommands(projectDir: string): Promise<{
|
|
266
|
+
perApp: Record<string, {
|
|
267
|
+
path: string;
|
|
268
|
+
command: string;
|
|
269
|
+
}>;
|
|
270
|
+
combined: string | null;
|
|
271
|
+
} | null>;
|
|
272
|
+
/**
|
|
273
|
+
* Get build commands for workspace
|
|
274
|
+
*
|
|
275
|
+
* @param projectDir - Project directory
|
|
276
|
+
* @returns Build commands per app and combined command
|
|
277
|
+
*/
|
|
278
|
+
export declare function getBuildCommands(projectDir: string): Promise<{
|
|
279
|
+
perApp: Record<string, {
|
|
280
|
+
path: string;
|
|
281
|
+
command: string;
|
|
282
|
+
}>;
|
|
283
|
+
combined: string | null;
|
|
284
|
+
} | null>;
|
|
285
|
+
/**
|
|
286
|
+
* Get app-specific review context
|
|
287
|
+
*
|
|
288
|
+
* @param projectDir - Project directory
|
|
289
|
+
* @param appName - App name (frontend or backend)
|
|
290
|
+
* @returns Review context with source files and metadata
|
|
291
|
+
*/
|
|
292
|
+
export declare function getAppReviewContext(projectDir: string, appName: 'frontend' | 'backend'): Promise<AppReviewContext | null>;
|
|
293
|
+
/**
|
|
294
|
+
* Get fullstack review context for AI reviews
|
|
295
|
+
*
|
|
296
|
+
* @param projectDir - Project directory
|
|
297
|
+
* @param projectName - Project name
|
|
298
|
+
* @param projectIdea - Original project idea
|
|
299
|
+
* @returns Combined review context for both apps
|
|
300
|
+
*/
|
|
301
|
+
export declare function getFullstackReviewContext(projectDir: string, projectName: string, projectIdea?: string): Promise<FullstackReviewContext | null>;
|
|
302
|
+
/**
|
|
303
|
+
* Format context for AI review prompt
|
|
304
|
+
*
|
|
305
|
+
* @param projectDir - Project directory
|
|
306
|
+
* @param projectName - Project name
|
|
307
|
+
* @param projectIdea - Original project idea
|
|
308
|
+
* @returns Formatted string for AI review
|
|
309
|
+
*/
|
|
310
|
+
export declare function formatContextForAIReview(projectDir: string, projectName: string, projectIdea?: string): Promise<string | null>;
|
|
311
|
+
/**
|
|
312
|
+
* Categorize a task/plan as frontend, backend, or unified
|
|
313
|
+
*
|
|
314
|
+
* @param projectDir - Project directory
|
|
315
|
+
* @param planContent - Plan or task content to analyze
|
|
316
|
+
* @returns App target category
|
|
317
|
+
*/
|
|
318
|
+
export declare function categorizePlanContent(projectDir: string, planContent: string): Promise<ReviewAppTarget>;
|
|
319
|
+
/**
|
|
320
|
+
* Get feedback paths for a workspace project
|
|
321
|
+
*
|
|
322
|
+
* @param projectDir - Project directory
|
|
323
|
+
* @returns Object with feedback path getters
|
|
324
|
+
*/
|
|
325
|
+
export declare function getWorkspaceFeedbackPaths(projectDir: string): Promise<{
|
|
326
|
+
master: {
|
|
327
|
+
unified: string;
|
|
328
|
+
frontend: string;
|
|
329
|
+
backend: string;
|
|
330
|
+
};
|
|
331
|
+
getMilestonePaths: (milestoneId: string) => {
|
|
332
|
+
unified: string;
|
|
333
|
+
frontend: string;
|
|
334
|
+
backend: string;
|
|
335
|
+
};
|
|
336
|
+
getTaskPaths: (milestoneId: string, taskId: string) => {
|
|
337
|
+
unified: string;
|
|
338
|
+
frontend: string;
|
|
339
|
+
backend: string;
|
|
340
|
+
};
|
|
341
|
+
} | null>;
|
|
342
|
+
//# sourceMappingURL=workspace-manager.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workspace-manager.d.ts","sourceRoot":"","sources":["../../src/workflow/workspace-manager.ts"],"names":[],"mappings":"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"}
|