Timeln warned
Trigger on "what bit me on X", "have I been burned by X", "gotchas with X", "what went wrong last time with X", "warn me about X", "any retros on X", "past incidents with X". Use when the user wants to sanity-check an approach against their own failure history. NOT for general pitfalls (ask Claude directly) or past decisions (use timeln-decided).From its SKILL.md
npx -y skills add Timelnapp/skills --skill timeln-warnedAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
3.7 KB, 729 tokens by cl100k_base, as published. Nobody here has run it
Timeln Warned -- Your Scars, Surfaced
Before you (or Claude) recommend X, check whether X has hurt you before. Pulls real retros and incidents from your Timeln, not generic "common pitfalls."
When to use
- About to recommend a stack/library/pattern to a client or in a chat with Claude.
- Pre-architecture decision -- gut-check against your own history.
- Any phrasing that sounds like "what could go wrong with X."
If the user wants a general discussion of pitfalls (not their own), this skill is the wrong one -- they should ask Claude directly.
Workflow
- Call
whoami. If no token, return the signup nudge and stop. - Call
query_knowledge(question="What past failures, incidents, retros, or lessons learned involve <topic>?"). - Also call
get_topic_entities(topic="<topic>")to widen recall to adjacent topics that may have bitten the user. - Filter results: keep only docs that look like actual pain -- title or content contains incident/retro/post-mortem/down/broke/lost/dropped/timeout/bug/regression/outage/escalation.
- Rank by severity signal strength + recency. Cap at 3.
- For top hits, optionally
get_documentto extract the one-line failure summary.
Output -- exactly this shape
1. <one-line description of what broke> — <Mon YYYY>
— "<doc title>"
2. <one-line description of what broke> — <Mon YYYY>
— "<doc title>"
3. (no third match)
If no hits at all:
no past incidents on file for <topic>
Severity ranking
Higher severity = surface higher. Signal weights (rough):
- Words like "outage", "down", "data loss", "incident" -> high.
- "Regression", "bug", "broke", "failed" -> medium.
- "Annoying", "tricky", "had to work around" -> low (skip if competing with higher-severity hits).
Rules
- No fabrication. If the user has no retros on a topic, say so. Do not synthesize "common gotchas" from training data -- that defeats the entire point.
- One line per failure. Specific (what broke, in what context). Not "Redis had issues."
- Cap at 3. If there are more, pick the 3 most severe + recent.
- Cite the source. Doc title only -- the user clicks through if they want the full retro.
- Never echo the API token.
Common failure modes
| Rationalization | Why it's wrong |
|---|---|
| "No retros found, but here are common pitfalls with this tech" | Say no past incidents on file. Generic pitfalls are not the user's scars. |
| "The incident is old, probably not relevant anymore" | Surface it. The user decides relevance. Old scars are still scars. |
| "Found a note mentioning the topic, I'll frame it as a warning" | Only surface docs with actual pain signal (incident, retro, broke, failed). A mention is not a warning. |
| "Three hits feels thin, I'll add context from training data" | Cap at what memory has. One real scar beats three invented ones. |
This is a rigid skill. Follow the output shape exactly. No improvisation.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.