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>
265 lines
12 KiB
HTML
265 lines
12 KiB
HTML
<!doctype html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
<title>mutuals · your dating life, measured by the company you keep</title>
|
||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||
<link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Serif+Text:ital@0;1&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet" />
|
||
<style>
|
||
:root {
|
||
--paper: #f4ede0;
|
||
--panel: #f9f3e7;
|
||
--ink: #1f1c14;
|
||
--muted: #7a7264;
|
||
--rule: #d6cdb6;
|
||
--accent: #c14a2b;
|
||
--good: #406b3a;
|
||
--bad: #b6422f;
|
||
--serif-display: 'DM Serif Display', 'Iowan Old Style', Georgia, serif;
|
||
--serif-body: 'DM Serif Text', 'Iowan Old Style', Georgia, serif;
|
||
--mono: 'IBM Plex Mono', ui-monospace, monospace;
|
||
}
|
||
* { box-sizing: border-box; }
|
||
body { margin: 0; background: var(--paper); color: var(--ink); font: 14px/1.55 var(--serif-body); }
|
||
|
||
.ticker {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding: 14px 28px;
|
||
border-bottom: 1px solid var(--ink);
|
||
font: 11px/1 var(--mono);
|
||
color: var(--muted);
|
||
letter-spacing: 0.18em;
|
||
text-transform: uppercase;
|
||
}
|
||
.ticker .left { display: flex; align-items: center; gap: 18px; }
|
||
.ticker b { color: var(--ink); font-weight: 500; }
|
||
|
||
.layout { display: grid; grid-template-columns: 232px 1fr; min-height: calc(100vh - 44px); }
|
||
aside.rail {
|
||
border-right: 1px solid var(--ink);
|
||
padding: 22px 22px 22px 28px;
|
||
display: flex; flex-direction: column; gap: 22px;
|
||
}
|
||
aside .brand { font: italic 800 30px/1 var(--serif-display); letter-spacing: -0.005em; }
|
||
aside .brand .dot { color: var(--accent); }
|
||
aside .user { display: flex; align-items: center; gap: 10px; }
|
||
aside .avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; font: 700 12px/1 var(--mono); letter-spacing: 0.06em; }
|
||
aside .user .meta { font: 13px/1.2 var(--mono); }
|
||
aside .user .meta b { display: block; color: var(--ink); font-weight: 500; }
|
||
aside .user .meta span { color: var(--muted); font-size: 11px; letter-spacing: 0.06em; }
|
||
|
||
aside h4 { font: 11px/1 var(--mono); color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 10px; }
|
||
aside ul { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 4px; }
|
||
aside li { display: flex; justify-content: space-between; align-items: center; padding: 5px 8px; border-radius: 4px; font: 15.5px/1.2 var(--serif-body); color: var(--ink); cursor: default; }
|
||
aside li.active { background: rgba(193,74,43,0.10); color: var(--accent); font-weight: 600; }
|
||
aside li.active::before { content: '●'; color: var(--accent); margin-right: 6px; font-size: 9px; }
|
||
aside li .badge { background: var(--accent); color: var(--paper); font: 10px/1 var(--mono); padding: 3px 6px; border-radius: 999px; letter-spacing: 0.06em; }
|
||
aside li .badge.gray { background: var(--ink); }
|
||
|
||
aside .status {
|
||
margin-top: auto;
|
||
padding-top: 18px;
|
||
border-top: 1px solid var(--rule);
|
||
font: 11px/1.4 var(--mono);
|
||
color: var(--muted);
|
||
letter-spacing: 0.06em;
|
||
}
|
||
aside .status .live::before { content: '●'; color: #2f7d4a; margin-right: 6px; }
|
||
|
||
main { padding: 30px 36px 44px; }
|
||
.grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(3, 1fr);
|
||
grid-auto-rows: minmax(120px, auto);
|
||
gap: 22px 36px;
|
||
margin-bottom: 36px;
|
||
}
|
||
.stat { padding: 4px 0 14px; border-bottom: 1px solid var(--rule); }
|
||
.stat .label { font: 11px/1.4 var(--mono); color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 6px; }
|
||
.stat .value {
|
||
font: 800 56px/1.05 var(--serif-display);
|
||
letter-spacing: -0.01em;
|
||
font-feature-settings: 'tnum';
|
||
margin-bottom: 6px;
|
||
}
|
||
.stat .value.good { color: var(--good); }
|
||
.stat .value.bad { color: var(--bad); }
|
||
.stat .value em { font-style: italic; font-weight: 400; }
|
||
.stat .note { font: italic 13.5px/1.4 var(--serif-body); color: var(--muted); max-width: 32ch; }
|
||
.stat .arrow { font-style: normal; color: var(--good); font-size: 14px; }
|
||
|
||
.panel { padding: 18px 0 24px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--rule); margin-bottom: 18px; }
|
||
.panel-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 14px; }
|
||
.panel-head h3 { margin: 0; font: italic 24px/1 var(--serif-display); letter-spacing: -0.005em; }
|
||
.panel-head .meta { font: 11px/1.4 var(--mono); color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; max-width: 56ch; text-align: right; }
|
||
.panel svg { width: 100%; height: 220px; display: block; }
|
||
.panel .axis { display: flex; justify-content: space-between; font: 10px/1 var(--mono); color: var(--muted); letter-spacing: 0.1em; padding: 8px 4px 0; text-transform: uppercase; }
|
||
|
||
.lower-panel .lede { font: italic 15px/1.55 var(--serif-body); color: var(--muted); margin: 0; max-width: 70ch; }
|
||
.lower-panel .lede b { color: var(--ink); font-style: normal; font-weight: 600; }
|
||
|
||
@media (max-width: 1100px) {
|
||
.layout { grid-template-columns: 1fr; }
|
||
aside.rail { border-right: none; border-bottom: 1px solid var(--ink); }
|
||
.grid { grid-template-columns: repeat(2, 1fr); gap: 18px 28px; }
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="ticker" data-od-id="ticker">
|
||
<div class="left">
|
||
<span>YOUR DATING LIFE, MEASURED BY THE COMPANY YOU KEEP</span>
|
||
<span style="opacity:0.6;">·</span>
|
||
<span>REVIEWED WEEKLY</span>
|
||
</div>
|
||
<div>NEXT TIER AT <b>2,080 MUTUALS</b></div>
|
||
</div>
|
||
|
||
<div class="layout">
|
||
<aside class="rail" data-od-id="rail">
|
||
<div class="brand">mutuals<span class="dot">.</span></div>
|
||
<div class="user">
|
||
<div class="avatar">si</div>
|
||
<div class="meta"><b>@signals</b><span>RATIO 22.9 · TIER III</span></div>
|
||
</div>
|
||
|
||
<div>
|
||
<h4>Today</h4>
|
||
<ul>
|
||
<li>specimen <span class="badge">3</span></li>
|
||
<li>inbox <span class="badge">3</span></li>
|
||
<li>queue <span style="font:11px/1 var(--mono);color:var(--muted);">6</span></li>
|
||
<li>notifications <span class="badge gray">12</span></li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h4>You</h4>
|
||
<ul>
|
||
<li class="active">your stats</li>
|
||
<li>mutuals & communities</li>
|
||
<li>blocked <span style="font:11px/1 var(--mono);color:var(--muted);">14</span></li>
|
||
<li>settings</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h4>Archive</h4>
|
||
<ul>
|
||
<li>past issues</li>
|
||
<li>expired matches <span style="font:11px/1 var(--mono);color:var(--muted);">7</span></li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="status">
|
||
<div class="live">online · last match 11m ago</div>
|
||
<div style="opacity:0.7;margin-top:2px;">mutuals.v0.6.1</div>
|
||
</div>
|
||
</aside>
|
||
|
||
<main data-od-id="main">
|
||
<section class="grid" data-od-id="kpis">
|
||
<div class="stat">
|
||
<div class="label">Mutuals on file</div>
|
||
<div class="value"><em>1,842</em></div>
|
||
<p class="note"><span class="arrow">↑</span> 41 this wk · healthy growth.</p>
|
||
</div>
|
||
<div class="stat">
|
||
<div class="label">Replies in 24h</div>
|
||
<div class="value good">47</div>
|
||
<p class="note">the people who'd text back within a day.</p>
|
||
</div>
|
||
<div class="stat">
|
||
<div class="label">Communities</div>
|
||
<div class="value"><em>14</em></div>
|
||
<p class="note">4 active · 7 lurking · 3 inferred.</p>
|
||
</div>
|
||
|
||
<div class="stat">
|
||
<div class="label">Match rate</div>
|
||
<div class="value good">14%</div>
|
||
<p class="note">above median for your cohort.</p>
|
||
</div>
|
||
<div class="stat">
|
||
<div class="label">2nd dates</div>
|
||
<div class="value"><em>3</em></div>
|
||
<p class="note">of 7 first dates this year. you commit.</p>
|
||
</div>
|
||
<div class="stat">
|
||
<div class="label">Exes in your circle</div>
|
||
<div class="value bad">4</div>
|
||
<p class="note">manageable. two are now friends.</p>
|
||
</div>
|
||
|
||
<div class="stat">
|
||
<div class="label">Shared blocks</div>
|
||
<div class="value"><em>214</em></div>
|
||
<p class="note">your single greatest compatibility asset.</p>
|
||
</div>
|
||
<div class="stat">
|
||
<div class="label">Avg response</div>
|
||
<div class="value"><em>2.1<span style="font-size:32px;">h</span></em></div>
|
||
<p class="note">too fast. wait 4–6h. they notice.</p>
|
||
</div>
|
||
<div class="stat">
|
||
<div class="label">Logged-off hrs</div>
|
||
<div class="value bad">4</div>
|
||
<p class="note">/ 168 this wk. we beg.</p>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="panel" data-od-id="bars">
|
||
<div class="panel-head">
|
||
<h3>mutuals — <em>last 30 days</em></h3>
|
||
<div class="meta">↑ TRENDING UP · +3 CLOSE MUTUALS THIS MONTH · TWO VIA THE SAME OFFSITE</div>
|
||
</div>
|
||
<svg viewBox="0 0 720 220" preserveAspectRatio="none" aria-hidden="true">
|
||
<g fill="#1f1c14">
|
||
<rect x="6" y="170" width="14" height="50"></rect>
|
||
<rect x="30" y="158" width="14" height="62"></rect>
|
||
<rect x="54" y="146" width="14" height="74"></rect>
|
||
<rect x="78" y="172" width="14" height="48"></rect>
|
||
<rect x="102" y="162" width="14" height="58"></rect>
|
||
<rect x="126" y="138" width="14" height="82"></rect>
|
||
<rect x="150" y="120" width="14" height="100"></rect>
|
||
<rect x="174" y="148" width="14" height="72"></rect>
|
||
<rect x="198" y="132" width="14" height="88"></rect>
|
||
<rect x="222" y="108" width="14" height="112"></rect>
|
||
<rect x="246" y="118" width="14" height="102"></rect>
|
||
<rect x="270" y="154" width="14" height="66"></rect>
|
||
<rect x="294" y="130" width="14" height="90"></rect>
|
||
<rect x="318" y="100" width="14" height="120"></rect>
|
||
<rect x="342" y="86" width="14" height="134"></rect>
|
||
<rect x="366" y="116" width="14" height="104"></rect>
|
||
<rect x="390" y="138" width="14" height="82"></rect>
|
||
<rect x="414" y="92" width="14" height="128"></rect>
|
||
<rect x="438" y="74" width="14" height="146"></rect>
|
||
<rect x="462" y="106" width="14" height="114"></rect>
|
||
<rect x="486" y="84" width="14" height="136"></rect>
|
||
<rect x="510" y="124" width="14" height="96"></rect>
|
||
<rect x="534" y="98" width="14" height="122"></rect>
|
||
<rect x="558" y="68" width="14" height="152"></rect>
|
||
<rect x="582" y="80" width="14" height="140"></rect>
|
||
<rect x="606" y="46" width="14" height="174" fill="#c14a2b"></rect>
|
||
<rect x="630" y="60" width="14" height="160" fill="#c14a2b"></rect>
|
||
<rect x="654" y="92" width="14" height="128"></rect>
|
||
<rect x="678" y="76" width="14" height="144"></rect>
|
||
<rect x="702" y="90" width="14" height="130"></rect>
|
||
</g>
|
||
</svg>
|
||
<div class="axis"><span>MAR 18</span><span>MAR 25</span><span>APR 1</span><span>APR 8</span><span>APR 15</span><span>TODAY</span></div>
|
||
</section>
|
||
|
||
<section class="panel lower-panel" data-od-id="trend">
|
||
<div class="panel-head">
|
||
<h3>match rate — <em>last 12 weeks</em></h3>
|
||
<div class="meta">STEADY CLIMB FROM 8% → 14%. ATTRIBUTABLE TO ONE COMMUNITY JOIN (FOUNDERS WHO POST, WK 4).</div>
|
||
</div>
|
||
<p class="lede">A real climb, not a vibe. <b>One community join</b> moved your match rate more than four months of profile edits — keep posting from that circle, ship more, tweet less.</p>
|
||
</section>
|
||
</main>
|
||
</div>
|
||
</body>
|
||
</html>
|