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

document-quality-standardsdocument quality standards 搜索

Agent Skill

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

总安装

594

周安装

25

GitHub Stars

46

下载量

208
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/belumume/claude-skills --skill document-quality-standards

简介

强化文档质量验证的视觉优先检查原则。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 主张通过 PNG 渲染比对替代纯文本分析。
  • 建立生成-渲染-检查-修正的质量闭环流程。
  • 适用于发票、报告等高保真要求的文档类型。
  • document-quality-standards 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Document Quality Standards

Patterns that complement the official document-skills plugin. Apply these alongside xlsx, pdf, docx, and pptx skills.

Visual-First Verification

Core principle: Text extraction misses critical details. Always verify visually.

"Only do python printing as a last resort because you will miss important details with text extraction (e.g. figures, tables, diagrams)."

The Render-Inspect-Fix Loop

For ANY document operation (create, edit, convert):

1. Generate/modify document
2. Convert to PNG:
   pdftoppm -png -r 150 document.pdf output
3. Visually inspect the PNG at 100% zoom
4. Fix any issues found
5. REPEAT until clean

Never deliver a document without PNG verification. This catches:

  • Clipped or overlapping text
  • Broken tables
  • Missing figures
  • Formatting inconsistencies
  • Orphans/widows
  • Unreadable characters

Quick Conversion Commands

# DOCX → PDF → PNG
soffice --headless --convert-to pdf document.docx
pdftoppm -png -r 150 document.pdf page

# PDF → PNG directly
pdftoppm -png -r 150 document.pdf page

# PPTX → PDF → PNG
soffice --headless --convert-to pdf presentation.pptx
pdftoppm -png -r 150 presentation.pdf slide

Typography Hygiene

Hyphen Safety

Never use non-breaking hyphens (U+2011). They cause rendering failures in many viewers.

# WRONG - may render as boxes or break layouts
text = "co‑author"  # U+2011 non-breaking hyphen

# CORRECT - always use ASCII hyphen
text = "co-author"  # U+002D standard hyphen-minus

Detection and fix:

# Find problematic hyphens
import re
if '\u2011' in text:
    text = text.replace('\u2011', '-')

# Also watch for other non-ASCII dashes
text = text.replace('\u2013', '-')  # en-dash
text = text.replace('\u2014', '-')  # em-dash (if hyphen intended)

Citation Format

All citations must be human-readable in standard scholarly format:

  • No internal tool tokens (e.g., 【4:2†source】)
  • No malformed references
  • Include: Author, Title, Source, Date, URL (if applicable)
# WRONG
See source 【4:2†source】 for details.

# CORRECT
See Smith (2024), "Document Standards," Journal of Tech, p. 45.

Spreadsheet Formula Patterns

Complements the xlsx skill's color conventions with additional patterns.

Extended Color Codes

Beyond the standard 5 colors (blue inputs, black formulas, green cross-sheet, red external, yellow assumptions):

ColorMeaningUse Case
Gray textStatic constantsValues that never change (tax rates, conversion factors)
Orange backgroundReview/cautionCells needing verification or approval
Light red backgroundErrors/issuesKnown problems to fix

Formula Simplicity

Use helper cells instead of complex nested formulas.

# WRONG - hard to debug, audit, or modify
=IF(AND(B5>100,C5<50),B5*1.1*IF(D5="A",1.2,1),B5*0.9)

# CORRECT - use helper columns
E5: =B5>100           (Threshold check)
F5: =C5<50            (Secondary check)
G5: =IF(D5="A",1.2,1) (Category multiplier)
H5: =IF(AND(E5,F5),B5*1.1*G5,B5*0.9)  (Final calculation)

Benefits:

  • Each step is auditable
  • Errors are easier to trace
  • Business logic is visible
  • Modifications are safer

Avoid Dynamic Array Functions

For maximum compatibility, avoid:

  • FILTER() - not supported in older Excel
  • XLOOKUP() - Excel 365+ only
  • SORT() - dynamic array function
  • SEQUENCE() - dynamic array function
  • UNIQUE() - dynamic array function

Use classic equivalents:

  • FILTER()INDEX/MATCH with helper columns
  • XLOOKUP()INDEX/MATCH
  • SORT() → manual sorting or helper columns
  • SEQUENCE() → manually entered row numbers

Finance-Specific Formatting

Additional to xlsx skill standards:

# Hide gridlines for cleaner appearance
sheet.sheet_view.showGridLines = False

# Add borders above totals (not around every cell)
from openpyxl.styles import Border, Side
thin_top = Border(top=Side(style='thin'))
total_cell.border = thin_top

# Cite sources in cell comments, not adjacent cells
from openpyxl.comments import Comment
cell.comment = Comment("Source: 10-K FY2024, p.45", "Analyst")

Quality Checklist

Before delivering any document:

  • PNG verification completed at 100% zoom
  • No clipped or overlapping text
  • Tables render correctly
  • Figures/images display properly
  • No U+2011 or problematic Unicode
  • Citations are human-readable
  • Formulas use helper cells where complex
  • No Excel formula errors (#REF!, #DIV/0!, etc.)
  • Professional, client-ready appearance

Integration with Official Skills

This skill adds patterns on top of the document-skills plugin:

Official SkillThis Skill Adds
xlsxHelper cells, extended colors, dynamic array warnings
pdfVisual-first philosophy, render-inspect-fix loop
docxTypography hygiene, PNG verification emphasis
pptxSame verification workflow

Always read both this skill AND the relevant official skill when working with documents.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

25.54%
按下载量换算53

Gemini CLI

21.49%
按下载量换算45

Antigravity

17.99%
按下载量换算37

Codex

12%
按下载量换算25

OpenCode

8.22%
按下载量换算17

windsurf

3.68%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills