소스 정보
- 저장소
- InugamiDev/ultrathink-oss
- 최근 소스 활동
- 2026년 3월 24일 23:57
- 감지된 SKILL.md 언어
- 영어
- 스타
- 43
- 포크
- 10
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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: