Tide — AI skill for Claude Code
TIDE — a pattern for letting an LLM agent get better at noticing over time.
How to install Tide
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open jkf87/tide and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Tide does
TIDE — a pattern for letting an LLM agent get better at noticing over time. Detection-pattern extraction idea file (EN/KO).
Alternatives in AI
README
TIDE
A pattern for letting an LLM agent get better at *noticing* over time.
This is an idea file. It is designed to be copy-pasted into your own LLM agent (e.g. Claude Code, OpenAI Codex, OpenCode, etc.). Its goal is to communicate the high-level idea; your agent will fill in the specifics as it works with you. It assumes nothing about the kind of work you do or the kind of files you keep.
The core idea
Most agents start every task from a blank slate. They re-derive the same hard-won insights again and again — that a "successful" API call can still return empty content, that an upload tool reporting `200 OK` doesn't mean the remote asset is actually correct, that a relative path breaks the moment you hand work to another process.
TIDE (**T**emplate-**I**nformed **D**etection **E**xtraction) is a small loop that fixes this. After a task succeeds, the agent extracts the *detection patterns* it used — not the solution, but the **sequence of signals it checked to find the problem**. These become reusable templates. On the next task, the agent matches its situation against the accumulated templates and runs their checks proactively.
The more work you do, the more templates accumulate, and the wider the agent's detection coverage on new tasks becomes.
past work → [extraction prompt] → template store
↓
new task ← [application guide] ← matched templates
↓
task done → new pattern noticed → template store (loop)
A template is a detection, not a solution
This is the whole discipline. A template captures *how a problem was found*, never *how it was fixed*.
- ✅ "Check signal X first → then compare against Y → then verify Z"
- ❌ "Install tool X and run command Y"
Fixes are specific to a tool, a version, a moment. Detections generalize: the *shape* of "a success response that hides an empty body" recurs across wildly different domains. Store the shape.
Temp
Related Skills
Frankenterm
Terminal hypervisor for AI agent swarms: real-time pane capture, state-machine pattern detection, and a JSON A
Prompt Architecture
Reference guide for designing production LLM prompt systems in this codebase. Covers the Two-Pass Gap Analysis
LLM Wiki
A pattern for building personal knowledge bases using LLMs. This is an idea file, it is designed to be copy pa
Humanise Text Skill
Strip AI writing patterns from any text. Claude Code skill with 507-entry banned word list, structural pattern
Review Dcell Model
by Mjvolk3 - Reviews old Dcell implementation files, comparing with newer Dango model, noting changes over tim
Claude Code Terminal Pro
Enhance Claude Code terminal with a Gruvbox Dark status line that shows model info and real-time context usage
Related Agents
Impl Regex
Reviews implementation plans from a regex and pattern matching perspective. Use when evaluating completion sig
Better Auth Expert
Use this agent when:\n\n1. After Better Auth Implementation Changes: Any time authentication-related code is m
LLM Specialist
Prompt engineering specialist and LLM expert. Use when crafting prompts, optimizing AI responses, or implement