.cursor/skills/agent-memory/SKILL.md
Core Skill. Save and recall reusable project knowledge across sessions. Result must be in Japanese.
npx skillsauth add poko8nada/portfolio-v3 agent-memoryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A lightweight persistent memory workflow for this repository.
.cursor/skills/agent-memory/memories/Use this skill when the user asks to:
Also use proactively when you find knowledge worth preserving:
bio/ as sensitive.Store each memory as Markdown with frontmatter:
---
summary: "1-2 lines: what this memory contains and why it matters"
created: 2026-02-16
updated: 2026-02-16
status: in-progress # in-progress | pending | archived
tags: [strategy]
related: [source/trend/trend.md]
---
summary and created are required.
memories/
├── project-context/
├── trend/
├── strategy/
└── content-ops/
Use kebab-case for folder/file names.
# list summaries quickly
rg "^summary:" .cursor/skills/agent-memory/memories/ --no-ignore --hidden
# filter by keyword
rg "^summary:.*keyword" .cursor/skills/agent-memory/memories/ --no-ignore --hidden -i
# filter by tags
rg "^tags:.*keyword" .cursor/skills/agent-memory/memories/ --no-ignore --hidden -i
documentation
Creates or updates docs/spec.md — the project's functional requirements. Load when defining new features, when requirements have changed, or when docs/spec.md does not exist. Covers what to write, what to omit, and how to express requirements in a way that is verifiable and agent-friendly.
development
Bootstraps project documentation for an existing repository by reading the codebase, README, tests, and package metadata, then creates or updates docs/overview.md, docs/spec.md, and ADRs when significant architectural decisions are discovered. Use when asked to document a repo, extract project purpose, write overview/spec docs, review an existing codebase, or capture architecture decisions from source.
development
Creates or updates docs/overview.md — the project's purpose and background. Load when starting a new project, when the project's goals or context have changed, or when docs/overview.md does not exist. Covers what to write, what to omit, and how to keep the document agent-friendly.
documentation
Implements a new feature using docs-first delivery, boundary-driven structure, and skeleton-first execution. Load when adding a route, feature, or new user-visible behavior.