Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问clear审计通过

markdown-proMarkdown 专业版

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

9

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/autumnsgrove/claudeskills --skill markdown-pro

简介

markdown-pro 创建专业级 Markdown 文档,涵盖 README、变更日志与贡献指南,提升项目可读性。

  • 适用于自动化生成发布说明、结构化 API 文档与徽章集成。
  • 支持语义版本解析、Git 历史提取与截图嵌入。
  • 使用前需确认项目元数据(如作者、许可证),避免虚构版本号或依赖。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Professional Markdown Documentation

Overview

This skill provides comprehensive guidance for creating professional, well-structured Markdown documentation. It covers README files, changelogs, contribution guides, and technical documentation with modern formatting, badges, and best practices.

Core Capabilities

README Generation

  • Project overview and description
  • Installation instructions
  • Usage examples with code blocks
  • API documentation
  • Badges and shields
  • Feature highlights
  • Screenshots and demos

Changelog Automation

  • Semantic versioning format
  • Git history parsing
  • Automated release notes
  • Breaking changes highlighting
  • Contributor attribution

Technical Documentation

  • Clear section hierarchy
  • Code syntax highlighting
  • API reference formatting
  • Table of contents
  • Cross-referencing
  • Collapsible sections

README Structure Best Practices

Essential Sections

1. Header with Badges

# Project Name

[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Version](https://img.shields.io/badge/version-1.0.0-green.svg)](releases)
[![Build](https://img.shields.io/badge/build-passing-brightgreen.svg)](builds)

Brief one-line description of what the project does.

2. Table of Contents (for longer READMEs)

## Table of Contents

- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [API Reference](#api-reference)
- [Contributing](#contributing)
- [License](#license)

3. Features Section

## Features

- **Feature 1**: Clear description with benefits
- **Feature 2**: What problems it solves
- **Feature 3**: Unique selling points
- Cross-platform support (Windows, macOS, Linux)
- Comprehensive test coverage (>90%)

4. Installation Instructions

## Installation

### Prerequisites
- Python 3.8 or higher
- pip package manager

### Quick Start

pip install package-name


### From Source

git clone https://github.com/username/repo.git cd repo pip install -e .

5. Usage Examples

## Usage

### Basic Example

from package import Module

Initialize

client = Module(api_key="your-key")

Perform operation

result = client.process(data) print(result)


### Advanced Usage

See [examples/](https://github.com/autumnsgrove/claudeskills/blob/HEAD/markdown-pro/examples/) directory for more detailed use cases.

6. API Documentation

## API Reference

### `Module.process(data, options=None)`

Process input data with optional configuration.

**Parameters:**
- `data` (str|dict): Input data to process
- `options` (dict, optional): Configuration options
  - `verbose` (bool): Enable verbose output (default: False)
  - `format` (str): Output format - 'json', 'yaml', 'xml' (default: 'json')

**Returns:**
- `dict`: Processed results with metadata

**Raises:**
- `ValueError`: If data is invalid
- `APIError`: If API request fails

**Example:**

result = client.process( data={"key": "value"}, options={"verbose": True, "format": "json"} )

7. Contributing Section

## Contributing

We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.

### Quick Contribution Guide
1. Fork the repository
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request

8. License and Credits

## License

This project is licensed under the MIT License - see [LICENSE](LICENSE) file for details.

## Acknowledgments

- Thanks to [Contributor Name] for feature X
- Inspired by [Project Name](link)
- Built with [Technology Stack]

Changelog Format

Semantic Versioning Structure

# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added
- New feature description

### Changed
- Modification to existing feature

### Deprecated
- Features that will be removed

### Removed
- Deleted features

### Fixed
- Bug fixes

### Security
- Security improvements

## [1.2.0] - 2025-01-15

### Added
- User authentication system (#123)
- Export to CSV functionality (#145)
- Dark mode support (#156)

### Changed
- Updated UI components for better responsiveness (#134)
- Improved error messages (#142)

### Fixed
- Fixed memory leak in background processor (#139)
- Resolved login timeout issue (#148)

## [1.1.0] - 2024-12-01

### Added
- Initial release with core features

Markdown Formatting Best Practices

Code Blocks with Syntax Highlighting

def hello_world(): """Print hello world message.""" print("Hello, World!")

function helloWorld() { console.log("Hello, World!"); }

Install dependencies

npm install

Run tests

npm test

Tables

| Feature | Description | Status |
|---------|-------------|--------|
| Auth | User authentication | ✅ Complete |
| API | RESTful API endpoints | ✅ Complete |
| Docs | Documentation | 🚧 In Progress |
| Tests | Unit & Integration | ❌ Planned |

Collapsible Sections

<details>
<summary>Click to expand advanced configuration</summary>

## Advanced Options

Configure advanced settings:

advanced: cache_size: 1000 timeout: 30 retry_attempts: 3


### Alert Boxes
Note: This feature requires Python 3.8 or higher.
Warning: This operation is irreversible!
Important: Always backup your data before upgrading.

### Links and References

<!-- External link --> Documentation

<!-- Internal link --> See Installation section.

<!-- Reference-style links --> Check out [project homepage][homepage] and [documentation][docs].

[homepage]: https://example.com [docs]: https://docs.example.com


### Images

<!-- Standard image --> Project Logo

<!-- Image with alt text and title --> Dashboard Screenshot

<!-- Linked image --> ![Demo Video](https://youtube.com/watch?v=example)


## Badge Creation

### Common Badge Patterns

<!-- License --> License

<!-- Version --> Version

<!-- Build Status --> Build

<!-- Coverage --> Coverage

<!-- Language --> Python

<!-- Platform --> Platform


## Helper Scripts

### Generate Table of Contents

Use the helper script to automatically generate TOC from headers:

python scripts/markdown_helper.py toc README.md


### Generate Changelog from Git

Automatically create changelog entries from git history:

python scripts/markdown_helper.py changelog --since v1.0.0 --output CHANGELOG.md


### Validate Markdown Links

Check for broken links in documentation:

python scripts/markdown_helper.py validate docs/


## Templates

### Professional README Template

See `examples/README_template.md` for a complete, production-ready README template with all recommended sections.

### Changelog Template

See `examples/CHANGELOG_template.md` for a properly formatted changelog following Keep a Changelog format.

### Contributing Guidelines

See `examples/CONTRIBUTING.md` for contributor guidelines template including code of conduct, development setup, and PR process.

## Best Practices Summary

### Do's

- Use clear, descriptive headers
- Include code examples for every major feature
- Add badges for quick project status overview
- Keep line length under 100 characters for readability
- Use syntax highlighting for code blocks
- Include table of contents for documents >300 lines
- Add alt text for all images
- Link to related documentation

### Don'ts

- Don't use generic titles like "My Project"
- Don't include wall-of-text paragraphs (break into sections)
- Don't forget to update changelog with releases
- Don't use bare URLs (always use descriptive link text)
- Don't mix heading styles (use consistent hierarchy)
- Don't include screenshots without descriptions
- Don't hardcode version numbers everywhere (use variables/badges)

## Quick Reference

### Header Hierarchy

H1 - Project Title (only one per document)

H2 - Major Sections

H3 - Subsections

H4 - Minor Points

H5 - Rare, for deep nesting


### List Formatting

<!-- Unordered -->

  • Item 1
  • Item 2

- Nested item - Another nested item

<!-- Ordered -->

  1. First step
  2. Second step
  3. Third step

<!-- Task list -->

  • [x] Completed task
  • [ ] Pending task
  • [ ] Another pending task

### Emphasis

*italic* or _italic_ bold or __bold__ *bold italic* or ___bold italic___ ~~strikethrough~~ inline code


## Conclusion

Professional Markdown documentation improves project accessibility, attracts contributors, and provides clear guidance for users. Use the templates in `examples/` as starting points, customize with the helper scripts in `scripts/`, and follow these best practices for polished, maintainable documentation.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

windsurf

27.11%
按下载量换算18

OpenCode

23.54%
按下载量换算16

Codex

17.44%
按下载量换算12

Claude Code

10.82%
按下载量换算7

Antigravity

7.86%
按下载量换算5

Gemini CLI

2.86%
按下载量换算2

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills