一键导入
readme-style
User's README style preferences — ultra-terse, action-focused, <50 lines. Use when writing or reviewing any README file.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
User's README style preferences — ultra-terse, action-focused, <50 lines. Use when writing or reviewing any README file.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Traces code history via git blame and log to explain why code exists in its current form. Use when asked about code history, reasoning behind changes, or "when/why did this change".
Commit changes with smart messages. Supports full and partial commits. Use whenever committing changes or handling pre-commit hook failures.
Use the gh CLI for GitHub interactions, plus setup and pushing. Use when interacting with GitHub, setting up GitHub tools, or pushing to remote.
Universal polyglot linting and per-project config management. Use when you need to lint files, understand tool selection logic, invoke linting from commands/agents, or manage mr-sparkle config.
Resolves git merge conflicts by analyzing intent from both sides. Use when merge conflicts are detected or when git operations fail with conflict errors.
Create a pull request with Problem/Solution format. Can optionally commit first. Use when opening PRs or when branch changes are ready for review.
| name | readme-style |
| description | User's README style preferences — ultra-terse, action-focused, <50 lines. Use when writing or reviewing any README file. |
User preferences and corrections for writing READMEs. Claude knows how to write READMEs; this documents what makes THIS user's style different.
Ultra-terse: ~20-50 lines is ideal. Never more than 100 Action-focused: Show commands with inline comments, minimal prose No fluff: Skip troubleshooting, file structure, version history
# Project Name
One-liner description.
## Overview
- What it does (bullet 1)
- What it does (bullet 2)
## Skills
Setup
```
/plugin:setup # walks through configuration
```
Main Actions
```
/plugin:do-thing # does the thing
/plugin:do-thing with args # does the thing with these args
/plugin:do-other selective stuff # does other with just the selective stuff
```
Key characteristics:
# commentsInclude ONLY:
# comments explaining each commandExclude ALL of these common README elements:
# Development Workflow Plugin
Comprehensive tooling for Git and GitHub workflows with intelligent automation.
## Features
This plugin provides:
- **Smart Git Operations**: Streamlined commit workflows with automatic formatting
- **GitHub Integration**: Seamless PR creation and issue management
- **Workflow Automation**: Pre-commit hooks and quality checks
## Components
### Agents
- `pr-creator` - Creates pull requests with proper formatting
- `commit-helper` - Assists with commit message formatting
### Skills
- `git-workflow` - Documents git workflow preferences
- `github-workflow` - GitHub interaction patterns
### Commands
- `/pr` - Create pull request
- `/commit` - Smart commit with formatting
## How It Works
The plugin integrates with your local git repository to provide enhanced
workflow capabilities. It uses the GitHub CLI when available and falls back
to the GitHub MCP server for API operations...
[... continues for 50+ more lines ...]
Issues:
# DMV
Git and GitHub workflow preferences for Claude.
## Overview
- Tells Claude the user's commit message format (terse, no emojis, no attribution)
- Tells Claude to prefer gh CLI over GitHub MCP when available
- Documents pre-commit hook retry logic (edge case handling)
## Commands
Setup
```
/mr-sparkle:github # walks through git and GitHub configuration
```
Main Actions
```
/pr # create pull request from current branch
/pr --draft # create draft pull request
/commit "message" # commit with user's preferred format
/github:issue <number> # fetch and analyze issue
```
Pattern:
Group Label
```
/command # what it does
/command with args # what it does with args
/command:subcommand # what the subcommand does
```
Details:
Setup, Main Actions, Analysis# comments right-aligned (use spaces to align)If you see these in a README draft, flag for removal:
Standard README approach:
Explain what it does → List features → Document components → Show examples
Our approach:
One-liner → 2-3 bullets → Commands with comments → Done