AgentStack
SKILL verified MIT Self-run

Learn

skill-hnikoloski-imlazy-imlazy-learn · by hnikoloski

Record router misclassifications to ~/.claude/imlazy/heuristics.log so the router adapts over time. Invoked by workflow skills on auto-escalation or on user feedback

No reviews yet
0 installs
0 views
view→install

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.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-hnikoloski-imlazy-imlazy-learn)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
today

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

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 →
Are you the author of Learn? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

learn

When to invoke

  1. Auto-escalation fired: the router classified Quick, work started, verification failed, escalated to Standard. Log it.
  2. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.