Updated chart

This commit is contained in:
2026-02-16 13:23:04 +00:00
parent 2e242a650a
commit 4dfb1607c1
21 changed files with 782 additions and 416 deletions
+25 -25
View File
@@ -5,7 +5,7 @@ event_loop:
prompt_file: "PROMPT.md"
starting_event: "work.start"
completion_promise: "LOOP_COMPLETE"
max_iterations: 40
max_iterations: 35
backpressure:
gates:
@@ -21,61 +21,61 @@ backpressure:
hats:
planner:
name: "Pathway Planner"
description: "Diagnoses hover/timeline issues and plans a unified data model + UI update."
name: "Constellation Planner"
description: "Plans chart interaction, timeline parity, and design-token alignment changes."
triggers: ["work.start", "review.changes_requested"]
publishes: ["plan.ready"]
instructions: |
Read PROMPT.md first.
Your role is planning only:
- Inspect the graph hover flow, timeline mapping logic, and work/education rendering.
- Determine whether date mismatch is a rendering bug, duplicated datasets, or both.
- Write/update .ralph/plan.md with concrete file-level steps.
- Define the target single source-of-truth schema for experience + education items.
- Inspect chart pointer/focus interaction layers and hover event flow.
- Inspect timeline data exports and role/education mapping used by constellation + timeline UI.
- Write/update .ralph/plan.md with concrete file-level steps and acceptance checks.
- Define clear scope boundaries so the builder avoids unrelated refactors.
- If triggered by review.changes_requested, read .ralph/review.md and revise the plan.
Do not implement code.
Emit plan.ready when the plan is ready.
builder:
name: "Pathway Builder"
description: "Implements graph interaction fixes, unified data flow, and pathway card layout updates."
name: "Constellation Builder"
description: "Implements chart hover fixes, timeline/data alignment, and token-consistent styling."
triggers: ["plan.ready"]
publishes: ["build.done"]
instructions: |
Read PROMPT.md and .ralph/plan.md first.
Implement the planned work end-to-end:
- Make hover interactions consistent between graph and related cards.
- Eliminate visual node jitter/repositioning caused by unnecessary re-renders.
- Align timeline dates with the same canonical data used by cards.
- Move to one source-of-truth dataset for role/education metadata and skills.
- Feed aggregated high-frequency skills into sidebar tag rendering.
- Apply the requested career/education card intervention-pill and alignment updates.
- Remove obsolete duplicate education section once unified card layout is in place.
- Fix pointer hover reliability in the constellation chart.
- Resolve interaction-layer conflicts between accessibility overlay controls and SVG node events.
- Keep touch and keyboard flows working.
- Align timeline mapping/order semantics between chart and work-experience surfaces.
- Clarify timeline data exports (career/education/combined) where needed for correctness.
- Align font/token usage with the site design system and remove invalid token usage.
- Resolve or remove divergent/duplicate timeline pathing that causes inconsistent behavior.
Keep project conventions intact and avoid unrelated refactors.
Update .ralph/plan.md as steps are completed.
Emit build.done exactly once when implementation is complete and lint/typecheck/build pass.
reviewer:
name: "Pathway Reviewer"
description: "Validates behavior, data consistency, and UI layout against PROMPT requirements."
name: "Constellation Reviewer"
description: "Validates behavior, parity, accessibility flows, and build quality against PROMPT requirements."
triggers: ["build.done"]
publishes: ["review.changes_requested"]
instructions: |
Read PROMPT.md (and .ralph/plan.md if needed), then review the final implementation.
Validate all success criteria:
- Hover parity across graph and cards
- No graph jitter/reflow artifacts on hover
- Timeline/card date consistency from one canonical data source
- Correct career/education card layout and intervention pills
- Removal of duplicate standalone education section
- Sidebar tag population from shared skill data
- Pointer hover reliability in chart nodes
- No pointer/focus layering conflicts
- Timeline parity between chart and work-experience surfaces
- Coherent cross-highlighting behavior
- Font/token consistency for chart and timeline-adjacent UI
- Touch and keyboard behavior preserved
- Lint/typecheck/build passing
Write findings to .ralph/review.md.
Write findings and manual verification notes to .ralph/review.md.
If anything is incomplete or incorrect, emit review.changes_requested with specific fixes.
If all criteria pass, print LOOP_COMPLETE and stop.