Commit f6ef78f
feat: set up a project on add (scaffold + analyze with Claude), observably
Adding a repo that has no .webmux.yaml now runs setup automatically instead
of registering an unconfigured project: scaffold a starter .webmux.yaml →
analyze the repo with Claude to fill it in → register. Each phase is surfaced
in the dashboard and the CLI ("Creating .webmux.yaml" → "Analyzing project
structure with Claude" → ready).
Backend:
- ProjectInitTracker + runProjectInit (services/project-init-service.ts):
hub-level, keyed by repo path; phases creating_config → analyzing → ready,
or failed. Analysis is best-effort (skipped if no agent on PATH, non-fatal
on error) so the starter config always ships. Terminal states TTL-expire.
- apiAddProject: repos with config (or already served) register immediately;
repos without kick off the async job and return { initializing: true }.
New GET /api/projects/init reports progress. The setup uses the lifted
init-authoring helpers with a timeout so a hung agent can't stall it.
Contract: AddProjectResponse ({ initializing, path, project }), ProjectInit
phase/state schemas, and the projectInits endpoint.
Frontend: setUpProject() POSTs then polls projectInits, reporting phases;
EmptyProjects + ProjectSwitcher show the steps and open the project when ready.
CLI: `webmux project add` on an unconfigured repo prints the same phases via a
DI-seamed awaitProjectSetup(), then the added line. Parity with the UI.
Tests cover the tracker, orchestration (skip/best-effort/failure), and the CLI
poller; init-authoring gains a run timeout.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent 542edb8 commit f6ef78f
14 files changed
Lines changed: 581 additions & 45 deletions
File tree
- backend/src
- __tests__
- services
- bin/src
- frontend/src
- lib
- packages/api-contract/src
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
57 | 71 | | |
58 | 72 | | |
59 | 73 | | |
| |||
118 | 132 | | |
119 | 133 | | |
120 | 134 | | |
121 | | - | |
| 135 | + | |
122 | 136 | | |
123 | 137 | | |
124 | 138 | | |
| |||
2328 | 2342 | | |
2329 | 2343 | | |
2330 | 2344 | | |
| 2345 | + | |
| 2346 | + | |
| 2347 | + | |
2331 | 2348 | | |
2332 | 2349 | | |
2333 | 2350 | | |
| |||
2341 | 2358 | | |
2342 | 2359 | | |
2343 | 2360 | | |
| 2361 | + | |
| 2362 | + | |
| 2363 | + | |
| 2364 | + | |
2344 | 2365 | | |
2345 | | - | |
2346 | | - | |
2347 | | - | |
2348 | | - | |
2349 | | - | |
2350 | | - | |
2351 | | - | |
2352 | | - | |
| 2366 | + | |
2353 | 2367 | | |
2354 | 2368 | | |
| 2369 | + | |
| 2370 | + | |
| 2371 | + | |
| 2372 | + | |
| 2373 | + | |
| 2374 | + | |
| 2375 | + | |
| 2376 | + | |
| 2377 | + | |
| 2378 | + | |
| 2379 | + | |
| 2380 | + | |
| 2381 | + | |
| 2382 | + | |
| 2383 | + | |
| 2384 | + | |
| 2385 | + | |
| 2386 | + | |
| 2387 | + | |
| 2388 | + | |
| 2389 | + | |
| 2390 | + | |
| 2391 | + | |
| 2392 | + | |
| 2393 | + | |
| 2394 | + | |
| 2395 | + | |
| 2396 | + | |
| 2397 | + | |
| 2398 | + | |
| 2399 | + | |
| 2400 | + | |
2355 | 2401 | | |
2356 | 2402 | | |
2357 | 2403 | | |
2358 | 2404 | | |
2359 | 2405 | | |
2360 | 2406 | | |
2361 | 2407 | | |
2362 | | - | |
2363 | | - | |
| 2408 | + | |
| 2409 | + | |
| 2410 | + | |
| 2411 | + | |
| 2412 | + | |
| 2413 | + | |
| 2414 | + | |
| 2415 | + | |
| 2416 | + | |
| 2417 | + | |
| 2418 | + | |
| 2419 | + | |
| 2420 | + | |
| 2421 | + | |
| 2422 | + | |
| 2423 | + | |
| 2424 | + | |
| 2425 | + | |
| 2426 | + | |
| 2427 | + | |
| 2428 | + | |
| 2429 | + | |
| 2430 | + | |
2364 | 2431 | | |
2365 | | - | |
2366 | | - | |
2367 | | - | |
2368 | | - | |
| 2432 | + | |
| 2433 | + | |
| 2434 | + | |
| 2435 | + | |
| 2436 | + | |
| 2437 | + | |
| 2438 | + | |
2369 | 2439 | | |
2370 | 2440 | | |
2371 | 2441 | | |
| |||
2455 | 2525 | | |
2456 | 2526 | | |
2457 | 2527 | | |
| 2528 | + | |
| 2529 | + | |
| 2530 | + | |
2458 | 2531 | | |
2459 | 2532 | | |
2460 | 2533 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
44 | 47 | | |
45 | 48 | | |
46 | 49 | | |
| |||
506 | 509 | | |
507 | 510 | | |
508 | 511 | | |
509 | | - | |
510 | | - | |
511 | | - | |
512 | | - | |
513 | | - | |
| 512 | + | |
| 513 | + | |
| 514 | + | |
| 515 | + | |
| 516 | + | |
| 517 | + | |
| 518 | + | |
| 519 | + | |
| 520 | + | |
| 521 | + | |
| 522 | + | |
| 523 | + | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | + | |
| 528 | + | |
| 529 | + | |
| 530 | + | |
| 531 | + | |
| 532 | + | |
| 533 | + | |
| 534 | + | |
| 535 | + | |
| 536 | + | |
514 | 537 | | |
515 | 538 | | |
516 | 539 | | |
| |||
0 commit comments