一键导入
improve-writing
Improve writing clarity, conciseness, and style for technical documentation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Improve writing clarity, conciseness, and style for technical documentation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate a sprint retrospective with KPI dashboard and action decision records
Generate a risk register PM block with probability, impact, and mitigation strategies
Generate downloadable Markdown or HTML files (reports, summaries, styled docs)
Conversational skill creator — build, test, and refine skills in chat
Generate a lightweight Architecture Decision Record as a Decision block
Creates a structured note from a homepage chat conversation
| name | improve-writing |
| description | Improve writing clarity, conciseness, and style for technical documentation |
| feature_module | notes |
Enhance technical writing clarity, conciseness, and readability while preserving technical accuracy.
Use this skill when:
/improve-writing)Example:
Original: "The thing is that when users are trying to log in to the system,
they sometimes get errors and it doesn't work properly."
Improved: "Users encounter login errors intermittently. Root cause unknown."
Confidence: RECOMMENDED
Changes: Removed filler words, made specific, added action item
Analyze Text
Apply Improvements
Preserve Technical Content
Tag Confidence
{
"original": "Original text...",
"improved": "Improved text...",
"confidence": "RECOMMENDED",
"changes": [
{"type": "clarity", "description": "Replaced 'thing' with 'authentication module'"},
{"type": "conciseness", "description": "Removed filler phrase 'the thing is that'"},
{"type": "structure", "description": "Split into two sentences for readability"}
],
"readability_score": {
"original": 45,
"improved": 68,
"metric": "Flesch Reading Ease"
},
"suggestions": [
"Consider adding code example for login flow",
"Specify browser/environment for reproducibility"
]
}
Input:
There's this problem where the API is super slow when we have lots of users
trying to access the database at the same time and it causes timeouts and
stuff which is really bad for performance.
Output:
{
"improved": "API response times exceed 5 seconds under high load (100+ concurrent users), causing database connection timeouts. This degrades user experience and triggers rate limiting.\n\nRoot cause: N+1 query pattern in user list endpoint.\n\nAcceptance criteria:\n- Response time < 500ms at 100 concurrent users\n- No database connection timeouts\n- Implement query result caching",
"confidence": "RECOMMENDED",
"changes": [
{"type": "clarity", "description": "Specified exact metrics (5 seconds, 100 users)"},
{"type": "structure", "description": "Added sections for root cause and acceptance criteria"},
{"type": "technical", "description": "Identified specific issue (N+1 queries)"}
]
}
Input:
To set up the project, first you need to install Node.js and then you should
run npm install and after that you can start the development server with npm run dev.
Output:
{
"improved": "## Setup\n\nPrerequisites:\n- Node.js 20+\n- pnpm 9+\n\nInstallation:\n```bash\npnpm install\npnpm dev\n```\n\nThe development server will start at http://localhost:3000",
"confidence": "RECOMMENDED",
"changes": [
{"type": "structure", "description": "Added headers and bullet points"},
{"type": "clarity", "description": "Specified version requirements"},
{"type": "format", "description": "Used code blocks for commands"}
]
}
Input:
We're thinking about maybe using Redis for caching because it might help with
performance issues we've been seeing, but we're not totally sure if it's the
right solution or if we should just optimize our queries instead.
Output:
{
"improved": "## Caching Strategy Options\n\n**Problem**: Database queries slow under load (2-5s response time)\n\n**Options**:\n1. **Redis caching** (RECOMMENDED)\n - Pros: Fast reads, reduces DB load\n - Cons: Adds infrastructure complexity\n \n2. **Query optimization** (ALTERNATIVE)\n - Pros: No new dependencies\n - Cons: May not solve scaling issues\n\n**Decision needed**: Benchmark both approaches with production data volume",
"confidence": "DEFAULT",
"changes": [
{"type": "structure", "description": "Formatted as decision document"},
{"type": "clarity", "description": "Listed explicit pros/cons"},
{"type": "action", "description": "Added next step (benchmarking)"}
]
}
Input:
Something went wrong and we couldn't process your request. Please try again later.
Output:
{
"improved": "Failed to create issue: Database connection timeout.\n\nTroubleshooting:\n- Check database status at /admin/health\n- Retry in 30 seconds\n- Contact support if issue persists\n\nError code: DB_TIMEOUT_001",
"confidence": "RECOMMENDED",
"changes": [
{"type": "clarity", "description": "Specified exact error (DB timeout)"},
{"type": "actionable", "description": "Added troubleshooting steps"},
{"type": "technical", "description": "Added error code for support"}
]
}