Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

write-compressor写压缩器

Agent Skill

write-compressor 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

768

周安装

33

GitHub Stars

93

下载量

269
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:write-compressor(写压缩器)
来源仓库:https://github.com/letta-ai/skills
仓库路径:skills/write-compressor
安装命令:
npx skills add https://github.com/letta-ai/skills --skill write-compressor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill write-compressor

简介

write-compressor 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中获取信息的场景。
  • 可通过 npx skills add 命令安装并使用,具体用法需结合原始 README 进一步确认。
  • 安装前建议确认权限范围和维护状态,注意是否触发联网或文件读写操作。
  • 建议在使用前核验来源仓库内容,确保功能与预期一致。

SKILL.md

Write Compressor

Overview

This skill provides strategies for implementing encoders that produce output compatible with existing decoders. It applies to tasks involving compression algorithms, arithmetic coding, entropy encoding, or any scenario requiring the construction of an encoder as the mathematical inverse of a decoder.

Core Principle: Encoder as Decoder Inverse

When implementing an encoder for an existing decoder, the encoder must be the exact mathematical inverse of the decoder operations. Every decoder operation has a corresponding encoder operation that must produce the exact values the decoder expects to read.

Mathematical Derivation First

Before writing any code:

  1. Document the decoder's state machine - Identify all state variables (e.g., low, high, range, fraction) and how they evolve
  2. Derive encoder operations algebraically - For each decoder read operation, derive what the encoder must write
  3. Verify the inverse relationship on paper - Prove mathematically that encoder output → decoder input produces the original data

Recommended Approach

Phase 1: Understand the Decoder Completely

  1. Read the entire decoder implementation thoroughly
  2. Trace through the decoder manually with simple inputs
  3. Document every state variable and its valid ranges
  4. Identify the bit/byte reading patterns and what values they produce
  5. Map out conditional branches and what triggers each path

Phase 2: Start with Minimal Cases

Build the encoder incrementally, verifying each step:

  1. Zero operations - Encode an empty/minimal input and verify it decodes correctly
  2. Single simple operation - Encode one basic element (e.g., one literal character)
  3. Two operations - Verify state carries correctly between operations
  4. Gradually increase complexity - Only after simpler cases work

Phase 3: Side-by-Side State Verification

Create a verification harness that:

  1. Runs encoder and decoder in parallel (or simulates this)
  2. Compares state variables after every single operation
  3. Immediately identifies the first point of divergence
  4. Prints both encoder and decoder state at each step for debugging

Phase 4: Full Implementation

Only after phases 1-3 succeed, proceed to full file encoding.

Verification Strategies

Unit Testing Individual Components

For arithmetic coding or similar algorithms, test each component independently:

  • Bit encoding/decoding in isolation
  • Integer encoding/decoding in isolation
  • Symbol encoding/decoding in isolation
  • Back-reference or special token encoding in isolation

Round-Trip Testing

original_data → encoder → compressed → decoder → recovered_data
assert original_data == recovered_data

Run round-trip tests at each complexity level before proceeding.

State Trace Comparison

Build a debugging mode that outputs encoder state at each step. Feed the compressed output to the decoder with similar tracing. Compare traces to find divergence.

Common Pitfalls

1. Renormalization Formula Errors

In arithmetic coding, the renormalization step is critical. The formula for outputting bytes during renormalization must exactly match how the decoder reconstructs the fraction from bytes.

Prevention: Trace through specific numeric examples by hand. If the decoder reads bytes as fraction += read_byte() - 1, derive exactly what the encoder must output.

2. Off-by-One Errors

Common in:

  • Range calculations
  • Byte output values (e.g., +1, -1, % 256 adjustments)
  • Loop bounds for flush/finalization

Prevention: Use concrete numeric examples with known expected outputs.

3. Flushing/Finalization Errors

The final bytes to flush the encoder state are often implemented incorrectly.

Prevention: Test the flush procedure separately with known encoder states.

4. Premature Optimization

Worrying about output size before achieving correctness.

Prevention: First make it work, then make it small. A working 3KB output is infinitely better than a broken 2KB output.

5. Trial-and-Error Implementation

Making random changes to formulas hoping something works.

Prevention: Every change should be justified by mathematical reasoning about why the previous version was wrong and why the new version is correct.

6. Parallel Implementation Attempts

Creating multiple encoder files (encoder.py, encoder2.py, encoder_v3.py) spreads effort thin.

Prevention: Work on one implementation. Use version control to track changes. Debug deeply rather than rewriting from scratch.

Debugging Strategy

When the decoder crashes or produces wrong output:

  1. Identify the first failure point - Where exactly does decoding first go wrong?
  2. Compare states at that point - What did the encoder think the state was vs. what the decoder computed?
  3. Trace backward - Find the operation that caused the divergence
  4. Fix with mathematical justification - Don't just try random changes

For Segmentation Faults in Decoder

A segfault typically means:

  • Invalid memory access from corrupted indices
  • The compressed stream is structurally invalid
  • The encoder produced bytes the decoder interprets as impossible values

Debug by:

  1. Adding bounds checking to the decoder (temporarily)
  2. Printing decoder state before the crash
  3. Identifying what impossible state was reached
  4. Tracing back to what encoder output caused this

Decision Checklist

Before claiming the encoder is complete:

  • Does the simplest possible input (empty/zero) encode and decode correctly?
  • Does a single-element input encode and decode correctly?
  • Have edge cases been tested (empty strings, maximum values, boundary conditions)?
  • Has a side-by-side state trace been performed for at least one non-trivial input?
  • Does the full input encode and decode correctly?
  • If there are size constraints, does the output meet them?

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.58%
按下载量换算74

Gemini CLI

20.6%
按下载量换算55

Codex

17.2%
按下载量换算46

Antigravity

12.26%
按下载量换算33

OpenCode

7.61%
按下载量换算20

windsurf

3.24%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills