Install
$ agentstack add skill-hnikoloski-imlazy-imlazy-learn ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Verified badge
Passed review? Show it. Paste this badge into your README — it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
learn
When to invoke
- Auto-escalation fired: the router classified Quick, work started, verification failed, escalated to Standard. Log it.
- User feedback: user signals classification was wrong ("this didn't need all that ceremony" or "this was bigger than you thought"). Log it.
What to write
Append one line to ~/.claude/imlazy/heuristics.log (create the directory if needed):
\t\t\t
Example:
2026-05-15T14:32:00Z quick standard add a /health endpoint
Implementation
mkdir -p ~/.claude/imlazy
printf '%s\t%s\t%s\t%.50s\n' \
"$(date -u +%Y-%m-%dT%H:%M:%SZ)" \
"$PREDICTED_TIER" \
"$ACTUAL_TIER" \
"$TASK_SUMMARY" \
>> ~/.claude/imlazy/heuristics.log
How the router uses it
lazy-router reads the last 20 lines of this file on every classification. Recent (≤30 days) misclassification patterns shift borderline classifications toward the tier that turned out correct in similar past cases.
What NOT to log
- Successful classifications — signal-to-noise only (log misclassifications only).
- Task content beyond 50 chars — truncation limits accidental leakage of sensitive task descriptions.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: hnikoloski
- Source: hnikoloski/imlazy
- License: MIT
- Homepage: https://hnikoloski.github.io/imlazy/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.