원클릭으로
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