MCP HubMCP Hub
스킬 목록으로 돌아가기

technical-writing

proffesor-for-testing
업데이트됨 Today
354 조회
267
56
267
GitHub에서 보기
커뮤니케이션writingdocumentationcommunicationblogstutorials

정보

이 Claude Skill은 개발자들이 블로그 게시물, 문서, 튜토리얼과 같은 명확하고 매력적인 기술 콘텐츠를 제작하도록 돕습니다. 가치 중심 접근법, 구체적인 예시 활용, 가독성 최적화를 위한 체계적인 지침을 제공합니다. 주요 기능으로는 기본 액션 프레임워크, 권장 블로그 게시물 구조, 품질 분석 에이전트와의 통합이 포함됩니다.

빠른 설치

Claude Code

추천
기본
npx skills add proffesor-for-testing/agentic-qe
플러그인 명령대체
/plugin add https://github.com/proffesor-for-testing/agentic-qe
Git 클론대체
git clone https://github.com/proffesor-for-testing/agentic-qe.git ~/.claude/skills/technical-writing

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Technical Writing

<default_to_action> When writing technical content:

  1. LEAD with value (what will reader learn/gain?)
  2. SHOW, don't tell (specific examples, code, numbers)
  3. STRUCTURE for scanning (headers, bold, short paragraphs)
  4. CUT ruthlessly (every sentence must earn its place)
  5. BE honest about trade-offs

Blog Post Structure:

# Title (specific promise)

## Opening (2-3 paragraphs)
- Hook: The problem or insight
- Context: Why this matters
- Promise: What they'll learn

## Body (3-5 sections)
- One clear idea per section
- Support with examples/code/data

## Closing
- Key takeaway (1-2 sentences)
- Action reader can take

Before/After: ❌ "We implemented a comprehensive testing strategy..." ✅ "We moved exploratory testing into sprint planning. QE now pairs with devs during story refinement." </default_to_action>

Quick Reference Card

Core Principles

PrincipleBadGood
Lead with value"In today's landscape...""Here's how we cut bugs 60%"
Show, don't tell"We improved testing""Bug detection: 12→47 per sprint"
Be specific"Performance improved""Response time: 2.3s→180ms"
Honest trade-offs"This approach is best""TDD slowed velocity 20%, reduced bugs 75%"

Words to Cut

KillReason
basically, actually, probablyHedge words
leverage, synergy, paradigmCorporate speak
very, really, quiteUnnecessary qualifiers
it should be noted thatJust note it

Audience-Specific Writing

For Developers

  • Lead with code or concrete problem
  • Show implementation details
  • Discuss trade-offs and alternatives
  • Link to repos or examples

For QA/QE

  • Start with testing challenge
  • Show strategy, not just tools
  • Include risk assessment
  • Provide adaptable heuristics

For Leadership

  • Open with business impact
  • Use metrics that matter
  • Connect technical to outcomes
  • Keep technical details concise

Editing Checklist

Before publishing:

  • Title promises something specific
  • Opening hooks in 30 seconds
  • Claims backed by examples
  • All unnecessary words cut
  • Code examples tested and correct
  • Takeaway crystal clear
  • Would send to respected colleague

Example Transformations

Before: "We decided to implement a more comprehensive testing strategy that would allow us to catch bugs earlier in the development lifecycle."

After: "We moved exploratory testing into sprint planning. QE now pairs with devs during story refinement, identifying risks before code is written."


Before: "The benefits of this approach are numerous and include improved quality, faster feedback loops, and better team collaboration."

After: "Three outcomes: bugs found 2 days earlier on average, 30% fewer regression issues, and devs now ask QE for input during design."


Agent Integration

// Generate documentation from code
const docs = await Task("Generate Docs", {
  source: 'src/services/PaymentService.ts',
  format: 'markdown',
  includeExamples: true
}, "qe-quality-analyzer");

// Review documentation quality
const review = await Task("Review Docs", {
  files: ['README.md', 'docs/api.md'],
  checkClarity: true,
  checkCodeExamples: true
}, "qe-quality-analyzer");

Agent Coordination Hints

Memory Namespace

aqe/technical-writing/
├── generated-docs/*   - Auto-generated documentation
├── reviews/*          - Documentation review findings
└── templates/*        - Reusable doc templates

Fleet Coordination

const docsFleet = await FleetManager.coordinate({
  strategy: 'documentation',
  agents: [
    'qe-quality-analyzer',         // Generate and review
    'qe-api-contract-validator'    // API doc accuracy
  ],
  topology: 'sequential'
});

Related Skills


Remember

You're not writing to impress. You're writing to help people solve problems you've already solved. Be the colleague you wish you'd had.

Write from experience. Only write about what you've done in production. If exploring, say so.

GitHub 저장소

proffesor-for-testing/agentic-qe
경로: .claude/skills/technical-writing
agenticqeagenticsfoundationagentsquality-engineering

연관 스킬

when-creating-presentations-use-pptx-generation

기타

This Claude Skill generates professional PowerPoint presentations with enforced design constraints and accessibility compliance. It's ideal for creating board decks, reports, or data visualizations when you need enterprise-grade slide decks. The skill produces structured PPTX files with notes and accessibility reports using evidence-based prompting.

스킬 보기

when-creating-skill-template-use-skill-builder

기타

This skill generates properly structured Claude Code Skills with complete YAML frontmatter, progressive disclosure documentation, and organized directory layouts. It ensures new skills follow best practices and specification requirements while creating all necessary files including SKILL.md, README.md, and process diagrams. Developers should use it when creating reusable skills to maintain consistency and compliance with Claude's skill framework.

스킬 보기

when-documenting-code-use-doc-generator

메타

This skill automatically generates comprehensive documentation for your codebase, including API docs, README files, and architecture diagrams. It analyzes code structure to create consistent documentation with inline comments and multiple format outputs. Use it when you need to quickly document a project or maintain up-to-date technical documentation.

스킬 보기

Report Writer

기타

The Report Writer skill generates professional reports from research and data, supporting technical, business, and academic styles. It structures input content with features like an optional table of contents and outputs formatted markdown. Use this skill to quickly transform raw findings into polished, audience-appropriate documentation.

스킬 보기