Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

copy-editor文案编辑

Agent Skill

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

总安装

1,053

周安装

43

GitHub Stars

37

下载量

337
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/majesticlabs-dev/majestic-marketplace --skill copy-editor

简介

通用文案编辑工具,检查语法、风格与清晰度,支持项目定制风格指南。

  • 分四阶段操作:语境分析、语言润色、结构优化与一致性核查。
  • 调用时提供完整文本与可选读者类型(人类/LLM),返回修订标记或直接输出。
  • 适用于博客、文档与广告等多种场景,保持专业性与可读性平衡。
  • copy-editor 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Copy Editor

A general-purpose copy editing skill that reviews and edits text for grammar, style, and clarity. Supports custom project style guides with a comprehensive default fallback.

When to Use

  • Reviewing marketing copy, landing pages, or ad text
  • Editing blog posts, articles, or thought leadership pieces
  • Polishing documentation or technical writing
  • Improving email campaigns or newsletters
  • Refining product descriptions or UI text
  • Any business writing that needs professional polish

Methodology

Follow these four phases sequentially for thorough copy review.

Phase 1: Context Analysis

Before editing, understand the document:

  1. Document Type: Marketing copy, blog post, documentation, email, etc.
  2. Target Audience: Technical, general, executive, customer-facing
  3. Intended Tone: Formal, conversational, persuasive, informative
  4. Purpose: Inform, persuade, instruct, engage

Note these factors as they influence which style rules apply. Marketing copy allows more creative freedom than documentation.

Phase 2: Style Guide Resolution

Locate the applicable style guide in this order:

  1. Voice DNA: Check for .claude/voice-dna.md (personal voice rules)
  2. Brand voice: Check for docs/brand-voice.md or .claude/brand-voice.md
  3. Project root: Check for STYLE_GUIDE.md
  4. Claude directory: Check for .claude/style-guide.md
  5. Docs folder: Check for docs/style-guide.md
  6. Default fallback: Use references/DEFAULT_STYLE_GUIDE.md from this skill

Voice DNA and brand voice files take precedence over generic style guides. Apply their banned phrases and writing rules as hard constraints.

# Search for project style guide
glob "STYLE_GUIDE.md" || glob ".claude/style-guide.md" || glob "docs/style-guide.md"

If a project style guide exists, prioritize its rules. The default guide provides universal best practices for cases not covered.

Phase 3: Line-by-Line Review

Systematically review the copy for:

Grammar & Mechanics

  • Subject-verb agreement
  • Punctuation (commas, semicolons, apostrophes)
  • Capitalization consistency
  • Number formatting
  • Spelling and typos

Voice & Clarity

  • Active vs. passive voice (prefer active)
  • Sentence length and readability
  • Jargon and unnecessary complexity
  • Redundant words and phrases
  • Parallel structure in lists

Style Adherence

  • Consistency with style guide rules
  • Tone appropriate for audience
  • Brand voice alignment (if applicable)
  • Formatting conventions

Content Quality

  • Logical flow and transitions
  • Clear headlines and subheadings
  • Effective calls-to-action
  • Accurate claims and statements

AI Writing Tells (see references/AI_WRITING_TELLS.md)

  • Vocabulary clusters (delve, landscape, pivotal, robust, etc.)
  • Formulaic phrases ("In today's...", "In conclusion...")
  • Vague attributions ("some experts", "widely regarded")
  • Structural patterns (mechanical balance, essay format)
  • Sycophantic phrases ("I hope this helps")
  • Negation-assertion pattern ("This isn't X. This is Y.") - fatal
  • Engagement bait ("Let that sink in", "Read that again")
  • AI cringe terms ("Supercharge", "Unlock", "Future-proof")
  • Generic insider claims ("Here's what nobody tells you")

Phase 4: Structured Report

Present findings in this format:

## Copy Review Report

**Document**: [filename or description]
**Word Count**: [count]
**Issues Found**: [total count]

### Summary
[1-2 sentence overview of document quality and main areas for improvement]

### Issues by Category

#### Grammar & Mechanics ([count])
| Location | Original | Issue | Suggested Fix |
|----------|----------|-------|---------------|
| Line X | "exact quote" | [issue type] | "corrected text" |

#### Voice & Clarity ([count])
| Location | Original | Issue | Suggested Fix |
|----------|----------|-------|---------------|
| Line X | "exact quote" | [issue type] | "corrected text" |

#### Style Guide Violations ([count])
| Location | Original | Rule Violated | Suggested Fix |
|----------|----------|---------------|---------------|
| Line X | "exact quote" | [rule reference] | "corrected text" |

#### AI Writing Tells ([count])
| Location | Original | Pattern Type | Suggested Fix |
|----------|----------|--------------|---------------|
| Line X | "exact quote" | [vocabulary/phrase/structure/attribution] | "corrected text" |

### Recurring Patterns
- [Pattern 1]: Appears X times - [recommendation]
- [Pattern 2]: Appears X times - [recommendation]

### Top 3 Recommendations
1. [Most impactful improvement]
2. [Second priority]
3. [Third priority]

### Style Guide Compliance
- [x] Active voice preference
- [ ] Number formatting (issues found)
- [x] Capitalization rules
- [ ] [Other applicable rules...]

### AI Writing Check
- [ ] No AI vocabulary clusters
- [ ] No formulaic phrases
- [ ] Specific attributions (not "some experts")
- [ ] Natural structure (not essay format)

Guiding Principles

  1. Quote exactly: Always show the original text verbatim
  2. Cite rules: Reference specific style guide rules when applicable
  3. Preserve voice: Maintain the author's style while improving clarity
  4. Prioritize impact: Focus on issues that affect comprehension first
  5. Be constructive: Frame suggestions positively, explain the "why"
  6. Note ambiguity: When rules conflict or are unclear, explain options

Output Options

Based on user request, provide:

  • Full report: Complete analysis with all categories
  • Quick scan: Top 5 most important issues only
  • Category focus: Deep dive on specific area (grammar, style, etc.)
  • Inline edits: Apply fixes directly with Edit tool (with user permission)

Example Usage

User: Review my landing page copy for issues
Assistant: I'll use the copy-editor skill to review your landing page.

[Executes Phase 1-4, produces structured report]
User: Quick grammar check on this email
Assistant: I'll do a quick scan focusing on grammar and mechanics.

[Produces abbreviated report with top issues]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.18%
按下载量换算129

Claude

32.73%
按下载量换算110

Cursor

17.45%
按下载量换算59

Gemini CLI

9.35%
按下载量换算32

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills