Claude Skill
alexknowshtml/kuato
Kuato 是一款基于 TypeScript 的 Claude Skill,可帮助您追踪和回顾与 Claude Code 等编程助手的讨论、决策及进度节点,轻松实现进度无缝衔接。
概览
仓库信息
安装这个 Skill
git clone https://github.com/alexknowshtml/kuato.gitRegistry 信息
项目简介
Kuato 是一款专为 Claude Code 设计,但兼容所有支持 Claude Skill 的智能体的技能。它帮助用户轻松回顾与编程助手的过往讨论、已确定的决策及中断节点,只需询问“关于XYZ我们上次讨论到哪了…”,即可无缝衔接进度。
Built for Claude Code but works in any agent that supports skills, easily recall what you discussed with your favorite coding agents, what decisions you made, and where you left off so you can pick up where you left off as easily as asking "where did we leave off on XYZ..."
要点
- 专为 Claude Code 设计
- 兼容所有支持 Claude Skill 的智能体
- 追踪讨论历史和决策
- 轻松回顾进度节点
- 实现对话的无缝衔接
使用场景
- 恢复中断的编程会话
- 回顾与AI助手过往的决策
- 在长期AI协作中保持上下文
- 快速了解先前项目讨论内容
- 跟踪多会话编程项目进度
README 摘要
# Kuato Easily recall what you discussed with your favorite coding agents, what decisions you made, and where you left off so you can pick up where you left off as easily as asking "where did we leave off on XYZ..." This simple, fully local session recall skill works on Claude Code & other coding agents that support skills. Instant use with text search, optional local postgres with faster and more accurate search on larger session histories. ## The Problem Claude Code forgets everything between sessions. You're deep in a feature, close the tab, and the next day ask "where were we?" only to get a blank stare. > **Kuato:** What do you want, Mr. Quaid? > **Quaid:** The same as you; to remember. > **Kuato:** But why? > **Quaid:** To be myself again. > **Kuato:** You are what you do. A man is defined by his actions, not his memory. Kuato gives Claude access to what you *did* - the actions that define your work. ## Two Versions | Feature | File-Based | PostgreSQL | |---------|------------|------------| | **Setup time** | 0 minutes | 5 minutes | | **Dependencies** | Bun only | Bun + Postgres | | **Search speed** | ~1-5 seconds | <100ms | | **Full-text search** | Basic matching | Weighted, ranked | | **Fuzzy matching** | No | Yes (trigram) | | **API server** | No | Yes | | **Token tracking** | Yes | Yes + per-model | | **Best for** | Quick lookups | Daily use | **Start with file-based.** Upgrade to PostgreSQL when you're running 10+ sessions a day and want faster, smarter search. ## Quick Start: File-Based Zero setup. Works directly with Claude Code's JSONL files. ```bash # Clone the repo git clone https://github.com/alexknowshtml/kuato.git cd kuato # Search your sessions bun run file-based/search.ts --query "email system" --days 7 # Filter by tool