list_instincts
List recorded behavioral patterns for AI coding agents, including low-confidence observations. Use for audits, debugging, or identifying immature patterns before they become rules.
Instructions
List every recorded pattern (including seedlings), optionally filtered.
Use this for audits, debugging, or when you want to see patterns that
have not yet matured. Unlike suggest(), this returns low-confidence
observations too, which is useful for pruning noise with gc() or
alias_pattern().
For day-to-day agent guidance, prefer suggest() — it filters to
confidence >= 5 automatically and returns a more compact payload.
Args:
min_confidence: Minimum observation count required (inclusive).
1 (default) returns everything including one-offs. Pass 5
for matures only, 10 for rules only.
category: Filter by pattern type. One of: "sequence",
"preference", "fix_pattern", "combo". Empty string = all.
project: Filter by project fingerprint. Empty string = all
projects (global view).
Returns:
Dict with keys: "instincts" (list of full pattern records with
metadata, explain, timestamps), "count" (int).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| min_confidence | No | ||
| category | No | ||
| project | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||