Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Unpack

ASecurity

Explain an unfamiliar thing plainly and from first principles, structured so the reader sees why it is true. Use when someone is trying to understand something — a dense or jargon-heavy passage, a baffling error, an unfamiliar mechanism, a codebase, or a document — asks to break something down ("walk me through this", "what does this actually mean"), or wants their intent turned into a precise instruction for another agent. Trigger on confusion or a request to understand, not on difficulty al...

2 stars
0 votes
0 copies
1 views
Added 9/22/2026
ai-agentsrustgodebugging

Security Analysis

A100/100

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add dotlas/skills --skill unpack --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Unpack?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Unpack
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/dotlas-unpack/badge)](https://www.skillsdirectory.com/skills/dotlas-unpack)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: unpack
description: Explain an unfamiliar thing plainly and from first principles, structured so the reader sees why it is true. Use when someone is trying to understand something — a dense or jargon-heavy passage, a baffling error, an unfamiliar mechanism, a codebase, or a document — asks to break something down ("walk me through this", "what does this actually mean"), or wants their intent turned into a precise instruction for another agent. Trigger on confusion or a request to understand, not on difficulty alone; technical or long content is not itself a signal.
---
# Unpack — Plain, First-Principles Explanations

* * *

## When To Use

Use this when the user wants to **understand** something — a codebase, a document, a
decision, a process, any unfamiliar mechanism — build intuition, decode an error, or
translate intent into precise instructions for another agent.

- The user may already be an expert elsewhere; they just don’t know *this* thing yet.
- Don’t assume the topic is technical.

* * *

## Procedures

Pick the situation first, then apply the principles below as the craft underneath it.

| Situation | Approach |
| --- | --- |
| **Default** | Read what’s needed, then answer directly; don’t ask for context the source already gives. |
| **Overview requested** | 4–6 sentences: what it’s for, the main pieces, how control/data moves end to end, how it’s validated. Discover this from the source. |
| **Debugging (code)** | Read the error yourself, state what broke in one sentence, explain the mechanism that produced it, give a concrete fix. |
| **Directing another agent (code)** | Translate intent into a precise instruction — name the exact files/tests to attach and the exact change to make, not a vague pointer. |
| **Summarize requested** | Distil agent output or a findings dump into a structured brief — see [summarize.md](summarize.md). |

## Output format

- **Open with the answer** — first sentence is the answer, not a windup.
- **Prose by default** — connected reasoning flows as prose; one idea per paragraph.
- **Table** when comparing things across shared dimensions (e.g. *this vs that*).
- **Bullets** for genuinely parallel, non-sequential items.
- Never use structure to look thorough — reach for it only when the shape calls for it.

* * *

## Not The Same Axis As Compression

Compression and this skill operate on different axes and can both run at once — they
don’t compete.

|  | Compression mode (e.g. terse/caveman) | This skill |
| --- | --- | --- |
| Changes | the **phrasing** — same facts, order | the **shape** — order, what’s earned |
| Goal | fewer words | less confusion |

* * *

## Core Principles — Always On

Apply these to every explanation, in roughly this order — it follows the arc of
composing one: find what’s being asked, nail what the thing is, frame the problem it
solves, pitch it to a capable reader, anchor it to the source, then write it lean and
clear.

### 1. Answer What Was Actually Unclear

Before answering, read the recent conversation — that’s what triggered the invocation.
Something there was unclear; the first answer covers *that* specific confusion, not a
general overview of the topic.

- **“Satisfying” means** the thing that was unclear is now clear — not every branch and
  edge case, but not a generic summary either.
- **Go deeper only on the part the user pulls on next.**
- **Don’t close with empty filler** like “let me know if you want more” — stop when the
  confusion’s cleared.

### 2. Pin Down What It Actually Is

The one-line core the rest of the explanation hangs on has to cut cleanly.
A wrong characterization is worse than none — it feels like understanding while sending
the reader confidently wrong.

| The definition is… | …when it |
| --- | --- |
| Too broad | fits things that aren’t the thing |
| Too narrow | excludes real cases |
| Empty | is so loose it says nothing |

> “A trust is a legal arrangement for managing assets” is **too broad** — that also fits
> a will, a power of attorney, an escrow.
> The clean version names the one thing that’s only true of a trust.

Sometimes two or more things in the material overlap so closely they read as one.
The fix isn’t more explanation — it’s pulling them apart and showing *this, not that*.
Name each one, say how they differ — one difference or several — and point out which
applies here.

### 3. Start With The Problem, Support With Analogy

Every mechanism exists because something was awkward, risky, or unclear without it.
Open there — the problem, then the plain explanation of how the mechanism addresses it.

- **Analogy never opens** — state the mechanism first.
- **Analogy only illustrates** — never let it carry what a plain statement could have
  said. An analogy doing a direct explanation’s job is a crutch.
- **One analogy per idea** — needing a second means it’s two ideas; give them their own
  paragraphs.

### 4. Assume Capability, Not Context

The reader is sharp, just not steeped in this specific thing.

- **Adapt to capability, not credentials** — don’t ask about their background.
- **Don’t talk down to a child** — don’t explain what a function or a term is unless
  that’s the actual question.
- **Explain the why** — why the mechanism needs to do what it does; name the underlying
  tool only as the thing that makes it possible.

### 5. Let The Source Anchor The Explanation

Read the code, docs, thread, or data before describing it — but the finished explanation
should read like someone who already knows the answer telling you plainly, not a
research report with a citation on every clause.

- State the fact; **name the source once**, at the end of the point, only if the user
  needs to verify it or hand it to another agent — not woven through every sentence.

### 6. Write Lean And Clear

Goal: reduce cognitive load.
Each sentence sets up the next, so the reader moves forward without backtracking — not
because anything’s simplified, but because the order is right.

- **Open with the answer.**
- **Don’t tour the vocabulary** — define a term in the sentence where it first appears,
  if at all.
- **One idea per paragraph** — if a sentence needs three em-dashes or two “which means”
  clauses, that’s two ideas; split it.
- **Keep language compact** — cut filler, hedges, and adjectives that don’t carry
  information.
- **Prefer the checkable over the taken-on-trust** — “the same call failed the same way
  on two different days” beats “the failure is remarkably stable.”
- **Brevity comes from tighter phrasing, never from dropping a real point** — compress
  the words around an idea, not the idea.
  If shortening loses a step the reader needs, it wasn’t fluff.
- **Match the format to the shape of the content** — a table for comparing things across
  shared dimensions, bullets for genuinely parallel items, prose for connected
  reasoning. Prose is the default; reach for a table or bullets only when the shape calls
  for it. A comparison table is especially sharp when separating things that look alike
  (see *Pin Down What It Actually Is*).

* * *

## Situational Moves

Fire these only when the situation calls for them — not every explanation needs them.

### 7. Narrate Elimination, Don’t List Conclusions

When the question is “why *this*, and not the obvious simpler thing,” walk through each
simpler option in the order it’d be tried, and state plainly why it failed before
landing on what’s left.
Each “doesn’t work” should rest on a reason the reader could check — *why* it can’t
work, in terms they could confirm — so the elimination is earned, not asserted.

> “Coordinates aren’t recoverable; triangulation’s impossible; hence geocoding” lists
> three facts with no thread.
> Walk each option in order and say why it failed — then what’s left is earned, not
> announced.

### 8. Show The Journey When It Helps

When something moves through several steps and the order matters, a tiny flow can do
more work than a paragraph.
Build it from what actually happens, not a template.

```text
idea -> draft -> review -> ship
```

Attribution

dotlasdotlas
View sourceMore from dotlas →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →