一键导入
markdown-docs
Author and edit README, CHANGELOG, and other markdown documentation, following the project's existing style.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Author and edit README, CHANGELOG, and other markdown documentation, following the project's existing style.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Navigate large codebases and make surgical edits while following project conventions. Use for refactors, feature work, and bug fixes spanning multiple files.
Inspect, filter, and summarize JSON, CSV, and log data using jq, awk, and pandas.
Read and edit Microsoft Word documents (.docx). Use for document editing and content extraction.
Branch, commit, rebase, and resolve conflicts. Use for PR prep, conventional commit messages, and history cleanup.
Extract text, merge, split, and search PDF documents. Use whenever the user mentions a PDF file.
Read, write, and transform CSV and XLSX files. Use for Excel, tabular data, bulk row edits, and column transforms.
| name | markdown-docs |
| description | Author and edit README, CHANGELOG, and other markdown documentation, following the project's existing style. |
.md documentation file.md files to understand the project's tone, structure, and conventions before writing.Check existing markdown files:
list_directory(path="/project/docs")
read_file(path="/project/README.md")
CommonMark heading hierarchy:
# Title (H1 — one per document)
## Section (H2)
### Subsection (H3)
#### Detail (H4 — use sparingly)
Code blocks with language hints:
\```python
def greet(name: str) -> str:
return f"Hello, {name}"
\```
Admonition (GFM callout — GitHub only):
> [!NOTE]
> This is a note.
> [!WARNING]
> This is a warning.
Table:
| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Value A | Value B | Value C |
Changelog entry (Keep a Changelog):
## [1.2.0] - 2024-03-15
### Added
- New spreadsheet skill for CSV/XLSX manipulation
### Fixed
- Crash when config file is missing on first run
### Changed
- Plugin system replaced with skill system
Update a specific section in an existing README:
read_file the full READMEedit_file with multi-line old_text covering the full section to replaceedit_file requires matching the exact whitespace and newlines — read the file first.references/keep-a-changelog.md — CHANGELOG format, versioning conventions