mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
* 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>
320 lines
16 KiB
HTML
320 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 · Weekly update · W42</title>
|
||
<style>
|
||
:root {
|
||
--bg: #0e0d12;
|
||
--paper: #19171f;
|
||
--paper-2: #221f2a;
|
||
--ink: #f4f0e6;
|
||
--muted: #a09aaf;
|
||
--line: #2c2935;
|
||
--accent: #ffcc4d;
|
||
--accent-2: #b388ff;
|
||
--display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||
--mono: ui-monospace, 'JetBrains Mono', SFMono-Regular, Menlo, monospace;
|
||
}
|
||
* { box-sizing: border-box; }
|
||
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--display); }
|
||
body { overflow: hidden; }
|
||
.deck {
|
||
display: flex;
|
||
width: 100vw; height: 100vh;
|
||
overflow-x: auto;
|
||
overflow-y: hidden;
|
||
scroll-snap-type: x mandatory;
|
||
scroll-behavior: smooth;
|
||
scrollbar-width: none;
|
||
}
|
||
.deck::-webkit-scrollbar { display: none; }
|
||
.slide {
|
||
flex: 0 0 100vw; height: 100vh;
|
||
display: flex; align-items: center; justify-content: center;
|
||
padding: 56px 80px;
|
||
scroll-snap-align: start;
|
||
position: relative;
|
||
}
|
||
.slide-inner { width: 100%; max-width: 1100px; }
|
||
.crumb {
|
||
position: absolute; top: 24px; left: 32px;
|
||
font-family: var(--mono); font-size: 11px; color: var(--muted);
|
||
text-transform: uppercase; letter-spacing: 0.1em;
|
||
}
|
||
.pageno {
|
||
position: absolute; bottom: 24px; right: 32px;
|
||
font-family: var(--mono); font-size: 11px; color: var(--muted);
|
||
}
|
||
.nav {
|
||
position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
|
||
display: flex; gap: 6px; z-index: 5;
|
||
}
|
||
.nav .dot {
|
||
width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2);
|
||
cursor: pointer;
|
||
}
|
||
.nav .dot.active { background: var(--accent); }
|
||
|
||
/* Cover */
|
||
.cover { display: flex; flex-direction: column; gap: 28px; }
|
||
.cover .badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); align-self: flex-start; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
|
||
.cover .badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
|
||
.cover h1 { font-size: clamp(56px, 8vw, 110px); margin: 0; line-height: 0.96; letter-spacing: -0.03em; font-weight: 800; }
|
||
.cover h1 em { font-style: normal; color: var(--accent); }
|
||
.cover .meta { display: flex; gap: 36px; color: var(--muted); font-family: var(--mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
|
||
|
||
/* Headline */
|
||
.headline { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
|
||
.headline-num { font-size: clamp(120px, 18vw, 220px); line-height: 0.9; letter-spacing: -0.04em; font-weight: 800; color: var(--accent); }
|
||
.headline-num small { display: block; font-size: 18px; color: var(--muted); font-weight: 400; letter-spacing: 0; margin-top: 12px; font-family: var(--mono); text-transform: uppercase; }
|
||
.headline-text h2 { font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 18px; font-weight: 700; }
|
||
.headline-text p { color: var(--muted); font-size: 18px; max-width: 36ch; line-height: 1.5; }
|
||
|
||
/* Section title */
|
||
.section-title { font-size: clamp(32px, 4vw, 56px); margin: 0 0 36px; line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; }
|
||
.section-title em { font-style: normal; color: var(--accent); }
|
||
|
||
/* Lists of items */
|
||
.item-list { display: flex; flex-direction: column; gap: 14px; }
|
||
.item { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; padding: 22px 26px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
|
||
.item-num { font-family: var(--mono); font-size: 12px; color: var(--muted); }
|
||
.item-title { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
|
||
.item-meta { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
|
||
.av-row { display: flex; }
|
||
.av { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--paper); margin-left: -8px; font-size: 11px; font-weight: 700; color: var(--bg); display: inline-flex; align-items: center; justify-content: center; background: var(--accent); }
|
||
.av:first-child { margin-left: 0; }
|
||
.av-2 { background: var(--accent-2); color: white; }
|
||
.av-3 { background: #ff6f91; color: white; }
|
||
|
||
/* Blocked */
|
||
.blocked-block { padding: 36px 40px; background: linear-gradient(135deg, rgba(255,111,145,0.18), rgba(255,204,77,0.08)); border: 1px solid rgba(255,111,145,0.4); border-radius: 18px; }
|
||
.blocked-block h3 { font-size: 28px; margin: 0 0 8px; letter-spacing: -0.01em; }
|
||
.blocked-block p { color: var(--muted); margin: 0 0 18px; font-size: 16px; }
|
||
.blocked-ask { display: inline-flex; padding: 10px 22px; background: var(--accent); color: var(--bg); border-radius: 999px; font-weight: 600; font-size: 14px; }
|
||
|
||
/* Charts */
|
||
.chart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
|
||
.chart { padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; }
|
||
.chart h4 { margin: 0 0 4px; font-size: 14px; font-weight: 600; }
|
||
.chart .sub { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
|
||
.chart svg { width: 100%; height: 220px; display: block; margin-top: 16px; }
|
||
.big-num { font-size: 72px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--accent); margin-top: 16px; }
|
||
.delta { font-family: var(--mono); font-size: 13px; color: var(--accent); margin-top: 8px; }
|
||
.delta.warn { color: #ff6f91; }
|
||
|
||
/* Asks */
|
||
.asks { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
|
||
.ask { padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; display: flex; flex-direction: column; gap: 14px; }
|
||
.ask .who { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; }
|
||
.ask h3 { font-size: 22px; line-height: 1.25; margin: 0; letter-spacing: -0.01em; }
|
||
.ask p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
|
||
|
||
/* Closer */
|
||
.closer { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
|
||
.closer h2 { font-size: clamp(44px, 6vw, 84px); margin: 0; line-height: 1.05; letter-spacing: -0.025em; font-weight: 800; }
|
||
.closer h2 em { font-style: normal; color: var(--accent); }
|
||
.closer p { color: var(--muted); font-size: 18px; max-width: 56ch; }
|
||
.closer .signature { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--line); width: 100%; }
|
||
.closer .signature .av { width: 44px; height: 44px; font-size: 16px; }
|
||
.closer .signature strong { display: block; font-size: 16px; }
|
||
.closer .signature span { color: var(--muted); font-size: 13px; }
|
||
|
||
@media (max-width: 760px) {
|
||
.slide { padding: 48px 28px; }
|
||
.headline { grid-template-columns: 1fr; }
|
||
.chart-grid, .asks { grid-template-columns: 1fr; }
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="deck" id="deck">
|
||
|
||
<!-- 1. Cover -->
|
||
<section class="slide">
|
||
<span class="crumb">Growth squad · weekly</span>
|
||
<div class="slide-inner cover">
|
||
<div class="badge"><span class="dot"></span>Week 42 · 14 → 18 Oct</div>
|
||
<h1>Hello, week <em>forty‑two</em>.</h1>
|
||
<div class="meta">
|
||
<span>Author · Devon Park</span>
|
||
<span>Audience · Squad + leadership</span>
|
||
<span>5 min read</span>
|
||
</div>
|
||
</div>
|
||
<span class="pageno">01 / 08</span>
|
||
</section>
|
||
|
||
<!-- 2. Headline number -->
|
||
<section class="slide">
|
||
<span class="crumb">Headline</span>
|
||
<div class="slide-inner headline">
|
||
<div class="headline-num">+22%<small>Net new MRR vs Q3 weekly avg</small></div>
|
||
<div class="headline-text">
|
||
<h2>The week the funnel started feeling fast again.</h2>
|
||
<p>Onboarding completion is up 9 pp, signup→activation cut to 47 minutes from 1h12, and we shipped the first piece of the 2FA workstream.</p>
|
||
</div>
|
||
</div>
|
||
<span class="pageno">02 / 08</span>
|
||
</section>
|
||
|
||
<!-- 3. Shipped -->
|
||
<section class="slide">
|
||
<span class="crumb">What shipped</span>
|
||
<div class="slide-inner">
|
||
<h2 class="section-title">Shipped, <em>top to bottom</em>.</h2>
|
||
<div class="item-list">
|
||
<div class="item"><span class="item-num">01</span><span class="item-title">TOTP enrollment in member settings</span><span class="item-meta">NW-201 · Devon</span></div>
|
||
<div class="item"><span class="item-num">02</span><span class="item-title">Onboarding empty-state illustrations</span><span class="item-meta">NW-241 · Mira</span></div>
|
||
<div class="item"><span class="item-num">03</span><span class="item-title">Audit-log entries for auth events</span><span class="item-meta">NW-198 · Priya</span></div>
|
||
<div class="item"><span class="item-num">04</span><span class="item-title">Workspace-switcher scroll-reset fix</span><span class="item-meta">NW-233 · Caleb</span></div>
|
||
</div>
|
||
</div>
|
||
<span class="pageno">03 / 08</span>
|
||
</section>
|
||
|
||
<!-- 4. In flight -->
|
||
<section class="slide">
|
||
<span class="crumb">In flight</span>
|
||
<div class="slide-inner">
|
||
<h2 class="section-title">In flight, <em>landing soon</em>.</h2>
|
||
<div class="item-list">
|
||
<div class="item"><span class="item-num">01</span><span class="item-title">Recovery codes — generate, download, regenerate</span><div class="av-row"><span class="av">PB</span></div></div>
|
||
<div class="item"><span class="item-num">02</span><span class="item-title">2FA challenge step — visual + microcopy</span><div class="av-row"><span class="av av-2">MR</span><span class="av">SL</span></div></div>
|
||
<div class="item"><span class="item-num">03</span><span class="item-title">Settings nav restructure (left rail)</span><div class="av-row"><span class="av av-2">MR</span></div></div>
|
||
<div class="item"><span class="item-num">04</span><span class="item-title">Audit-writer backlog dashboard</span><div class="av-row"><span class="av av-3">CA</span></div></div>
|
||
</div>
|
||
</div>
|
||
<span class="pageno">04 / 08</span>
|
||
</section>
|
||
|
||
<!-- 5. Blocked -->
|
||
<section class="slide">
|
||
<span class="crumb">Blocked</span>
|
||
<div class="slide-inner">
|
||
<h2 class="section-title">One thing's <em>stuck</em>.</h2>
|
||
<div class="blocked-block">
|
||
<h3>Brand copy review for the 2FA challenge step.</h3>
|
||
<p>Sasha needs Brand to review the new microcopy by Wednesday EOD or M2 (Nov 18) slips. The doc is tagged in <code style="font-family: var(--mono);">#brand-reviews</code>; we just need eyes.</p>
|
||
<span class="blocked-ask">Ask: Brand — please review by Wed</span>
|
||
</div>
|
||
</div>
|
||
<span class="pageno">05 / 08</span>
|
||
</section>
|
||
|
||
<!-- 6. Metrics -->
|
||
<section class="slide">
|
||
<span class="crumb">Metrics</span>
|
||
<div class="slide-inner">
|
||
<h2 class="section-title">Metrics that <em>moved</em>.</h2>
|
||
<div class="chart-grid">
|
||
<div class="chart">
|
||
<h4>Activation rate · 4-week trailing</h4>
|
||
<div class="sub">Higher is better</div>
|
||
<svg viewBox="0 0 600 220" preserveAspectRatio="none">
|
||
<defs><linearGradient id="lg1" x1="0" x2="0" y1="0" y2="1"><stop offset="0%" stop-color="#ffcc4d" stop-opacity="0.4"/><stop offset="100%" stop-color="#ffcc4d" stop-opacity="0"/></linearGradient></defs>
|
||
<polygon fill="url(#lg1)" points="20,210 20,160 110,150 200,140 290,124 380,108 470,80 560,52 580,52 580,210" />
|
||
<polyline fill="none" stroke="#ffcc4d" stroke-width="3" stroke-linejoin="round" stroke-linecap="round"
|
||
points="20,160 110,150 200,140 290,124 380,108 470,80 560,52" />
|
||
<circle cx="560" cy="52" r="5" fill="#ffcc4d"/>
|
||
</svg>
|
||
<div class="big-num">38%</div>
|
||
<div class="delta">▲ +9 pp this week</div>
|
||
</div>
|
||
<div class="chart">
|
||
<h4>Time-to-activation · median</h4>
|
||
<div class="sub">Lower is better</div>
|
||
<svg viewBox="0 0 600 220" preserveAspectRatio="none">
|
||
<defs><linearGradient id="lg2" x1="0" x2="0" y1="0" y2="1"><stop offset="0%" stop-color="#b388ff" stop-opacity="0.4"/><stop offset="100%" stop-color="#b388ff" stop-opacity="0"/></linearGradient></defs>
|
||
<polygon fill="url(#lg2)" points="20,210 20,60 110,72 200,90 290,108 380,124 470,148 560,164 580,164 580,210" />
|
||
<polyline fill="none" stroke="#b388ff" stroke-width="3" stroke-linejoin="round" stroke-linecap="round"
|
||
points="20,60 110,72 200,90 290,108 380,124 470,148 560,164" />
|
||
<circle cx="560" cy="164" r="5" fill="#b388ff"/>
|
||
</svg>
|
||
<div class="big-num" style="color: #b388ff;">47 min</div>
|
||
<div class="delta">▼ −25 min this week</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<span class="pageno">06 / 08</span>
|
||
</section>
|
||
|
||
<!-- 7. Asks -->
|
||
<section class="slide">
|
||
<span class="crumb">Asks</span>
|
||
<div class="slide-inner">
|
||
<h2 class="section-title">Asks for <em>next week</em>.</h2>
|
||
<div class="asks">
|
||
<div class="ask">
|
||
<div class="who"><span class="av av-2">SL</span>Brand</div>
|
||
<h3>Review the 2FA challenge microcopy by Wednesday EOD.</h3>
|
||
<p>Doc is tagged in <code style="font-family: var(--mono);">#brand-reviews</code>. Without it, M2 ships late and the Pioneer deal slips.</p>
|
||
</div>
|
||
<div class="ask">
|
||
<div class="who"><span class="av av-3">PB</span>Security</div>
|
||
<h3>Pair on the KMS rotation rehearsal Thursday 14:00.</h3>
|
||
<p>30 minutes. We want to dry-run the procedure before we touch prod next quarter.</p>
|
||
</div>
|
||
<div class="ask">
|
||
<div class="who"><span class="av">DP</span>Sales</div>
|
||
<h3>Loop us in to the Pioneer security review call.</h3>
|
||
<p>We can answer the 2FA questions live; will save a round-trip.</p>
|
||
</div>
|
||
<div class="ask">
|
||
<div class="who"><span class="av av-2">MR</span>Research</div>
|
||
<h3>Five recruits for the Enterprise admin study by next Friday.</h3>
|
||
<p>Existing customers preferred. We have an Airtable form ready.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<span class="pageno">07 / 08</span>
|
||
</section>
|
||
|
||
<!-- 8. Closing -->
|
||
<section class="slide">
|
||
<span class="crumb">Thanks</span>
|
||
<div class="slide-inner closer">
|
||
<h2>That's the <em>week</em>.</h2>
|
||
<p>Thanks for the focus. The 2FA push is paying off and the funnel work landed harder than I expected. Special thanks to Mira for the empty-state work — small change, big lift on activation.</p>
|
||
<div class="signature">
|
||
<span class="av">DP</span>
|
||
<div><strong>Devon Park</strong><span>Growth squad lead · ping me in #growth-squad</span></div>
|
||
</div>
|
||
</div>
|
||
<span class="pageno">08 / 08</span>
|
||
</section>
|
||
</div>
|
||
|
||
<div class="nav" id="nav"></div>
|
||
|
||
<script>
|
||
const deck = document.getElementById('deck');
|
||
const slides = deck.querySelectorAll('.slide');
|
||
const nav = document.getElementById('nav');
|
||
slides.forEach((_, i) => {
|
||
const d = document.createElement('span');
|
||
d.className = 'dot' + (i === 0 ? ' active' : '');
|
||
d.addEventListener('click', () => deck.scrollTo({ left: window.innerWidth * i, behavior: 'smooth' }));
|
||
nav.appendChild(d);
|
||
});
|
||
function activeIndex() {
|
||
return Math.round(deck.scrollLeft / window.innerWidth);
|
||
}
|
||
deck.addEventListener('scroll', () => {
|
||
const idx = activeIndex();
|
||
nav.querySelectorAll('.dot').forEach((d, i) => d.classList.toggle('active', i === idx));
|
||
}, { passive: true });
|
||
document.addEventListener('keydown', (e) => {
|
||
const idx = activeIndex();
|
||
if (e.key === 'ArrowRight' || e.key === 'PageDown') {
|
||
const next = Math.min(slides.length - 1, idx + 1);
|
||
deck.scrollTo({ left: window.innerWidth * next, behavior: 'smooth' });
|
||
} else if (e.key === 'ArrowLeft' || e.key === 'PageUp') {
|
||
const prev = Math.max(0, idx - 1);
|
||
deck.scrollTo({ left: window.innerWidth * prev, behavior: 'smooth' });
|
||
}
|
||
});
|
||
</script>
|
||
</body>
|
||
</html>
|