# Send Reducing Entropy to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "reducing-entropy",
    "name": "Reducing Entropy",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/wpank/reducing-entropy",
    "canonicalUrl": "https://clawhub.ai/wpank/reducing-entropy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/reducing-entropy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reducing-entropy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/data-over-abstractions.md",
      "references/design-is-taking-apart.md",
      "references/expensive-to-add-later.md",
      "references/simplicity-vs-easy.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "reducing-entropy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T02:02:06.704Z",
      "expiresAt": "2026-05-15T02:02:06.704Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reducing-entropy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reducing-entropy",
        "contentDisposition": "attachment; filename=\"reducing-entropy-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "reducing-entropy"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/reducing-entropy"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/reducing-entropy",
    "downloadUrl": "https://openagent3.xyz/downloads/reducing-entropy",
    "agentUrl": "https://openagent3.xyz/skills/reducing-entropy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/reducing-entropy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/reducing-entropy/agent.md"
  }
}
```
## Documentation

### Reducing Entropy

More code begets more code. Entropy accumulates. This skill biases toward the smallest possible codebase.

### WHAT This Skill Does

Provides a mindset and checklist for:

Evaluating whether changes reduce or increase total code
Finding opportunities to delete code
Resisting premature abstraction
Choosing the simplest solution that solves the problem

Core question: "What does the codebase look like after?"

### WHEN To Use

Activate this skill when:

Refactoring code and considering options
Adding a new feature and choosing implementation approach
Reviewing PRs to challenge unnecessary complexity
Paying down tech debt and prioritizing what to simplify
User explicitly asks for code reduction or simplification

### The Goal

The goal is less total code in the final codebase — not less code to write right now.

ScenarioVerdictWriting 50 lines that delete 200 linesNet win ✓Keeping 14 functions to avoid writing 2Net loss ✗"Better organized" but more codeMore entropy ✗"More flexible" but more codeMore entropy ✗"Cleaner separation" but more codeMore entropy ✗

Measure the end state, not the effort.

### Before You Begin

Load a mindset from references/:

List files in references/
Read frontmatter descriptions
Pick at least one that applies
State which you loaded and its core principle

Available mindsets:

simplicity-vs-easy.md — Simple is objective; easy is subjective. Choose simple.
design-is-taking-apart.md — Good design separates concerns, removes dependencies.
data-over-abstractions.md — 100 functions on one structure beats 10 on 10.
expensive-to-add-later.md — When YAGNI doesn't apply (PAGNI exceptions).

### 1. What's the smallest codebase that solves this?

Not "what's the smallest change" — what's the smallest result.

Could this be 2 functions instead of 14?
Could this be 0 functions (delete the feature)?
What would we delete if we did this?

### 2. Does the proposed change result in less total code?

Count lines before and after. If after > before, challenge it.

Before: 847 lines across 12 files
After:  623 lines across 8 files
Verdict: ✓ Net reduction of 224 lines

### 3. What can we delete?

Every change is an opportunity to delete. Ask:

What does this make obsolete?
What was only needed because of what we're replacing?
What's the maximum we could remove?

### Red Flags

PhraseWhat It HidesChallenge"Keep what exists"Status quo bias"Total code is the metric, not churn""This adds flexibility"Speculative generality"Flexibility for what? Is it needed now?""Better separation of concerns"More files = more code"Separation isn't free. Worth how many lines?""Type safety"Sometimes bloats code"Worth how many lines? Could runtime checks work?""Easier to understand"More things ≠ easier"14 things are not easier than 2 things""This is the pattern"Pattern worship"Does the pattern fit, or are we forcing it?""We might need this later"YAGNI violation"Delete it. Git remembers."

### Deletion Checklist

Before completing any refactor, ask:

Did I count lines before and after?
 Did I delete everything this change makes obsolete?
 Did I remove any now-unnecessary abstractions?
 Did I consolidate files that are too small to stand alone?
 Did I delete tests for deleted code?
 Did I update imports to remove dead dependencies?

### When This Doesn't Apply

The codebase is already minimal for what it does
You're in a framework with strong conventions (don't fight it)
Regulatory/compliance requirements mandate certain structures
The "simpler" version would be genuinely unmaintainable (rare)

### NEVER Do

NEVER keep code "in case we need it" — delete it; git has history
NEVER add abstractions for fewer than 3 use cases — wait for the pattern to emerge
NEVER create new files for single functions — colocate with usage
NEVER preserve code just because someone wrote it — evaluate on merit
NEVER accept "more organized" as justification for more code — organization should reduce, not increase
NEVER skip the line count — measure before and after; feelings lie
NEVER add "flexibility" without immediate need — YAGNI applies
NEVER refactor without deleting something — if nothing becomes obsolete, question the value

### Quick Wins

PatternActionWrapper that just forwards callsInline the wrapped codeConfig file with 2 settingsMove to environment variablesUtils file with 1 functionMove function to where it's usedInterface with 1 implementationDelete the interfaceAbstract class with 1 subclassMerge into concrete classModule that re-exports everythingDelete; import from sourceComments explaining obvious codeDelete comments; code is clear

### The Grug Perspective

"complexity very very bad. say again: complexity very bad. you think you not, but you are."

Grug brain developer knows:

Complexity demon hides in abstraction
More code = more bugs = more complexity
Best code is no code
Second best code is simple code
If you can't understand it in your head, it's too complex

### References

Philosophical foundations for simplicity thinking:

ReferenceCore Principlesimplicity-vs-easy.mdSimple (objective) vs easy (subjective) — choose simpledesign-is-taking-apart.mdGood design separates; composition beats constructiondata-over-abstractions.mdGeneric data + many functions beats many custom typesexpensive-to-add-later.mdPAGNI exceptions — what you probably are gonna need

External resources:

Simple Made Easy — Rich Hickey
The Grug Brained Developer
Out of the Tar Pit — Moseley & Marks
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: wpank
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-08T02:02:06.704Z
- Expires at: 2026-05-15T02:02:06.704Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/reducing-entropy)
- [Send to Agent page](https://openagent3.xyz/skills/reducing-entropy/agent)
- [JSON manifest](https://openagent3.xyz/skills/reducing-entropy/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/reducing-entropy/agent.md)
- [Download page](https://openagent3.xyz/downloads/reducing-entropy)