用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/InugamiDev/ultrathink-oss --skill ut-recall命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | ut-recall |
| version | 1.0.0 |
| layer | utility |
| triggers | ["/ut-recall","what do you remember","recall memories","search memory"] |
| description | Query the UltraThink persistent brain for stored memories |
| linksTo | ["ut-remember"] |
| linkedFrom | ["scout","debug","plan"] |
| preferredNextSkills | ["ut-remember"] |
Search and retrieve memories from the UltraThink persistent brain. This is the manual query — memories are already auto-recalled on session start, but this lets you dig deeper or search for specific topics.
/ut-recall [query] — Search memories by text
/ut-recall --category <cat> — Filter by category
/ut-recall --stats — Show memory statistics
Run the memory-runner CLI to query the database:
cd <ultrathink-root> && npx tsx memory/scripts/memory-runner.ts search '<query>'
Alternatively, use the existing searchMemories() API directly by reading from the database.
Format results clearly for the user.
Search memory content with ILIKE matching:
/ut-recall authentication → finds memories about auth decisions
/ut-recall bun npm → finds package manager preferences
/ut-recall --category decision → all architectural decisions
/ut-recall --category preference → all user preferences
/ut-recall --category solution → all bug fixes and workarounds
Show memory database overview:
Present results as a concise list:
Found 3 memories:
1. [decision] Chose Drizzle over Prisma for type-safe queries (importance: 8)
Tags: #architecture #database
Saved: 2024-12-15
2. [preference] User prefers bun over npm (importance: 9)
Tags: #preference #tooling
Saved: 2024-12-14
3. [convention] Components use PascalCase, hooks use camelCase (importance: 6)
Tags: #convention #frontend
Saved: 2024-12-13
The auto-recall system loads top memories by scope and importance on session start. Use /ut-recall when: