Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

writing-claude-directiveswriting Claude directives 搜索

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

267

周安装

11

GitHub Stars

176

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ed3dai/ed3d-plugins --skill writing-claude-directives

简介

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。

  • 适合让 Agent 提炼结构、补齐章节、统一术语或检查链接。
  • 使用时保留项目已有事实和路径,避免写成确定结论。
  • 涉及对外文案时需控制语气,防止过度营销或夸大能力。
  • 安装方式:通过 GitHub 仓库添加技能。writing-claude-directives 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Writing Claude Directives

REQUIRED: Also apply ed3d-extending-claude:prompt-security-hardening when using this skill. Directives that demonstrate unsafe secrets handling teach agents to leak secrets.

Core Principles

1. Claude is smart. Only write what it doesn't already know. Challenge each line: does this justify its token cost?

2. Positive > Negative framing. "Don't do X" triggers thinking about X (pink elephant problem). Say what TO do, not what to avoid.

# Bad: triggers the behavior
Don't create duplicate files

# Good: directs to correct behavior
Update existing files in place

3. Context motivates compliance. Explain WHY, not just WHAT. Claude generalizes from motivation.

# Less effective
NEVER use ellipses

# More effective
Your response will be read aloud by a text-to-speech engine, so never use ellipses since the TTS engine cannot pronounce them.

4. Placement matters. Instructions at prompt start and end receive higher attention. Critical rules go at boundaries.

5. ~150 instruction limit. More instructions = uniform degradation across ALL rules. Prune ruthlessly.

6. Repetition enforces critical rules. For high-stakes requirements, repeat with different framings.

Token Efficiency

Targets:

  • Frequently-loaded directives: <200 words
  • Skills/CLAUDE.md: <500 lines total
  • Reference --help instead of documenting flags
  • Cross-reference other skills instead of repeating

Progressive disclosure: Main file is overview + links. Reference files load on-demand.

Discovery (for Skills)

The description field determines if Claude finds your skill.

Format: Start with "Use when..." + specific triggers + what it does.

Write in third person. Injected into system prompt.

# Bad: vague, first person
description: I help with async testing

# Good: triggers + action, third person
description: Use when tests have race conditions or timing dependencies - replaces arbitrary timeouts with condition polling

Keywords: Include error messages, symptoms, tool names Claude might search for.

Compliance Techniques

Claude 4.x models are highly responsive to instructions. Lead with context and motivation; reserve imperatives for critical boundaries.

Primary: Context + Motivation

Explain WHY the rule exists. Claude generalizes from the explanation:

# Instead of raw authority
You MUST run tests before committing.

# Provide motivation
Run tests before committing. Untested commits break CI for the whole team and block other developers from merging their work.

Secondary: Structural Enforcement

Use structure to make compliance the path of least resistance:

PatternExample
Workflow stepsNumbered steps with verification gates
Task tracking (TaskCreate/TaskUpdate)Checklists without tracking = skipped steps (TodoWrite in older versions)
Forced commitment"Announce: I'm using [skill]"
Explicit blocking"If X happens, stop and do Y instead"

Escalation: Imperatives (Use Sparingly)

For Claude 4.x, aggressive language ("YOU MUST", "CRITICAL") can cause overtriggering. Use normal language first:

# Often sufficient for 4.x
Use this tool when searching for files.

# Reserve imperatives for true boundaries
Never commit secrets to version control.

Close loopholes when needed, but prefer context over authority:

# Good: context + loophole closure
Write the test first. Code written before its test tends to test the implementation rather than the behavior, making refactoring harder later. If you find yourself with untested code, delete it and start with the test.

By Skill Type

TypeApproach
Discipline (TDD, verification)Context + structural enforcement + loophole closure
Technique (patterns, how-to)Clear steps, "we want quality" framing
Reference (documentation)Clarity only, no persuasion needed

Structure Patterns

XML for Directives and Format Control

Claude parses XML effectively. Use for multi-part directives:

<task>What to accomplish</task>
<constraints>Hard requirements</constraints>
<output_format>Expected structure</output_format>
<examples>Input/output pairs</examples>

XML also works as format indicators:

<smoothly_flowing_prose>Write report sections here</smoothly_flowing_prose>
<structured_data>JSON or tables here</structured_data>

XML outperforms markdown, JSON, or YAML for rule preservation in long prompts.

Match Prompt Style to Desired Output

The formatting style in your prompt influences Claude's response. Include markdown formatting in your prompts when you want markdown output. Remove markdown from prompts if you want plain text output.

Workflows

Break complex tasks into checkable steps:

## Workflow
- [ ] Step 1: Analyze inputs
- [ ] Step 2: Generate plan
- [ ] Step 3: Validate plan
- [ ] Step 4: Execute
- [ ] Step 5: Verify output

Feedback Loops

Validate → fix → repeat:

1. Generate output
2. Run validator
3. If errors: fix and go to step 2
4. Only proceed when validation passes

Degrees of Freedom

Match specificity to fragility:

Task TypeFreedomStyle
Fragile operationsLowExact scripts, no modifications
Preferred patternsMediumTemplates with parameters
Context-dependentHighPrinciples and heuristics

Action Bias Templates

Proactive (Default to Action)

<default_to_action>
By default, implement changes rather than only suggesting them. If the user's intent is unclear, infer the most useful likely action and proceed, using tools to discover any missing details instead of guessing. Try to infer the user's intent about whether a tool call is intended or not, and act accordingly.
</default_to_action>

Conservative (Research First)

<do_not_act_before_instructions>
Do not jump into implementation or change files unless clearly instructed. When the user's intent is ambiguous, default to providing information, doing research, and providing recommendations rather than taking action. Only proceed with edits when the user explicitly requests them.
</do_not_act_before_instructions>

Overengineering Prevention

Claude 4.x tends to overengineer. Include this when needed:

Avoid over-engineering. Only make changes that are directly requested or clearly necessary. Keep solutions simple and focused.

Don't add features, refactor code, or make "improvements" beyond what was asked. A bug fix doesn't need surrounding code cleaned up. A simple feature doesn't need extra configurability.

Don't add error handling, fallbacks, or validation for scenarios that can't happen. Trust internal code and framework guarantees. Only validate at system boundaries (user input, external APIs). Don't use backwards-compatibility shims when you can just change the code.

Don't create helpers, utilities, or abstractions for one-time operations. Don't design for hypothetical future requirements. The right amount of complexity is the minimum needed for the current task. Reuse existing abstractions where possible and follow DRY.

Model-Specific Notes

Opus 4.5: "Think" Sensitivity

When extended thinking is disabled, Opus 4.5 is sensitive to the word "think" and variants. Replace with:

  • "consider" instead of "think about"
  • "evaluate" instead of "think through"
  • "determine" instead of "think whether"

Naming (for Skills)

Gerund form (verb + -ing): writing-skills, testing-code, debugging-errors

Name by action or insight: condition-based-waiting not async-helpers

Common Mistakes

MistakeFix
Verbose explanationsClaude knows basics - omit
Multiple valid approachesPick one default, escape hatch for edge cases
Vague triggersSpecific symptoms: "tests flaky", "race condition"
Deeply nested referencesKeep one level deep from main file
Windows pathsAlways forward slashes
Aggressive language for 4.xLead with context, reserve imperatives for boundaries

Anti-Rationalization

For discipline-enforcing directives, anticipate excuses:

## Red Flags - STOP
If you find yourself reasoning any of these, you're rationalizing:
- "This is simple enough to skip"
- "I already tested manually"
- "The spirit not the letter"
- "This case is different"

All mean: Follow the process.

Testing Directives

  1. Baseline: Run scenario WITHOUT directive, document failures
  2. Apply: Add directive, verify compliance
  3. Iterate: Find new loopholes → add counters → re-test

Long-Running Tasks

For multi-context-window workflows and state management across sessions, see long-running-state-patterns.md in this directory.

Graphviz (for Process Flows)

See graphviz-conventions.dot for flowchart style guide.

Use flowcharts for: Non-obvious decisions, process loops, "when to use A vs B"

Don't use for: Reference material (use tables), linear steps (use lists)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.42%
按下载量换算31

Claude

31%
按下载量换算27

Cursor

17.96%
按下载量换算16

Gemini CLI

9.94%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills