get_instinct
Retrieve detailed information about a specific coding pattern from the instinct server, including confidence levels, metadata, and timestamps for full context analysis.
Instructions
Fetch the full record for one pattern by its exact key.
Use this to inspect a single pattern's confidence, level, source,
project, metadata, explain text, and timestamps — typically after
suggest() returns a compact entry and you want the full context.
This is an exact-match lookup. For substring or keyword search,
use search_instincts() instead.
Args:
pattern: Exact pattern key including its prefix (e.g.
"seq:lint->fix->lint", "pref:style=black"). Case-sensitive.
Returns:
Dict with the full pattern record (pattern, confidence, level,
category, source, project, metadata, explain, first_seen,
last_seen). If the pattern does not exist, returns
{"error": "Not found: <pattern>"} — check for the "error" key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pattern | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||