coaia-visualizer 1.6.3 → 1.6.5
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/Dockerfile +61 -0
- package/Dockerfile.app +50 -0
- package/README.md +2 -1
- package/cli.ts +11 -5
- package/components/asterion-foundation-card.tsx +175 -0
- package/components/asterion-session-context-badge.tsx +122 -0
- package/components/asterion-session-lineage-card.tsx +119 -0
- package/components/chart-detail-editable.tsx +2 -0
- package/components/chart-detail.tsx +9 -1
- package/components/edit-action-step.tsx +2 -0
- package/components/github-provenance.tsx +226 -0
- package/components/metadata-projections.tsx +50 -16
- package/components/narrative-beats.tsx +16 -3
- package/components/relation-graph.tsx +91 -27
- package/dist/cli.js +9 -5
- package/docker-build-push.sh +20 -0
- package/docker-entrypoint.sh +27 -0
- package/index.tsx +39 -2
- package/lib/asterion-metadata.ts +673 -0
- package/lib/chart-editor.ts +8 -3
- package/lib/github-provenance.ts +316 -0
- package/lib/jsonl-parser.ts +7 -2
- package/lib/types.ts +112 -2
- package/mcp/test_mcp/.gemini/settings.json +18 -0
- package/next-env.d.ts +1 -1
- package/package.json +14 -13
- package/rispecs/README.md +170 -0
- package/rispecs/accountability-responsibility.rispec.md +110 -0
- package/rispecs/api-mcp-interface.spec.md +287 -0
- package/rispecs/app.spec.md +364 -0
- package/rispecs/chart-editing-workflow.spec.md +297 -0
- package/rispecs/chart-visualization-hierarchy.spec.md +235 -0
- package/rispecs/cli-mode.spec.md +224 -0
- package/rispecs/github-project-runtime-memory-integration.spec.md +381 -0
- package/rispecs/jsonl-parsing-data-types.spec.md +243 -0
- package/rispecs/narrative-beats-display.spec.md +189 -0
- package/rispecs/pde-integration.spec.md +280 -0
- package/rispecs/planning-integration.spec.md +329 -0
- package/rispecs/relation-graph-visualization.spec.md +171 -0
- package/rispecs/relation-to-mcp-structural-thinking.kin.md +65 -0
- package/rispecs/ui-component-library.spec.md +258 -0
- package/mcp/dist/api-client.d.ts +0 -138
- package/mcp/dist/api-client.d.ts.map +0 -1
- package/mcp/dist/api-client.js +0 -115
- package/mcp/dist/api-client.js.map +0 -1
- package/mcp/dist/index.d.ts +0 -2
- package/mcp/dist/index.d.ts.map +0 -1
- package/mcp/dist/index.js +0 -286
- package/mcp/dist/index.js.map +0 -1
- package/mcp/dist/tools/index.d.ts +0 -18
- package/mcp/dist/tools/index.d.ts.map +0 -1
- package/mcp/dist/tools/index.js +0 -322
- package/mcp/dist/tools/index.js.map +0 -1
- package/mcp/package-lock.json +0 -210
package/index.tsx
CHANGED
|
@@ -3,15 +3,49 @@
|
|
|
3
3
|
|
|
4
4
|
// Types
|
|
5
5
|
export type {
|
|
6
|
+
ArtifactDiffEntry,
|
|
7
|
+
Chart,
|
|
6
8
|
EntityRecord,
|
|
7
|
-
|
|
9
|
+
FoundationMetadata,
|
|
10
|
+
FoundationProjection,
|
|
8
11
|
JSONLRecord,
|
|
9
|
-
Chart,
|
|
10
12
|
ParsedData,
|
|
13
|
+
ParsedIssueReference,
|
|
14
|
+
RelationRecord,
|
|
15
|
+
SessionLineageBranchProjection,
|
|
16
|
+
SessionLineageGroupProjection,
|
|
17
|
+
SessionLineageMetadata,
|
|
18
|
+
SessionLineageProjection,
|
|
11
19
|
} from "./lib/types"
|
|
12
20
|
|
|
13
21
|
// JSONL Parser
|
|
14
22
|
export { parseJSONL, organizeData, getChartSummary, getChartProgress } from "./lib/jsonl-parser"
|
|
23
|
+
export { extractAsterionMetadata, getNarrativeBeatAnchorId, parseFoundationMetadata, parseSessionLineageMetadata } from "./lib/asterion-metadata"
|
|
24
|
+
|
|
25
|
+
// GitHub provenance helpers
|
|
26
|
+
export {
|
|
27
|
+
GITHUB_BRIDGE_RELATION_TYPES,
|
|
28
|
+
GITHUB_PROJECT_FIELD_KEYS,
|
|
29
|
+
GITHUB_SYNC_STATES,
|
|
30
|
+
formatGithubIssueRef,
|
|
31
|
+
formatProjectItemRef,
|
|
32
|
+
getGithubBridgeRelationType,
|
|
33
|
+
getGithubEntityProvenance,
|
|
34
|
+
getGithubIssueRef,
|
|
35
|
+
getGithubProjectItems,
|
|
36
|
+
getGithubSource,
|
|
37
|
+
getGithubSyncState,
|
|
38
|
+
getProjectFieldEntries,
|
|
39
|
+
} from "./lib/github-provenance"
|
|
40
|
+
export type {
|
|
41
|
+
GithubBridgeRelationType,
|
|
42
|
+
GithubEntityProvenance,
|
|
43
|
+
GithubIssueRef,
|
|
44
|
+
GithubProjectFieldEntry,
|
|
45
|
+
GithubProjectItemRef,
|
|
46
|
+
GithubSourceProvenance,
|
|
47
|
+
GithubSyncState,
|
|
48
|
+
} from "./lib/github-provenance"
|
|
15
49
|
|
|
16
50
|
// Utilities
|
|
17
51
|
export { cn } from "./lib/utils"
|
|
@@ -28,6 +62,9 @@ export { ChartDetail } from "./components/chart-detail"
|
|
|
28
62
|
export { DataStats } from "./components/data-stats"
|
|
29
63
|
export { CreateChartForm } from "./components/create-chart-form"
|
|
30
64
|
export { NarrativeBeats } from "./components/narrative-beats"
|
|
65
|
+
export { AsterionFoundationCard } from "./components/asterion-foundation-card"
|
|
66
|
+
export { AsterionSessionLineageCard } from "./components/asterion-session-lineage-card"
|
|
67
|
+
export { ActionStepIssueBadge, ProjectSourceBadge, SyncStatePill } from "./components/github-provenance"
|
|
31
68
|
export { LiveIndicator } from "./components/live-indicator"
|
|
32
69
|
export { ThemeToggle } from "./components/theme-toggle"
|
|
33
70
|
export { EditDesiredOutcome } from "./components/edit-desired-outcome"
|