memory-widget

A widget renderer that turns a user's stored memories or notes into a visual component such as a dashboard, calendar, table, tag gallery, or relationship graph. It uses live vault data supplied by the host application.

In plain words
What is it for?
Use it to display remembered people, projects, or concepts as a dashboard, calendar, table, tag gallery, or relationship graph.
Why use it?
It lets people view their stored information in a chosen visual layout without manually assembling the data. The widget follows predefined component contracts and styles.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/xyruscode/ai-sync/memory-widget
Any agent
npx skills add XyrusCode/ai-sync --skill memory-widget
Clone the repo
git clone --depth 1 https://github.com/XyrusCode/ai-sync

Made for: Claude Code, Codex.

Per session 127 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,061 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00127 $0.01061
Opus 5 $0.00063 $0.00531
Sonnet 5 $0.00025 $0.00212
Haiku 4.5 $0.00013 $0.00106

Measured yesterday against content hash fe36b7dad43a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

memory-widget scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/memory-widget/SKILL.md · 69 lines

How it starts

The opening of the file, as written. The whole thing — 69 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Memory Widget

Render the user's vault memory as a widget — but you do not design the styling. You pick a fixed component, bind real vault data to its contract, and emit it. Style is owned by the component reference + Kimi design tokens; you only do the data wiring. This keeps every memory widget on-brand and stops you re-inventing layout each time.

This works like lark-base and kimi-design-skill: a short menu here, detail in references/.

执行前必做 (read before you emit)

  1. Read references/data-contract.md once — the exact shape of the vault data the host injects.
  2. Read the component reference for each component you'll use (e.g. references/calendar.md). Follow its Contract (what data it eats) and Fixed Style (do not invent your own variant).
  3. For styling tokens/components, the references inherit kimi-design-skill; read it when a reference tells you to. Do not invent colors, radii, spacing.

Do not emit a memory widget without having read the matching component reference.

数据来源 (how data reaches the widget)

The host injects the user's live vault into the widget — you never fetch or bake data:

window.DaimonWidget.onVaultData(function (vault) {
  // vault.nodes:   [{ id, name, type, tags[], created, lastUpdated, content, linkCount }]
  // vault.edges:   [{ source, target }]            // entity↔entity, from body [[wikilinks]]
  // vault.about_user: { name, aliases[], facts[], topTags[] }
  render(vault);
});

Full field types + nuances live in references/data-contract.md. CSP blocks fetch/CDN — data only arrives via this callback; the component runtime (KW.*) is pre-injected by the host.

组件菜单 (component menu — read the reference before using)

想要 组件 reference 状态
按时间看 entity 何时进入记忆 Calendar / Timeline references/calendar.md ✅ ready
全字段表格(可排序/筛选) Table references/table.md ⏳ TODO
按 tag 分组的卡片墙 Gallery references/gallery.md ⏳ TODO
entity 关系网络 Graph references/graph.md ⏳ TODO
「关于你」画像头卡 Profile references/profile.md ⏳ TODO
多组件拼成 dashboard Layout references/layout.md ⏳ TODO

Read the full file on GitHub · 69 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 69 lines · 127 tokens per session scan A fe36b7dad43a

Subscribe to this mod's changes

memory-widget is a skill published in the GitHub repository XyrusCode/ai-sync (2 stars, last pushed 2d ago), licensed MIT. It adds 127 tokens to every session and 1,061 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

babysit-pr

Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…

openai/codex · 114 tokens

imagegen

Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…

openai/codex · 113 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens