Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ The dev server is pinned to [http://localhost:3020](http://localhost:3020) to av

For a fast portfolio review, the dashboard opens with a **Guided incident replay** rail directly under the header. It turns the surface into a self-explaining demo — a first-run reviewer can follow one incident end to end in well under 90 seconds.

The fastest shareable entry point is [`/cockpit?replay=alibaba-p95&step=0`](https://signalops.cc/cockpit?replay=alibaba-p95&step=0). The home page secondary CTA now opens that guided replay directly instead of sending reviewers to an unframed incident detail first.

1. Pick a scenario — **Alibaba p95 spike**, **FLUX retry storm**, or **Qwen cost bleed**. Each is backed by the existing mock data, not a separate mock.
2. Step through the rail. Every step drives the real controls (no dead overlay):
- **Signal detected** — selects the incident and scrolls to the investigation workbench.
Expand All @@ -58,6 +60,7 @@ Each step also surfaces a short "technical proof" line calling out what it exerc

- `/` opens the product overview and operating model.
- `/cockpit` opens the live operations dashboard.
- `/cockpit?replay=alibaba-p95&step=0` opens the guided replay from the first step.
- `/incidents/inc_411` opens an incident investigation route.

## Portfolio Notes
Expand Down
4 changes: 2 additions & 2 deletions src/components/product-home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export function ProductHome() {
<ArrowRight className="ml-2 size-4" />
</Link>
<Link
href="/incidents/inc_411"
href="/cockpit?replay=alibaba-p95&step=0"
className={cn(
buttonVariants({ variant: "outline", size: "lg" }),
"h-11 rounded-lg border-[var(--border)] bg-white/90 px-5 text-[13px] font-semibold text-[var(--text)] shadow-sm hover:bg-white",
Expand All @@ -150,7 +150,7 @@ export function ProductHome() {
<span className="mr-2 grid size-5 place-items-center rounded-full border border-[var(--border)] text-[var(--accent)]">
<Play className="size-3 fill-current" />
</span>
See it in action
Watch guided replay
</Link>
</motion.div>
<motion.div variants={itemVariants} className="mt-14">
Expand Down