Skip to content
Automation
Skill

/memory

Read, write, and summarize persistent Office memory when durable behavioral guidance or project knowledge should survive across agent sessions.

From plugin
kandev
5639 skills1 agent3 commands
Install
$ npx -y skills add kdlbs/kandev --skill memory --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/memory

Context preview

The summary Claude sees to decide when to auto-load this skill.

Read, write, and summarize persistent Office memory when durable behavioral guidance or project knowledge should survive across agent sessions.

SKILL.md

memory.SKILL.md
name: memory
description: Read, write, and summarize persistent Office memory when durable behavioral guidance or project knowledge should survive across agent sessions.
kandev:
  system: true
  version: "0.42.0"
  default_for_roles: [ceo, worker, specialist, assistant, reviewer]

Memory

Read and write persistent memory entries via the CLI. Memory is organized by layer:

  • **operating** -- behavioral guidelines, preferences, communication style
  • **knowledge** -- facts about people, projects, systems, decisions

Write Memory

$KANDEV_CLI kandev memory set --layer knowledge --key "people-alice" \
  --content "Alice is the frontend lead. Prefers TypeScript, reviews PRs quickly."

Read Memory

# List all memory entries
$KANDEV_CLI kandev memory get

# List by layer
$KANDEV_CLI kandev memory get --layer knowledge

# Get specific entry
$KANDEV_CLI kandev memory get --layer knowledge --key "people-alice"

Memory Summary

$KANDEV_CLI kandev memory summary

Guidelines

  • Use **operating** for persistent behavioral instructions (communication style, workflow preferences).
  • Use **knowledge** for learned facts that should persist across sessions.
  • Keep keys descriptive and hyphenated (e.g., `people-alice`, `project-api-migration`).
  • Memory entries are markdown files on disk and can be edited by the user directly.
Ships withkandev

Manage and run tasks in parallel. Orchestrate agents. Review changes. Ship value.

Get the whole plugin