create-project-arch 1.0.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.
Files changed (90) hide show
  1. package/README.md +58 -0
  2. package/dist/cli.js +232 -0
  3. package/dist/cli.test.js +8 -0
  4. package/package.json +29 -0
  5. package/templates/arch-ui/.arch/edges/decision_to_domain.json +4 -0
  6. package/templates/arch-ui/.arch/edges/milestone_to_task.json +4 -0
  7. package/templates/arch-ui/.arch/edges/task_to_decision.json +4 -0
  8. package/templates/arch-ui/.arch/edges/task_to_module.json +4 -0
  9. package/templates/arch-ui/.arch/graph.json +17 -0
  10. package/templates/arch-ui/.arch/nodes/decisions.json +4 -0
  11. package/templates/arch-ui/.arch/nodes/domains.json +4 -0
  12. package/templates/arch-ui/.arch/nodes/milestones.json +4 -0
  13. package/templates/arch-ui/.arch/nodes/modules.json +4 -0
  14. package/templates/arch-ui/.arch/nodes/tasks.json +4 -0
  15. package/templates/arch-ui/app/api/architecture/map/route.ts +13 -0
  16. package/templates/arch-ui/app/api/decisions/route.ts +23 -0
  17. package/templates/arch-ui/app/api/domain-docs/route.ts +89 -0
  18. package/templates/arch-ui/app/api/domains/route.ts +10 -0
  19. package/templates/arch-ui/app/api/graph/route.ts +16 -0
  20. package/templates/arch-ui/app/api/health/route.ts +44 -0
  21. package/templates/arch-ui/app/api/node-files/route.ts +173 -0
  22. package/templates/arch-ui/app/api/phases/route.ts +10 -0
  23. package/templates/arch-ui/app/api/route.ts +22 -0
  24. package/templates/arch-ui/app/api/search/route.ts +56 -0
  25. package/templates/arch-ui/app/api/task-doc/[taskId]/route.ts +60 -0
  26. package/templates/arch-ui/app/api/tasks/route.ts +36 -0
  27. package/templates/arch-ui/app/api/trace/file/route.ts +40 -0
  28. package/templates/arch-ui/app/api/trace/task/[taskId]/route.ts +12 -0
  29. package/templates/arch-ui/app/architecture/page.tsx +5 -0
  30. package/templates/arch-ui/app/globals.css +240 -0
  31. package/templates/arch-ui/app/health/page.tsx +48 -0
  32. package/templates/arch-ui/app/layout.tsx +19 -0
  33. package/templates/arch-ui/app/page.tsx +5 -0
  34. package/templates/arch-ui/app/work/page.tsx +265 -0
  35. package/templates/arch-ui/components/app-shell.tsx +171 -0
  36. package/templates/arch-ui/components/error-boundary.tsx +53 -0
  37. package/templates/arch-ui/components/graph/arch-node.tsx +77 -0
  38. package/templates/arch-ui/components/graph/build-graph-from-dataset.ts +196 -0
  39. package/templates/arch-ui/components/graph/build-initial-graph.ts +245 -0
  40. package/templates/arch-ui/components/graph/graph-context-menu.tsx +84 -0
  41. package/templates/arch-ui/components/graph/graph-doc-panel.tsx +46 -0
  42. package/templates/arch-ui/components/graph/graph-types.ts +82 -0
  43. package/templates/arch-ui/components/graph/use-auto-layout.ts +65 -0
  44. package/templates/arch-ui/components/graph/use-connection-validation.ts +62 -0
  45. package/templates/arch-ui/components/graph/use-flow-persistence.ts +48 -0
  46. package/templates/arch-ui/components/graph-canvas.tsx +670 -0
  47. package/templates/arch-ui/components/health-panel.tsx +49 -0
  48. package/templates/arch-ui/components/inspector-context.tsx +35 -0
  49. package/templates/arch-ui/components/inspector.tsx +895 -0
  50. package/templates/arch-ui/components/markdown-viewer.tsx +74 -0
  51. package/templates/arch-ui/components/sidebar.tsx +531 -0
  52. package/templates/arch-ui/components/topbar.tsx +187 -0
  53. package/templates/arch-ui/components/work-table.tsx +57 -0
  54. package/templates/arch-ui/components/workspace-context.tsx +274 -0
  55. package/templates/arch-ui/eslint.config.js +2 -0
  56. package/templates/arch-ui/global.d.ts +1 -0
  57. package/templates/arch-ui/lib/api.ts +93 -0
  58. package/templates/arch-ui/lib/arch-model.ts +113 -0
  59. package/templates/arch-ui/lib/graph-dataset.ts +756 -0
  60. package/templates/arch-ui/lib/graph-schema.ts +408 -0
  61. package/templates/arch-ui/lib/project-root.ts +52 -0
  62. package/templates/arch-ui/lib/types.ts +116 -0
  63. package/templates/arch-ui/next-env.d.ts +6 -0
  64. package/templates/arch-ui/next.config.js +17 -0
  65. package/templates/arch-ui/package.json +38 -0
  66. package/templates/arch-ui/postcss.config.mjs +6 -0
  67. package/templates/arch-ui/tailwind.config.ts +11 -0
  68. package/templates/arch-ui/tsconfig.json +21 -0
  69. package/templates/ui-package/eslint.config.mjs +4 -0
  70. package/templates/ui-package/package.json +26 -0
  71. package/templates/ui-package/src/accordion.tsx +10 -0
  72. package/templates/ui-package/src/badge.tsx +12 -0
  73. package/templates/ui-package/src/button.tsx +32 -0
  74. package/templates/ui-package/src/card.tsx +22 -0
  75. package/templates/ui-package/src/code.tsx +6 -0
  76. package/templates/ui-package/src/command.tsx +18 -0
  77. package/templates/ui-package/src/dialog.tsx +6 -0
  78. package/templates/ui-package/src/dropdown-menu.tsx +10 -0
  79. package/templates/ui-package/src/input.tsx +6 -0
  80. package/templates/ui-package/src/navigation-menu.tsx +6 -0
  81. package/templates/ui-package/src/scroll-area.tsx +6 -0
  82. package/templates/ui-package/src/select.tsx +6 -0
  83. package/templates/ui-package/src/separator.tsx +6 -0
  84. package/templates/ui-package/src/sheet.tsx +6 -0
  85. package/templates/ui-package/src/skeleton.tsx +6 -0
  86. package/templates/ui-package/src/table.tsx +26 -0
  87. package/templates/ui-package/src/tabs.tsx +14 -0
  88. package/templates/ui-package/src/toggle-group.tsx +10 -0
  89. package/templates/ui-package/src/utils.ts +3 -0
  90. package/templates/ui-package/tsconfig.json +10 -0
@@ -0,0 +1,49 @@
1
+ "use client";
2
+
3
+ import { Accordion, AccordionItem } from "@repo/ui/accordion";
4
+ import { Badge } from "@repo/ui/badge";
5
+ import { Card, CardContent, CardHeader, CardTitle } from "@repo/ui/card";
6
+ import { CheckData } from "../lib/types";
7
+
8
+ type HealthPanelProps = {
9
+ health: CheckData;
10
+ onInspect: (label: string, status: string) => void;
11
+ };
12
+
13
+ const checks = ["Domains", "Modules", "Imports", "Tasks", "Decisions", "Graph Schema"] as const;
14
+
15
+ export function HealthPanel({ health, onInspect }: HealthPanelProps) {
16
+ const status = health.ok ? (health.warnings.length > 0 ? "Warning" : "OK") : "Drift";
17
+
18
+ return (
19
+ <div className="grid grid-cols-1 gap-3 md:grid-cols-2">
20
+ {checks.map((check) => (
21
+ <Card key={check} className="cursor-pointer" onClick={() => onInspect(check, status)}>
22
+ <CardHeader>
23
+ <CardTitle>{check}</CardTitle>
24
+ </CardHeader>
25
+ <CardContent>
26
+ <Badge
27
+ variant={status === "OK" ? "success" : status === "Warning" ? "warning" : "danger"}
28
+ >
29
+ Status: {status}
30
+ </Badge>
31
+ </CardContent>
32
+ </Card>
33
+ ))}
34
+
35
+ {health.warnings.length > 0 ? (
36
+ <Accordion>
37
+ <AccordionItem>
38
+ <summary>Warnings ({health.warnings.length})</summary>
39
+ <div className="mt-1 grid gap-1.5">
40
+ {health.warnings.map((warning) => (
41
+ <p key={warning}>{warning}</p>
42
+ ))}
43
+ </div>
44
+ </AccordionItem>
45
+ </Accordion>
46
+ ) : null}
47
+ </div>
48
+ );
49
+ }
@@ -0,0 +1,35 @@
1
+ "use client";
2
+
3
+ import { createContext, ReactNode, useContext, useMemo, useState } from "react";
4
+
5
+ type InspectorType = "domain" | "decision" | "phase" | "milestone" | "task" | "file" | "health";
6
+
7
+ export type InspectorSelection = {
8
+ type: InspectorType;
9
+ title: string;
10
+ id?: string;
11
+ metadata?: Array<{ label: string; value: string }>;
12
+ links?: string[];
13
+ markdown?: string;
14
+ };
15
+
16
+ type InspectorContextValue = {
17
+ selection: InspectorSelection | null;
18
+ setSelection: (selection: InspectorSelection | null) => void;
19
+ };
20
+
21
+ const InspectorContext = createContext<InspectorContextValue | null>(null);
22
+
23
+ export function InspectorProvider({ children }: { children: ReactNode }) {
24
+ const [selection, setSelection] = useState<InspectorSelection | null>(null);
25
+ const value = useMemo(() => ({ selection, setSelection }), [selection]);
26
+ return <InspectorContext.Provider value={value}>{children}</InspectorContext.Provider>;
27
+ }
28
+
29
+ export function useInspector() {
30
+ const value = useContext(InspectorContext);
31
+ if (!value) {
32
+ throw new Error("useInspector must be used within InspectorProvider");
33
+ }
34
+ return value;
35
+ }