agent-memory
Persistent memory system for AI agents with semantic search and context management
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Persistent memory system for AI agents with semantic search and context management
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
A library of 150 brand and aesthetic design systems (Apple, Stripe, Linear, Vercel, Notion, GitHub, Figma, Spotify, Tesla, and more, plus styles like brutalism, glassmorphism, neumorphism, editorial, minimal). Use when the user wants a UI to look like a brand, match a brand's style or vibe, or adopt a named aesthetic. Read references/<brand>.md for that brand's colors, typography, spacing, radii, and component style before generating any UI.
Apply Anthropic's official brand colors and typography to artifacts for consistent visual identity and professional design standards. A reference for shaping your own.
Create beautiful visual art in PNG and PDF documents using design philosophy and aesthetic principles for posters, illustrations, and static pieces.
Frontend design and UI/UX development tools for shipping production-ready interfaces with strong typographic and layout discipline.
Apply professional font and color themes to artifacts including slides, docs, reports, and HTML landing pages. Ships 10 pre-set themes.
Orchestrates UI and page design. Use when the user asks to design a page, screen, UI, landing page, dashboard, login flow, pricing page, invoice, resume, FAQ, article, slide deck, social card, or any web layout; to make it look like a brand (Apple, Stripe, Linear, Vercel, Notion, ...); or to build a mockup, prototype, wireframe, or HTML preview. Picks a matching layout skill, optionally adopts a brand design system, then writes a single self-contained HTML file to <project>/.devspace/preview/ so DevSpace can preview it.
| name | agent-memory |
| description | Persistent memory system for AI agents with semantic search and context management |
This built-in skill provides a persistent memory system for AI agents to store, retrieve, and manage contextual information across sessions and interactions.
tool: agent-memory
action: store
memory:
content: "User prefers dark mode and uses VS Code as their primary editor"
tags: ["user_preferences", "development"]
context: "conversation_12345"
importance: 0.8
tool: agent-memory
action: retrieve
query: "What are the user's development preferences?"
context: "current_conversation"
limit: 5
tool: agent-memory
action: update
memory_id: "mem_67890"
updates:
content: "User now prefers light mode during daytime hours"
tags: ["user_preferences", "development", "ui_theme"]
The agent-memory skill can be configured with the following parameters:
storage_backend: Storage backend (sqlite, postgres, memory)embedding_model: Embedding model for semantic search (default: sentence-transformers)max_memory_size: Maximum size of individual memories (default: 10KB)retention_policy: Data retention policy (default: 30 days for non-essential data)privacy_level: Privacy level controls (strict, moderate, relaxed)compression_enabled: Enable memory compression (default: true)This skill is essential for any agent that needs to maintain context across interactions, learn from past experiences, or provide personalized responses based on historical data.