From papyrus
Atomic — mark a memory deprecated, optionally with supersedes link
How this skill is triggered — by the user, by Claude, or both
Slash command
/papyrus:papyrus-deprecateThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Retire a memory. One operation: set status=deprecated. Optional `by` adds a `supersedes` link to the replacement.
Retire a memory. One operation: set status=deprecated. Optional by adds a supersedes link to the replacement.
backend.find_by_id(id).status == Status.DEPRECATED AND (by absent OR any link is supersedes→by)input:
id: non-empty string
by: optional replacement id
output:
side effect: status=deprecated; if by given, links gets one SUPERSEDES link
stdout: "Deprecated <id>" (+ " (superseded by <by>)" if by given)
exit: 0 on success
papyrus get <id> # shows Status: deprecated; if by given, shows link supersedes → <by>
MCP tool memory_deprecate:
{"id": "DEC_old", "by": "DEC_new"}
Supersession chain:
papyrus-write new DEC_v3 (the replacement)papyrus-deprecate DEC_v2 with by=DEC_v3DEC_v1 ← DEC_v2 ← DEC_v3 (active)Pure retirement (no replacement):
papyrus-deprecate DEC_old (no by)papyrus-write — create replacement before deprecatingshared/link-types.md — supersedes semanticsProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub bburda/papyrus --plugin papyrus