Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

writing-skills写作技巧

Agent Skill

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

总安装

392

周安装

16

GitHub Stars

8

下载量

127
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jkeskikangas/skills --skill writing-skills

简介

writing-skills 用于辅助文档、Markdown 和内容稿件的整理与改写,适合在 Codex、Claude、Cursor、Gemini CLI 中优化结构和术语统一性。

  • 适用于技术写作、说明文撰写和内容可读性提升等场景。
  • 能提炼章节框架、检查链接完整性和语气控制。
  • 使用时应保留项目已有事实和路径,避免将未确认信息写成确定结论。
  • 涉及对外文案时需控制语气,防止过度营销或夸大能力描述。

SKILL.md

Writing Skills

Objective

Produce professional-grade skills: high-signal, safe, portable, and reliably triggerable. This skill:

  • Writes or updates a skill directory (SKILL.md + optional scripts/, references/, assets/)
  • Generates agents/openai.yaml UI metadata
  • Runs validation (skillcheck)
  • Runs a critic review using $reviewing-skills and iterates until the bar is met

When to use / When not to use

Use when:

  • The user asks to create a new skill (SKILL.md + optional scripts/, references/, assets/).
  • The user asks to refactor, tighten, or “upgrade” an existing skill for trigger precision and token efficiency.

Do not use when:

  • The user only wants a rubric-based review/grade of an existing skill (use $reviewing-skills).
  • The request is not about a skill directory containing SKILL.md.

Quality Bar (default)

Target outcome:

  • No spec violations, and
  • Weighted score ≥ 4.5/5.0 (A- or better), and
  • No P1 findings

The rubric is owned by: $reviewing-skillsreviewing-skills/references/skills-rubric.md (single source of truth).

Safety / Constraints (non-negotiable)

  • Never read, request, or paste secrets (.env, API keys, tokens, private keys, credentials).
  • Only write inside the user-specified skill directory. If the target path is unclear, ask.
  • Do not run commands that modify the repo unless the user explicitly asked for those changes.
  • Do not browse the web or call external systems unless the user explicitly requests it.
  • Do not execute untrusted code in the target repo (scripts/binaries/tests) unless the user explicitly asks and you can justify the risk.
  • If the skill being written can perform destructive actions, add explicit confirmation gates and “never do” rules.

Portability Requirement (Codex + Claude Code/Desktop + OpenCode)

Write skill instructions in capability language (search/read/edit/run commands) and avoid hard-coding one vendor’s tool names. If mentioning a product-specific tool, provide a short adapter note (“if unavailable, use shell + rg/sed”). For portability guidance, use references/portability.md.

Workflow (decision-complete)

Update mode (keep diffs small)

If the user asked to update an existing skill (not create a new one):

  • Change only the requested parts; do not rewrite unrelated sections for style.
  • Preserve existing behavior unless it is a spec violation or causes mis-triggering.
  • Prioritize: trigger precision (description “when to use”), safety/guardrails, validation loop, then token efficiency.

0) Intake (ask only what matters)

Collect:

  • Skill name (hyphen-case)
  • What it does (1 sentence)
  • When to use (concrete triggers: file types, paths, scenarios)
  • Inputs/outputs (artifacts produced)
  • Safety constraints (read-only? destructive ops? secrets? web browsing?)
  • Resources needed: scripts/ vs references/ vs assets/

1) Skill Split Proposal (prevent mega-skills)

Before writing anything, produce a short proposal:

  • Should this be one skill or multiple?
  • Recommend companion skills when appropriate, e.g.:

- reviewer/critic skill (grading, audits) - installer skill (wiring tools or repo integration) - domain-reference skill (big schemas or policies)

Rule of thumb:

  • If the request spans multiple disjoint workflows, split.
  • If the skill needs deterministic, repeatable logic, add a scripts/ helper.

2) Scaffold the skill directory

Create the skill directory under the user-specified path:

  • <skill-name>/SKILL.md — use references/skill-skeleton.md as the template
  • <skill-name>/agents/openai.yaml — include interface.display_name, short_description (25–64 chars), and default_prompt (must mention $<skill-name>)
  • Resource subdirs (scripts/, references/, assets/) — only create the ones you will use

Prefer minimal resources. Validation is expected to fail until you fill in the TODOs in Step 3.

3) Write SKILL.md (core)

Use references/skill-skeleton.md as the canonical outline.

Hard requirements:

  • Frontmatter description must include what + when to use.
  • Include guardrails and explicit “do not do” rules when relevant.
  • Include validation loops (what to check after writing/running).
  • Keep SKILL.md lean; move bulk examples/specs to references/.

4) Add resources (only if they buy reliability)

Use references/resource-patterns.md:

  • Put deterministic logic in scripts/ with a stable CLI.
  • Put large but needed knowledge in references/ (loaded on demand).
  • Put templates/boilerplate in assets/.

5) Validate (hard gate)

Run both linters — both must pass before proceeding.

skillcheck (project rules):

  • Inside this repo with packages/skillcheck/dist/ present: node packages/skillcheck/bin/skillcheck.js <skill-dir>
  • Inside this repo without dist/: cd packages/skillcheck && npm install && npm run build, then run the above.
  • Outside this repo: npx skillcheck <skill-dir>

agnix (specification rules): npx agnix <skill-dir>

Fix all reported errors before proceeding. Each linter collects every violation in a single run.

Quality Gate

Two-phase review after validation. Target: Quality Bar (score >= 4.5, no P1 findings).

Phase 1: Self-critic review

Grade the skill against $reviewing-skillsreviewing-skills/references/skills-rubric.md. Re-read SKILL.md as if encountering it for the first time and score each rubric dimension (spec compliance, trigger precision, workflow quality, token efficiency, safety, robustness, portability).

Check for:

  • Vague or missing "when to use" triggers
  • Missing guardrails for destructive/network actions
  • Bloated prose that should be bullets or moved to references/
  • Workflow steps that leave key decisions ambiguous

Actions:

  • Fixable without re-analysis -> fix inline.
  • Requires re-analysis or user input -> flag and continue.
  • If score < 4.5 or P1 findings remain, fix before proceeding to Phase 2.

Phase 2: Fresh-context subagent review

Run a fresh-context critic pass using $reviewing-skills:

  • If your environment supports subagents, spawn a fresh-context subagent and give it the skill path.
  • Otherwise, invoke $reviewing-skills directly and provide the path.
  • If $reviewing-skills is not available, self-review against the 7 rubric dimensions and note the gap in the deliverable.
  • If the skill is git-tracked and you changed it, require the critic to cite the relevant diff hunk or commit short-hash for any change-driven P1/P2 findings.
  • Apply P1 + P2 fixes (P3 last).
  • Re-run validation.
  • Repeat up to 3 loops, stop early when the Quality Bar is met or two consecutive iterations show no score improvement (plateau).

7) Finalize

Deliver:

  • The final skill folder path(s)
  • Any suggested follow-on skills (from the split proposal)
  • A short note explaining why the skill will trigger correctly (tie to description “when to use”)

Edge Cases

  • User provides no skill name or path: ask before proceeding; do not guess.
  • Target directory already has a SKILL.md: enter update mode; do not overwrite without confirmation.
  • Linters not available (no Node.js / npx): warn the user; skip validation but note it was skipped in the deliverable.

Output Rules

  • No placeholders (TODO, TBD) in the final skill.
  • Avoid deep reference chains: SKILL.md links directly to every resource it expects to be read.
  • Prefer minimal, directive prose over explanations of common concepts.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.02%
按下载量换算50

Claude

29.27%
按下载量换算37

Cursor

18.09%
按下载量换算23

Gemini CLI

10.11%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/jkeskikangas/skills --skill writing-skills 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills