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

overfull-hbox溢出的水平盒

Agent Skill

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

总安装

745

周安装

34

GitHub Stars

93

下载量

280
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill overfull-hbox

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合根据关键词、任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。
  • overfull-hbox 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Overfull Hbox Fix with Constrained Synonyms

This skill provides guidance for fixing LaTeX overfull hbox warnings by replacing words with shorter synonyms, while strictly adhering to a predefined list of allowed replacements.

Problem Overview

Overfull hbox warnings occur when LaTeX cannot fit text within the specified line width. The solution involves replacing words with shorter synonyms, but with a critical constraint: only words explicitly listed in a synonyms file may be replaced, and they may only be replaced with synonyms from that same file.

Approach

Step 1: Parse and Understand the Constraints

Before making any changes:

  1. Read the entire synonyms file completely (not just a truncated view)
  2. Build a data structure mapping each word to its allowed replacements
  3. Note that replacements are typically bidirectional (if A→B is allowed, B→A is also allowed)
  4. Identify which words in the document are candidates for replacement

Step 2: Identify Problem Lines

Compile the LaTeX document and parse the log output to identify:

  1. Which lines have overfull hbox warnings
  2. The severity of each overflow (how many points over)
  3. The exact text content of each problematic line

Step 3: Plan Replacements Systematically

For each problematic line:

  1. Identify all words that appear in the synonyms file
  2. Calculate character savings for each possible replacement
  3. Prioritize replacements that provide the most character savings
  4. Consider cumulative effect of multiple small replacements

Step 4: Check for Grammatical Consequences

Critical: Before executing any replacement, verify it does not require grammatical changes:

  • Article changes: "a" ↔ "an" depend on the following word's initial sound

- Replacing a word starting with a consonant sound with one starting with a vowel sound (or vice versa) would require changing the preceding article - Articles are typically NOT in the synonyms file, making this an illegal modification

  • Other grammatical dependencies: pluralization, verb agreement, etc.

Example of problematic replacement:

  • Original: "a hostile environment"
  • Proposed: "an adverse environment" (changing "hostile" → "adverse")
  • Problem: This also changes "a" → "an", which violates constraints if articles are not in the synonyms file

Step 5: Execute Atomic Edits with Verification

For each replacement:

  1. Make single-word replacements (not bulk edits)
  2. Immediately verify the edit only changed the intended word
  3. Compare original and modified text token-by-token
  4. Confirm no unintended grammatical adjustments were made

Step 6: Iterative Compilation and Validation

After each change:

  1. Recompile the document
  2. Check if the warning is resolved
  3. Verify no new warnings were introduced
  4. If issues remain, continue with additional replacements

Verification Strategies

Pre-Edit Verification

Before making any edit, verify:

  1. The word being replaced exists in the synonyms file
  2. The replacement word is in that word's synonym list
  3. No grammatical changes (articles, plurals) are required
  4. The replacement will actually reduce line width

Post-Edit Verification

After making each edit:

  1. Diff the original and modified text at the word/token level
  2. Confirm only the intended word changed
  3. Verify no articles or other words were modified
  4. Recompile to confirm the fix worked

Final Validation Checklist

Before submitting:

  1. All overfull hbox warnings are eliminated
  2. Every modified word is in the synonyms file
  3. Every replacement is an allowed synonym for the original word
  4. No words outside the synonyms file were changed (including articles)
  5. Document compiles without errors

Common Pitfalls

1. Article Changes (Most Critical)

Changing adjectives that start with consonant sounds to ones starting with vowel sounds (or vice versa) implicitly requires article changes:

  • "a unique" → "an unusual" (illegal if "a"/"an" not in synonyms)
  • "an evil" → "a wicked" (same issue)

Prevention: Before any replacement, check if the preceding word is an article and if the replacement changes the initial sound category.

2. Incomplete Synonyms File Reading

Reading only part of the synonyms file can lead to:

  • Missing valid replacement options
  • Not knowing all allowed words
  • Making replacements that seem valid but aren't

Prevention: Always read the complete synonyms file before starting.

3. Bulk Edits Without Tracking

Using multi-edit operations makes it difficult to:

  • Track exactly what changed
  • Verify each change individually
  • Catch unintended modifications

Prevention: Make atomic, single-word edits and verify each one.

4. Focusing Only on Compiler Output

Fixing overfull hbox warnings without verifying constraint compliance:

  • May "solve" the typographic problem
  • But violate the fundamental task requirements

Prevention: Always verify constraint compliance before considering a fix successful.

5. Grammatical Auto-Corrections

Unconsciously making grammatical adjustments:

  • Changing articles to match new words
  • Adjusting verb forms
  • Modifying punctuation

Prevention: Be explicitly aware that no changes should be made outside the synonyms file, even if grammatically necessary.

Workflow Summary

  1. Parse synonyms file into a lookup structure
  2. Compile document and identify problem lines
  3. For each problem line: a. Find candidate words from synonyms file b. Calculate potential character savings c. Check for grammatical dependencies (especially articles) d. Make atomic replacement if safe e. Verify only intended word changed f. Recompile and check results
  4. Final validation: all warnings gone AND all changes are allowed

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.49%
按下载量换算77

Gemini CLI

23.07%
按下载量换算65

Antigravity

17.47%
按下载量换算49

windsurf

11.25%
按下载量换算32

OpenCode

6.93%
按下载量换算19

Codex

3.03%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills