跳到主要内容
知仓学习社ZHICANG

condense

Maximize information density: preserve all instructions, remove prose filler.

不碰外部(只输出文字)无严重或高危命中notque/vexjoy-agent

它会碰到什么

扫了多少1 个文本文件,4 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

Condense

Strip prose filler from .md files. Preserve every instruction. This skill practices what it preaches.

Phase 1: SCOPE

Identify targets.

  1. Single file: User names a path. Read it.
  2. Glob: User gives a pattern (agents/*.md). Expand, list matches, confirm with user.
  3. Batch (10+ files): Dispatch parallel agents, one per file.

Mechanical pre-pass (deterministic, run before LLM condensing): strip trailing whitespace and consecutive blank lines that inflate Opus token counts. The script handles the mechanical reduction so the LLM phase focuses on prose density.

python3 scripts/check-whitespace.py --fix <target-file-or-dir>   # 0=clean, 1=violations fixed

Run on the scoped targets (defaults to agents/**/.md and skills/*/*.md when no path given). Then proceed to the LLM pass on the same files.

Gate: At least one target file identified and readable; mechanical pre-pass run.


Phase 2: CONDENSE

For each file:

  1. Read the full file. Record word count.
  2. Rewrite in place applying the rules below.
  3. Record new word count.

Rules

KEEP (never cut):

  • Every instruction, rule, gate, phase, step
  • Tables, code blocks, commands, paths
  • YAML frontmatter (do not alter)
  • Structure: headers, numbered lists, phase ordering
  • Technical terms naming specific things
  • Reference loading tables
  • Error handling sections
  • Non-obvious "because X" reasoning

CUT:

  • Redundant restatements of the same rule
  • "Because X" on obvious rules
  • Motivational framing ("this will help you", "it is important to note")
  • Filler phrases: "in order to", "it should be noted that", "it is worth mentioning"
  • Examples that repeat what the phase already says
  • Paragraphs saying the same thing from different angles -- merge to one

STYLE: Short sentences. Active voice. Concrete words. If you can cut a word without losing an instruction, cut it.

DELETE TEST

Before cutting any sentence: "If I remove this, does the reader lose an instruction, rule, or decision?" No = cut. Yes = keep.

Boundaries

Do not reorganize sections, change meaning, add ideas, alter paths/commands, drop tables or code blocks, or modify YAML frontmatter values.


Phase 3: VERIFY

For each condensed file:

  1. YAML check: Confirm frontmatter parses.
   python3 -c "import yaml; yaml.safe_load(open('<file>').read().split('---')[1])"
  1. Report: Show | File | Before | After | Reduction | table with word counts.
  2. Instruction check: Grep original for key terms (phase names, gate names, commands). Confirm each appears in condensed version. If any missing, restore from original.

Gate: YAML parses. No instructions lost. Reduction reported.


Error Handling

No prose to cut: Report 0% reduction, move to next file.

Instruction removed: Re-read original, restore missing instruction, re-verify.

YAML broken: Restore original frontmatter verbatim, re-condense body only.

Non-.md file: Skip with warning.

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

它属于哪个仓库

星标★ 419
本站分层T2
该仓技能数122
原文件路径skills/code-quality/condense/SKILL.md

同一个仓库里的其他技能

看这个仓库的全部 122 个技能