markdown-drafts

작성자: cloudflare

외부 시스템(GitHub 이슈/PR, Jira 티켓, 위키 페이지, 디자인 문서 등)을 대상으로 콘텐츠를 작성할 때 마크다운 형식을 사용하여 서식이…

npx skills add https://github.com/cloudflare/workerd --skill markdown-drafts

Markdown Drafts

When the user asks you to draft, write, or compose content that will be copied into an external system — GitHub issues, pull request descriptions, Jira tickets, wiki pages, design documents, RFCs, or similar — always use markdown syntax so that formatting survives the copy-paste.

When This Applies

  • GitHub issues and pull request descriptions
  • Jira ticket descriptions and comments
  • Confluence / wiki page drafts
  • Design documents and RFCs
  • Slack messages (Slack renders a subset of markdown)
  • Any content the user explicitly says will be copied elsewhere

Formatting Rules

  • Use #, ##, ### headers to create structure
  • Use - or * for unordered lists, 1. for ordered lists
  • Use triple-backtick fenced code blocks with language tags (e.g., ```cpp) for code
  • Use inline code backticks for identifiers, file paths, commands, and config values
  • Use **bold** for emphasis on key points and _italic_ for secondary emphasis
  • Use markdown tables when presenting structured comparisons or data
  • Use > blockquotes for callouts, quoted text, or important notes
  • Use [link text](url) for references — never bare URLs in running prose
  • Use --- horizontal rules to separate major sections when appropriate
  • Use task lists (- [ ] / - [x]) when drafting action items or checklists
  • Keep line lengths reasonable (e.g., 80-120 characters)

Structure Guidelines

  • Start with a concise summary paragraph before diving into details
  • Use headers to break content into scannable sections
  • Keep paragraphs short — walls of text are hard to scan in issue trackers
  • Put the most important information first (inverted pyramid)
  • End with next steps, open questions, or action items when relevant

Rendering: Always Emit Raw Markdown

The chat interface renders markdown, which strips the raw syntax (###, **, `, etc.) from the output. Since these drafts are meant to be copied and pasted into external systems, the user needs the raw markup characters preserved.

Always wrap the entire draft in a fenced code block so the chat interface displays it as literal text. Use a plain triple-backtick fence (no language tag):

```
## My Heading

- bullet one
- **bold text** and `code`
```

This ensures the user sees and can copy the exact markdown source. Never render the draft as formatted text outside a code fence — the markup will be silently consumed by the chat UI.

What NOT To Do

  • Do not render the draft as formatted markdown outside a code fence — the user will lose the syntax
  • Do not use plain text formatting (e.g., ALL CAPS for headers, ==== underlines, manual indentation)
  • Do not use HTML tags unless the target system requires them and markdown is insufficient
  • Do not add emoji unless the user's draft style includes them or they explicitly request it
  • Do not use common cliche AI-generated phrases, tropes, or filler content like tricolons, or generic intros/outros. Be concise and to the point.
  • Do not include editorial comments or unsubstantiated claims. Stick to the facts and the user's instructions precisely. If you need to ask clarifying questions, do so instead of making assumptions.

cloudflare의 다른 스킬

workerd-api-review
cloudflare
workerd 코드 리뷰를 위한 성능 최적화, API 설계 및 호환성, 보안 취약점, 표준 사양 준수. tcmalloc 인식…
official
workerd-safety-review
cloudflare
메모리 안전성, 스레드 안전성, 동시성, 그리고 workerd 코드 리뷰를 위한 중요 탐지 패턴. V8/KJ 경계 위험 요소, 수명 관리 등을 다룹니다.
official
module-registry
cloudflare
workerd에서 모듈 레지스트리를 작업할 때 로드 — 모듈 해석, 컴파일, 평가, 등록을 읽기, 수정, 디버깅, 검토하는 경우…
official
reproduce
cloudflare
cloudflare/agents GitHub 이슈를 재현하기 위해 최소한의 Agents/Worker 프로젝트를 스캐폴딩하고 임시 Cloudflare 계정에 배포한 후 보고합니다…
official
local-explorer
cloudflare
로컬 탐색기 또는 로컬 API에 제품/리소스를 추가하는 방법. 새로운 로컬 API나 UI 라우트를 구현할 때 사용합니다.
official
commit-categories
cloudflare
커밋을 체인지로그와 "새로운 기능" 요약으로 분류하는 규칙입니다. 체인지로그 또는 whats-new 명령에서 커밋을 분류하기 전에 반드시 로드되어야 합니다. 제공하는 기능:
official
architecture
cloudflare
코드베이스를 처음 탐색할 때, 새 클라이언트 메서드를 추가할 때, 새 컨테이너 핸들러/서비스를 추가할 때, 또는 요청 흐름을 이해할 때 사용합니다.
official
changesets
cloudflare
변경셋을 생성하거나, 릴리즈를 준비하거나, 버전을 올릴 때 사용합니다. 참조할 패키지, 사용자 대상 변경셋 설명 작성 방법 등을 다룹니다.
official