open-design/design-templates/kanban-board/example.html
Tom Huang b5eb8c1647
feat: generic skills + split skills/design-templates + finalize-design API (#955)
* feat: general-purpose skills with @-mention composition and user import

Lift skills from "one mode-bound skill per project" to a generic capability
the user can compose per turn:

- Daemon: scan multiple skill roots (user-skills under runtime data, then
  the bundled `skills/`); user-imported skills can shadow built-ins by id.
- New `POST /api/skills/import` and `DELETE /api/skills/:id` endpoints,
  with CONFLICT/BAD_REQUEST/NOT_FOUND error codes and built-in delete
  protection.
- ChatRequest gains `skillIds: string[]`; the chat run concatenates each
  picked skill's body (and merges craftRequires) into the system prompt
  for that turn only — the project's persistent `skillId` is untouched.
- Web composer: `@` popover now lists skills alongside project files;
  picks render as removable chips above the textarea and ride along with
  the request as `skillIds`.
- Settings → Library: import form (name/description/triggers/body),
  per-card delete for user skills, "user" origin badge.

* chore(web): drop welcome pet teaser + add ds→prompt-template mapping util

- SettingsDialog: remove the inline pet adoption teaser from the welcome
  panel so the first-run modal stays focused on configuration.
- New `inferPromptTemplateCategoriesForDs(ds)` helper that maps a design
  system's authored metadata to prompt-template gallery categories.
  Imported by the design-system gallery wiring on a sibling branch; no
  callers in this branch yet.

* feat: split skills/design-templates and add finalize-design API

Phase 0 of the skills/design-templates refactor (specs/current/
skills-and-design-templates.md):

- Move ~104 rendering catalogue entries from skills/ to design-templates/
  and keep skills/ for the small set of functional skills that *do work*
  on user input (utilities, briefs, packagers).
- Add design-templates/AGENTS.md and skills/AGENTS.md describing the
  contract, and a brand-agnostic craft/ surface for opt-in craft rules.
- Daemon: add DESIGN_TEMPLATES_DIR / USER_DESIGN_TEMPLATES_DIR roots and
  an /api/design-templates surface mirroring /api/skills. Asset/example
  routes still span both registries so existing srcdoc URLs keep
  resolving across the rename.
- Web: split LibrarySection into SkillsSection + DesignSystemsSection,
  rename the EntryView "Examples" tab to "Templates", and update locales
  + the New-project picker accordingly.

Adds the finalize-design endpoint:

- New apps/daemon/src/finalize-design.ts and packages/contracts/src/api/
  finalize.ts — one-shot synthesis of a project's transcript + active
  design system + current artifact into <projectDir>/DESIGN.md via the
  Anthropic Messages API. Per-project .finalize.lock mirrors the
  transcript-export hygiene from PR #493; provider credentials are not
  persisted by the daemon.

Other supporting changes:

- README + AGENTS.md updates to document the new directory split and
  craft/ surface, plus i18n strings across 13 locales.
- Test refactors and new coverage (finalize-design, runs, sidecar
  server, plus refreshed daemon integration tests).
- .gitignore: scope the *.exe ignore to /OpenDesign.exe so legitimate
  vendor binaries are no longer hidden.

* fix(merge): move clinical-case-report to design-templates/

Origin/main added the clinical-case-report skill under skills/ before
the skills/design-templates split landed. Its od.mode is prototype, so
per specs/current/skills-and-design-templates.md it is a design template
and belongs alongside the other rendering catalogue entries — not under
the slimmed-down functional skills/ root. Moving it keeps the EntryView
Templates tab consistent with origin/main's intent.

* feat(skills): curated design/creative catalogue + collapsible Settings rows

Seed ~100 curated design/creative skill stubs under skills/ sourced from
awesome-claude-skills (ComposioHQ) and awesome-agent-skills (VoltAgent).
Each stub carries an od.category tag so the new filter pill row in
Settings -> Skills can group them. The seed script
(scripts/seed-curated-design-skills.ts, pnpm seed:curated-design-skills)
is idempotent: it only creates folders that don't already exist, so
hand-edited stubs are never overwritten.

- Daemon: parse and surface od.category on SkillInfo with a strict slug
  normaliser; mirror the field on SkillSummary in @open-design/contracts.
  Category is purely a UI hint — system-prompt composition is unchanged.
- Web: rewrite SkillsSection from a left-list / right-detail grid into a
  vertical stack of collapsible rows mirroring the External MCP panel
  (header always visible with name + mode/source/category pills + per-row
  enable toggle; SKILL.md preview, file tree and inline edit form expand
  on demand). Add a Category filter row above the list. Reorder Settings
  nav so Skills + External MCP sit above the Composio/MCP cluster. Update
  composer placeholder/hint across 17 locales to advertise '@ files or
  skills · / for commands'.
- Docs: extend skills/AGENTS.md with the curated catalogue rules
  (idempotency, category vocabulary, no upstream vendoring).

Co-authored-by: Cursor <cursoragent@cursor.com>

* test(skills): teach localized-content + system-prompt tests about the skills/design-templates split

mrcfps blocking review on PR #955: the skills/design-templates split
(b5993385) moved ~110 SKILL.md entries out of `skills/` and into
`design-templates/`, but two repo-level tests still hard-coded the
single-root layout, so CI gates went red on the merged branch:

- `e2e/tests/localized-content.test.ts` only scanned `<repo>/skills`
  while the locale `skillCopy` map keeps id-keyed entries spanning
  both roots (ExamplesTab/Templates uses one lookup regardless of
  origin). Teach the helper to read both `skills/` and
  `design-templates/`, deduplicating ids so the union matches the
  localized claim.
- `apps/daemon/tests/prompts/system.test.ts` read
  `skills/live-artifact/SKILL.md`, which now lives under
  `design-templates/live-artifact/`. Update the absolute path so
  composeSystemPrompt's coverage of the live-artifact preamble is
  exercised again.

Also enroll the curated design/creative catalogue (PR #955, ~91
stubs sourced from awesome-claude-skills / awesome-agent-skills) in
the DE / FR / RU `_SKILL_IDS_WITH_EN_FALLBACK` lists. The stubs are
English-only by design (frontmatter advertises an upstream URL); the
fallback list is exactly the place to acknowledge "we know this id
exists, English copy is fine here" so the localized-content coverage
gate passes without forcing a translation task per locale.

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix(skills): always quote frontmatter name so importUserSkill round-trips numeric / boolean ids

mrcfps PR #955 review: `buildSkillMarkdown` emitted `name:
${escapeYamlString(name)}` without quotes, so YAML coerced names
like `123`, `true`, `false`, or `null` into non-string scalars on
re-parse. listSkills() then read `data.name` as a number/boolean
and the import flow's follow-up `findSkillById(skills, result.id)`
missed it, falling into `/api/skills/import`'s "imported skill
could not be re-read" 500 path for those ids.

Switch the emitter to a quoted scalar (`name: "..."`) — the
double-escape already in `escapeYamlString` makes the quoted form
safe — and add a round-trip test covering `123`, `true`, `false`,
`null`, and `0` to lock in the contract.

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix(web): drop staged-skill chips when the matching @<id> token leaves the draft

mrcfps PR #955 review: `submit()` always forwarded every id in
`stagedSkills`, but that state was only mutated on picker click and
chip removal. Hand-deleting an `@<id>` token from the textarea left
the chip staged, so the request still carried `skillIds: [<id>]` and
the daemon composed a skill the prompt no longer referenced.

Sync the chips with the draft inside `handleChange()` by pruning
`stagedSkills` whenever the new value no longer contains the
`@<id>` token (using the same whitespace boundary as
`removeStagedSkill`'s strip regex). Comment explains why this
prune does not run for `staged` file attachments — users frequently
add files via the upload button without leaving an `@<path>` token,
so a symmetric prune there would erase legitimate uploads.

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix(daemon): stage @-composed skills' side files alongside the active skill

codex PR #955 review: composing a per-turn `@`-picked skill into the
system prompt appended its body (with the `withSkillRootPreamble`
guidance pointing at relative paths under `<cwd>/.od-skills/<folder>/`)
but never staged the actual folder. `startChatRun` only copied
`activeSkillDir`, so when the project's primary skill was different
(or absent) the composed skill's references/, examples/, and scripts/
files lived only at their absolute repo path — agents that honour
the cwd-relative form (or that don't get `--add-dir`, e.g. Codex with
allowlisted gpt-image projects) couldn't reach them.

Thread the composed skills' dirs out of `composeDaemonSystemPrompt`
as `extraSkillDirs` and stage each one through the same
`stageActiveSkill` API used for the primary skill. Dedupe by folder
basename so a project whose primary skill is also `@`-composed isn't
copied twice. Each preamble already advertises its own folder, so the
prompt and the staged tree stay aligned without further changes.

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix(web): respect the Library disable toggle in the project @-mention picker

codex PR #955 review: only `EntryView` received `enabledSkills`
(filtered against `config.disabledSkills`); active projects still
got `skills={skills}` raw, so a skill the user disabled in Settings
kept appearing in the project's `@`-mention popover and could ride
along to the daemon via `skillIds`. That broke the Library toggle
for any project opened on the post-split branch.

Compute a functional-skills-only enabled subset
(`enabledFunctionalSkills`) and pass it into `<ProjectView>` instead.
Templates stay separate — design-templates are filtered through their
own `enabledDesignTemplates` memo for the Templates gallery — so
ProjectView's chat composer still only sees skills, never templates,
matching the pre-split prop surface.

Co-authored-by: Cursor <cursoragent@cursor.com>

* test(e2e): mock /api/design-templates for example-use-prompt flow

The Templates tab in EntryView fetches from /api/design-templates after
the skills/design-templates split (specs/current/skills-and-design-templates.md).
The example-use-prompt Playwright scenario only mocked /api/skills, so the
gallery card never appeared and the test timed out waiting on
example-card-warm-utility-example. Serve the same fixture summary on both
endpoints so the templates gallery renders the card the test clicks.

Co-authored-by: Cursor <cursoragent@cursor.com>

* test(tools-pack): create design-templates fixture for resources test

The packaging resources copy now bundles the new design-templates tree
alongside skills (see resources.ts BUNDLED_RESOURCE_TREES). The
copyBundledResourceTrees fixture only created skills, design-systems,
craft, etc., so the recursive copy crashed with ENOENT on
design-templates before it could check the prompt-templates assertion.
Add the missing fixture directory so the test exercises the same set
of resource trees the packaged build does.

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix(skills): clone built-in side files into the shadow on first edit

mrcfps PR #955 review: editing a built-in skill wrote a USER_SKILLS_DIR
shadow folder that contained only a new SKILL.md. The next listSkills()
pass surfaced the shadow as the active dir, but every side-file resolver
(/api/skills/:id/files, /example, /assets/*, the system-prompt preamble,
and the per-turn cwd staging) reads through skill.dir. With nothing but
SKILL.md in the shadow, the bundled assets/, references/, scripts/, and
examples/ disappeared the moment the user hit save — a built-in like
last30days or live-artifact would break immediately after edit instead
of just having its body overridden.

Teach updateUserSkill() to take a `sourceDir` and clone every entry
except SKILL.md / dotfiles into the shadow on the very first edit. The
shadow stays self-contained, so all the resolvers keep working without
fallback bookkeeping. Subsequent edits detect the existing shadow and
skip the clone, so user tweaks under the side tree survive a re-save.

Wire `sourceDir: skill.dir` from server.ts's PUT /api/skills/:id handler
and add two regression tests:
- 'clones built-in side files into the shadow on the first edit' walks
  the file tree after save and asserts assets/template.html, references/
  notes.md, and scripts/helper.sh all round-trip from the built-in.
- 'preserves user-edited side files on subsequent edits' edits the
  staged assets/template.html, re-saves, and confirms the user content
  is still there.

Co-authored-by: Cursor <cursoragent@cursor.com>

* test(e2e): rename home tab from Examples to Templates

The Examples tab was renamed to Templates in EntryView (b5993385's
skills/design-templates split — entry.tabExamples became entry.tabTemplates
and the tab value moved from 'examples' to 'templates'), but
entry-chrome-flows still asserted the old label and testId. Update both.

* fix(skills+web): preserve template body in API mode and dir-based skill delete

Two follow-ups from PR #955 review:

1. ProjectView only received `enabledFunctionalSkills`, but
   `composedSystemPrompt()` still resolved `project.skillId` through that
   prop and `fetchSkill()`. Projects created from the new
   `/api/design-templates` surface keep a template id in `project.skillId`,
   so opening one in API mode dropped the template body from the system
   prompt and the upstream request ran without the project's primary
   template instructions. Now ProjectView takes a separate
   `designTemplates` prop (the unfiltered template list, so a
   later-disabled template still loads for projects already created from
   it) and `composedSystemPrompt()` plus the metadata / `isDeck` lookups
   fall back to that list, with `fetchDesignTemplate()` as the body-fetch
   fallback to `fetchSkill()`. The chat composer's `@`-picker keeps
   receiving only the enabled functional skills.

2. `DELETE /api/skills/:id` used `deleteUserSkill(USER_SKILLS_DIR, skill.id)`
   which re-slugified the frontmatter id and removed
   `<userSkillsDir>/<slug>/`. That matched the import shape but missed the
   install shape — `installFromTarget` writes the folder at
   `sanitizeRepoName(url)` (GitHub) or `path.basename(realpath)` (local
   symlink), neither of which is guaranteed to equal the slugified
   frontmatter `name`. A duplicate `app.delete('/api/skills/:id', ...)`
   handler at the install routes never fired because Express resolved the
   earlier registration first, leaving the install/uninstall path without
   working teardown. The handler now removes `skill.dir` (the absolute
   path listSkills already discovered) under a USER_SKILLS_DIR safety
   check, using `lstat` + `unlinkSync` so symlinked local installs unlink
   cleanly without recursing into the user's source tree. The dead
   duplicate handler is removed; `deleteUserSkill` is dropped from the
   server.ts import set (still exported and unit-tested in skills.ts).
   Regression coverage in `apps/daemon/tests/skills-delete-route.test.ts`
   pins both shapes plus the symlink-preserves-source case.

* test(daemon): point hyperframes system-prompt test at design-templates

The merge with main brought in a hyperframes system-prompt test that
reads `skills/hyperframes/SKILL.md`, but this branch's split moved
`hyperframes` into `design-templates/` (same migration as `live-artifact`
already handled above in this file). CI was failing with ENOENT on the
old path.

---------

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-11 17:48:34 +08:00

270 lines
16 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Growth Squad · Sprint 38 Board</title>
<style>
:root {
--bg: #f7f7f9;
--paper: #ffffff;
--ink: #1a1d29;
--muted: #5e6478;
--line: #e5e7ee;
--line-strong: #c8cdd9;
--accent: #5b3df0;
--accent-soft: #ece8ff;
--pink: #d6336c;
--teal: #1a8e8e;
--amber: #b58522;
--green: #2c8a4f;
--display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, sans-serif;
--mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--body); font-size: 13.5px; line-height: 1.5; }
.app { display: grid; grid-template-columns: 1fr 280px; min-height: 100vh; }
main { padding: 18px 22px 32px; min-width: 0; }
aside.sidebar { padding: 22px 24px; border-left: 1px solid var(--line); background: var(--paper); }
/* Topbar */
.topbar { display: flex; align-items: center; gap: 16px; padding-bottom: 16px; }
.crumb { font-family: var(--mono); font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.sprint-chip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-weight: 600; font-size: 11.5px; }
.sprint-chip .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.topbar-spacer { flex: 1; }
.topbar input.search { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; max-width: 220px; background: var(--paper); }
.icon-btn { padding: 6px 10px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; font-size: 12.5px; cursor: pointer; color: var(--muted); }
.filterbar { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; margin-bottom: 14px; }
.filter-label { font-family: var(--mono); font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-right: 6px; }
.chip-row { display: flex; gap: 6px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line); font-size: 12px; color: var(--muted); cursor: pointer; }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip .av { width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #a991ff); display: inline-block; }
.filterbar .spacer { flex: 1; }
.members { display: flex; }
.members .av { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--paper); margin-left: -8px; font-size: 10.5px; font-weight: 700; color: white; display: inline-flex; align-items: center; justify-content: center; }
.members .av:first-child { margin-left: 0; }
/* Board */
.board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: flex-start; }
.col { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 12px; min-height: 460px; display: flex; flex-direction: column; gap: 10px; }
.col-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 4px 8px; border-bottom: 1px dashed var(--line); }
.col-name { font-weight: 600; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.col-name .swatch { width: 8px; height: 8px; border-radius: 50%; }
.swatch.gray { background: var(--line-strong); }
.swatch.violet { background: var(--accent); }
.swatch.amber { background: var(--amber); }
.swatch.green { background: var(--green); }
.col-count { font-family: var(--mono); font-size: 10.5px; color: var(--muted); padding: 2px 6px; background: var(--bg); border-radius: 999px; }
/* Cards */
.card { padding: 12px 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; display: flex; flex-direction: column; gap: 10px; cursor: grab; transition: border-color 0.15s, box-shadow 0.15s; }
.card:hover { border-color: var(--accent); box-shadow: 0 4px 12px rgba(91,61,240,0.06); }
.card-tag { display: inline-block; padding: 2px 8px; border-radius: 4px; font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.tag-bug { background: rgba(214,51,108,0.12); color: var(--pink); }
.tag-feat { background: rgba(91,61,240,0.12); color: var(--accent); }
.tag-design { background: rgba(26,142,142,0.12); color: var(--teal); }
.tag-chore { background: rgba(94,100,120,0.12); color: var(--muted); }
.tag-research { background: rgba(181,133,34,0.12); color: var(--amber); }
.card-title { font-size: 13.5px; font-weight: 500; line-height: 1.4; }
.card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: var(--muted); }
.card-meta .left { display: flex; gap: 8px; align-items: center; }
.av-sm { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #a991ff); color: white; font-size: 10px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.av-mira { background: linear-gradient(135deg, #d6336c, #ff7a9b); }
.av-cale { background: linear-gradient(135deg, #1a8e8e, #56c1c1); }
.av-pri { background: linear-gradient(135deg, #b58522, #f1b13a); }
.av-dev { background: linear-gradient(135deg, #2c8a4f, #66c285); }
.pts { font-family: var(--mono); padding: 2px 7px; border: 1px solid var(--line); border-radius: 999px; font-size: 10.5px; color: var(--muted); }
.progress { height: 4px; background: var(--bg); border-radius: 999px; overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--accent); border-radius: 999px; }
.add-card { padding: 10px; border: 1px dashed var(--line-strong); border-radius: 8px; text-align: center; color: var(--muted); font-size: 12px; cursor: pointer; }
.add-card:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
/* Sidebar */
aside h4 { font-family: var(--display); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin: 0 0 10px; font-weight: 600; }
.pulse { display: flex; flex-direction: column; gap: 14px; }
.pulse-stat { display: flex; justify-content: space-between; font-size: 13px; }
.pulse-stat strong { font-family: var(--mono); }
.pulse-bar { height: 6px; background: var(--bg); border-radius: 999px; overflow: hidden; }
.pulse-bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), #a991ff); border-radius: 999px; }
.top-list { display: flex; flex-direction: column; gap: 10px; }
.top-row { display: grid; grid-template-columns: 28px 1fr auto; gap: 10px; align-items: center; font-size: 12.5px; }
.pill-block { padding: 16px; border-radius: 10px; background: rgba(214,51,108,0.07); border: 1px solid rgba(214,51,108,0.2); }
.pill-block strong { color: var(--pink); }
@media (max-width: 1180px) {
.app { grid-template-columns: 1fr; }
aside.sidebar { border-left: none; border-top: 1px solid var(--line); }
.board { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) { .board { grid-template-columns: 1fr; } }
</style>
</head>
<body>
<div class="app">
<main>
<div class="topbar">
<span class="crumb">Northwind / Growth squad</span>
<span class="sprint-chip"><span class="dot"></span>Sprint 38 · Day 6 of 10</span>
<div class="topbar-spacer"></div>
<input class="search" placeholder="Search tickets…" />
<button class="icon-btn">⌘ Filter</button>
<button class="icon-btn">+ New</button>
</div>
<div class="filterbar">
<span class="filter-label">Members</span>
<div class="members">
<span class="av av-mira">MR</span>
<span class="av av-cale">CA</span>
<span class="av av-pri">PB</span>
<span class="av av-dev">DP</span>
<span class="av" style="background: #c8cdd9; color: #5e6478;">+1</span>
</div>
<span class="filter-label" style="margin-left: 18px;">Labels</span>
<div class="chip-row">
<span class="chip active">Active sprint</span>
<span class="chip">Bug</span>
<span class="chip">Feature</span>
<span class="chip">Research</span>
</div>
<div class="spacer"></div>
<span class="chip">Group · Status</span>
<span class="chip">Sort · Priority</span>
</div>
<div class="board">
<div class="col">
<div class="col-head"><div class="col-name"><span class="swatch gray"></span>Backlog</div><span class="col-count">5</span></div>
<div class="card">
<span class="card-tag tag-feat">Feature</span>
<div class="card-title">Add empty-state illustration to onboarding step 2</div>
<div class="card-meta"><div class="left"><span class="av-sm av-dev">DP</span><span class="pts">3 pts</span></div><span>NW-241</span></div>
</div>
<div class="card">
<span class="card-tag tag-design">Design</span>
<div class="card-title">Refresh notification settings page tokens</div>
<div class="card-meta"><div class="left"><span class="av-sm av-mira">MR</span><span class="pts">2 pts</span></div><span>NW-237</span></div>
</div>
<div class="card">
<span class="card-tag tag-research">Research</span>
<div class="card-title">Interview 5 new Enterprise admins about 2FA enforcement</div>
<div class="card-meta"><div class="left"><span class="av-sm av-pri">PB</span><span class="pts">5 pts</span></div><span>NW-225</span></div>
</div>
<div class="card">
<span class="card-tag tag-chore">Chore</span>
<div class="card-title">Migrate legacy auth logs to new schema</div>
<div class="card-meta"><div class="left"><span class="av-sm av-cale">CA</span><span class="pts">3 pts</span></div><span>NW-219</span></div>
</div>
<div class="card">
<span class="card-tag tag-bug">Bug</span>
<div class="card-title">CSV export drops emoji from project names</div>
<div class="card-meta"><div class="left"><span class="av-sm">+</span><span class="pts">1 pt</span></div><span>NW-244</span></div>
</div>
<div class="add-card">+ New card</div>
</div>
<div class="col">
<div class="col-head"><div class="col-name"><span class="swatch violet"></span>In progress</div><span class="col-count">4</span></div>
<div class="card">
<span class="card-tag tag-feat">Feature</span>
<div class="card-title">TOTP enrollment UI in member settings</div>
<div class="progress"><span style="width: 70%"></span></div>
<div class="card-meta"><div class="left"><span class="av-sm av-dev">DP</span><span class="pts">5 pts</span></div><span>NW-201</span></div>
</div>
<div class="card">
<span class="card-tag tag-feat">Feature</span>
<div class="card-title">Recovery codes — generate, download, regenerate</div>
<div class="progress"><span style="width: 45%"></span></div>
<div class="card-meta"><div class="left"><span class="av-sm av-pri">PB</span><span class="pts">3 pts</span></div><span>NW-202</span></div>
</div>
<div class="card">
<span class="card-tag tag-bug">Bug</span>
<div class="card-title">Fix focus-trap regression in command bar</div>
<div class="progress"><span style="width: 80%"></span></div>
<div class="card-meta"><div class="left"><span class="av-sm av-cale">CA</span><span class="pts">2 pts</span></div><span>NW-238</span></div>
</div>
<div class="card">
<span class="card-tag tag-design">Design</span>
<div class="card-title">2FA challenge step — visual + microcopy</div>
<div class="progress"><span style="width: 30%"></span></div>
<div class="card-meta"><div class="left"><span class="av-sm av-mira">MR</span><span class="pts">3 pts</span></div><span>NW-205</span></div>
</div>
</div>
<div class="col">
<div class="col-head"><div class="col-name"><span class="swatch amber"></span>In review</div><span class="col-count">3</span></div>
<div class="card">
<span class="card-tag tag-feat">Feature</span>
<div class="card-title">Audit-log entries for 2FA setup events</div>
<div class="card-meta"><div class="left"><span class="av-sm av-pri">PB</span><span class="pts">2 pts</span></div><span>NW-198</span></div>
</div>
<div class="card">
<span class="card-tag tag-design">Design</span>
<div class="card-title">Settings nav restructure (left rail)</div>
<div class="card-meta"><div class="left"><span class="av-sm av-mira">MR</span><span class="pts">3 pts</span></div><span>NW-189</span></div>
</div>
<div class="card">
<span class="card-tag tag-bug">Bug</span>
<div class="card-title">Workspace switcher resets scroll on close</div>
<div class="card-meta"><div class="left"><span class="av-sm av-cale">CA</span><span class="pts">1 pt</span></div><span>NW-233</span></div>
</div>
</div>
<div class="col">
<div class="col-head"><div class="col-name"><span class="swatch green"></span>Done</div><span class="col-count">6</span></div>
<div class="card" style="opacity: 0.85;">
<span class="card-tag tag-feat">Feature</span>
<div class="card-title">Workspace 2FA enforcement policy (admin)</div>
<div class="card-meta"><div class="left"><span class="av-sm av-dev">DP</span><span class="pts">5 pts</span></div><span>NW-181</span></div>
</div>
<div class="card" style="opacity: 0.85;">
<span class="card-tag tag-chore">Chore</span>
<div class="card-title">Bump auth library to 4.2.0</div>
<div class="card-meta"><div class="left"><span class="av-sm av-cale">CA</span><span class="pts">1 pt</span></div><span>NW-176</span></div>
</div>
<div class="card" style="opacity: 0.85;">
<span class="card-tag tag-research">Research</span>
<div class="card-title">2FA usability sessions (n=8)</div>
<div class="card-meta"><div class="left"><span class="av-sm av-pri">PB</span><span class="pts">3 pts</span></div><span>NW-172</span></div>
</div>
<div class="card" style="opacity: 0.85;">
<span class="card-tag tag-design">Design</span>
<div class="card-title">Settings tokens audit</div>
<div class="card-meta"><div class="left"><span class="av-sm av-mira">MR</span><span class="pts">2 pts</span></div><span>NW-168</span></div>
</div>
</div>
</div>
</main>
<aside class="sidebar">
<div class="pulse">
<div>
<h4>Sprint pulse</h4>
<div class="pulse-stat"><span>Completed</span><strong>22 of 38 pts</strong></div>
<div class="pulse-bar" style="margin-top: 6px;"><span style="width: 58%"></span></div>
</div>
<div>
<h4>Top contributors</h4>
<div class="top-list">
<div class="top-row"><span class="av-sm av-dev">DP</span><span>Devon Park</span><strong>9 pts</strong></div>
<div class="top-row"><span class="av-sm av-mira">MR</span><span>Mira Reddy</span><strong>5 pts</strong></div>
<div class="top-row"><span class="av-sm av-pri">PB</span><span>Priya Banerjee</span><strong>5 pts</strong></div>
<div class="top-row"><span class="av-sm av-cale">CA</span><span>Caleb Renner</span><strong>3 pts</strong></div>
</div>
</div>
<div>
<h4>Blocked</h4>
<div class="pill-block">
<strong>1 ticket needs unblock.</strong>
<p style="margin: 6px 0 0; color: var(--muted); font-size: 12.5px;">NW-205 (2FA challenge design) is waiting on a copy review from Brand. Mention @Sasha or move it back to backlog.</p>
</div>
</div>
</div>
</aside>
</div>
</body>
</html>