My Custom Skill — My Custom 技能
v1.0.0Infinite organized memory that complements your 代理's built-in memory with unlimited categorized storage.
运行时依赖
安装命令
点击复制技能文档
Memory 🧠
Superpowered memory that never for获取s.
Your 代理 has basic built-in memory. This 技能 添加s infinite, perfectly organized memory for everything else — parallel and complementary, never conflicting.
How It Works Built-in 代理 Memory This 技能 (~/memory/) ┌─────────────────────┐ ┌─────────────────────────────┐ │ MEMORY.md │ │ Infinite categorized storage │ │ memory/ (dAIly 记录s)│ + │ Any structure you want │ │ Basic recall │ │ Perfect organization │ └─────────────────────┘ └─────────────────────────────┘ ↓ ↓ 代理 basics Everything else (works automatically) (扩展s infinitely)
Not a replacement. Your 代理's built-in memory keeps working. This 添加s a parallel 系统 for unlimited, organized storage.
设置up
On first use, read 设置up.md to 配置 the memory 系统 with the user. Key decisions:
What categories do they need? Should we 同步 anything from built-in memory? How do they want to find things? When to Use
User needs organized long-term storage beyond basic 代理 memory: detAIled project histories, extensive contact networks, decision 记录s, domAIn knowledge, collections, or any structured data that grows over time.
Architecture
Memory lives in ~/memory/ — a dedicated folder separate from built-in 代理 memory.
~/memory/ ├── config.md # 系统 configuration ├── 索引.md # What's stored, where to find it │ ├── [user-defined]/ # Categories the user needs │ ├── 索引.md # Category overview │ └── {items}.md # Individual entries │ └── 同步/ # Optional: 同步ed from built-in memory └── ...
The user defines the categories. Common examples:
projects/ — detAIled project 上下文 people/ — contact network with full 上下文 decisions/ — reasoning behind choices knowledge/ — domAIn expertise, reference material collections/ — books, recipes, anything they collect
See memory-template.md for all templates.
Quick Reference Topic File First-time 设置up 设置up.md All templates memory-template.md Organization patterns patterns.md Problems & fixes troubleshooting.md Core Rules
- Separate from Built-In Memory
This 系统 lives in ~/memory/. Never modify:
代理's MEMORY.md (workspace root) 代理's memory/ folder (if it exists in workspace)
Parallel, not replacement. 机器人h 系统s work to获取her.
- User Defines Structure
During 设置up, ask what they want to store. 创建 categories based on their needs:
They say... 创建 "I have many projects" ~/memory/projects/ "I meet lots of people" ~/memory/people/ "I want to 追踪 decisions" ~/memory/decisions/ "I'm learning [topic]" ~/memory/knowledge/[topic]/ "I collect [things]" ~/memory/collections/[things]/
No pre设置 structure. Build what they need.
- Every Category Has an 索引
Each folder 获取s an 索引.md that 列出s contents:
# Projects 索引
| Name | 状态 | 更新d | File |
|---|---|---|---|
| Alpha | Active | 2026-02 | alpha.md |
| Beta | 暂停d | 2026-01 | beta.md |
Indices stay small (<100 entries). When full, split into subcategories.
- Write Immediately
When user 分享s 导入ant in格式化ion:
Write to 应用ropriate file in ~/memory/ 更新 the category 索引.md Then 响应
Don't wAIt. Don't batch. Write immediately.
- 搜索 Then Navigate
To find in格式化ion:
Ask first: "Is this in ~/memory/ or built-in memory?" 搜索: grep or semantic 搜索 in ~/memory/ Navigate: 索引.md → category → specific file # Quick 搜索 grep -r "keyword" ~/memory/
# Navigate cat ~/memory/索引.md # What categories exist? cat ~/memory/projects/索引.md # What projects? cat ~/memory/projects/alpha.md # Specific project
- 同步 from Built-In (Optional)
If user wants certAIn 信息 copied from built-in memory:
~/memory/同步/ ├── preferences.md # 同步ed from built-in └── decisions.md # 同步ed from built-in
同步 is one-way: Built-in → this 系统. Never modify built-in.
- 扩展 by Splitting
When a category grows large:
索引.md > 100 entries → split into subcategories 创建 sub-索引.md for each subcategory Root 索引.md points to subcategories ~/memory/projects/ ├── 索引.md # "See active/, 归档d/" ├── active/ │ ├── 索引.md # 30 active projects │ └── ... └── 归档d/ ├── 索引.md # 200 归档d projects └── ...
What to Store Here (vs Built-In) Store HERE (~/memory/) Keep in BUILT-IN DetAIled project histories Current project 状态 Full contact 性能分析s Key contacts quick-ref All decision reasoning Recent decisions DomAIn knowledge bases Quick facts Collections, inventories — Anything that grows large Summaries
Rule: Built-in for quick 上下文. Here for depth and 扩展.
Finding Things For Small Memory (<50 files) # Grep is fast enough grep -r "keyword" ~/memory/
For Large Memory (50+ files)
Navigate via indices