원클릭으로
cd-anti-pattern-page
Generate anti-pattern pages for the CD migration guide following the standard template
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate anti-pattern pages for the CD migration guide following the standard template
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Audit and update the curated persona symptom pages (for-developers.md, for-agile-coaches.md, for-managers.md) when symptoms or anti-patterns are added, removed, or moved. Use this skill whenever new symptom or anti-pattern pages are created, when existing pages are deleted or reorganized, after running /cd-symptom-page or /cd-anti-pattern-page, or when the user asks to update the persona reading lists. Also use proactively at the end of any session that added or changed symptom content.
Generate a complete CD migration facilitator chatbot setup from the beyond.minimumcd.org site content. Use this skill whenever a user wants to create a chatbot, assistant, or guide that teams can use to navigate the CD migration journey — especially when they mention facilitating workshops, helping teams self-diagnose delivery problems, or guiding teams through continuous delivery adoption. Also use this when someone asks "how can teams use this site interactively" or "can we make a bot from this". Invoke proactively any time the user is thinking about team enablement, self-service CD coaching, or turning site content into an interactive guide.
Generate SVG diagrams for the CD migration documentation site (beyond.minimumcd.org). Use this skill whenever the user asks for a diagram, visual, workflow illustration, before/after comparison, or any figure to embed in a content page. Also use it when adding a diagram would meaningfully improve a content page being written or edited, even if the user has not explicitly asked for one. This skill is the single source of truth for the site's diagram color palette, layout conventions, and SVG output format.
Compare documentation against CD principles and practices from continuousdelivery.com and minimumcd.org, identifying gaps, misalignments, and improvement opportunities
Validate structure, voice, front matter, and cross-references for CD migration site content pages
Generate guide pages for the Migrate to CD section following the standard template
| name | cd-anti-pattern-page |
| description | Generate anti-pattern pages for the CD migration guide following the standard template |
| user_invocable | true |
Role: implementation. This skill generates new content files following the anti-pattern page template.
Generate a new anti-pattern page for the "Quality and Delivery Anti-Patterns" section of the CD migration guide.
content/en/docs/problems/push-based-work-assignment.md to calibrate tone, depth, and structure.common-issues.md at the repo root to find the issue description if the user references an issue number or name./grammar-check on the generated file to catch and fix any prohibited punctuation.---
title: "[Anti-Pattern Name]"
linkTitle: "[Anti-Pattern Name]"
weight: [number matching common-issues.md issue number]
description: >
[One-sentence description of the anti-pattern]
---
{{% pageinfo %}}
**Category:** [Category Name] | {{% risk-indicator level="[critical|high|medium|low]" %}}
{{% /pageinfo %}}
## What This Looks Like
[2-3 paragraphs describing observable symptoms. Be specific and concrete - describe what a team
member would actually see, hear, or experience. Use present tense.]
Common variations:
- **[Variation name].** [Description]
- **[Variation name].** [Description]
[Telltale sign paragraph: "The telltale sign: ..."]
## Why This Is a Problem
[1-2 sentence framing paragraph that sets up the subsections below.]
### It reduces quality
[How this anti-pattern degrades quality. Be specific about the mechanism. Contrast with the
healthier alternative in the final paragraph of this subsection.]
### It increases rework
[How this anti-pattern causes wasted or duplicated effort. Contrast with the healthier
alternative.]
### It makes delivery timelines unpredictable
[How this anti-pattern disrupts flow and predictability. Contrast with the healthier alternative.]
### [Optional: context-specific impact subsection]
[Additional impacts that don't fit the three required dimensions above. Use when the anti-pattern
has a distinctive effect worth calling out separately. Skip if the three required subsections
already cover the key impacts.]
### Impact on continuous delivery
[How this specifically blocks CD adoption or practices. This is always the final subsection.
Connect back to the core CD requirements: steady flow of small changes, fast feedback, predictable
delivery.]
## How to Fix It
### Step 1: [Action verb]
[Concrete first step. Include specific actions the team should take.]
### Step 2: [Action verb]
[Continue with weekly steps. Each step should build on the previous one.]
[Include an objection-handling table if the anti-pattern has common pushback:]
| Objection | Response |
|-----------|----------|
| "[Common pushback]" | [Concrete response that addresses the concern] |
[Include a role transition table if applicable:]
| Before | After |
|--------|-------|
| [Old behavior] | [New behavior] |
## Measuring Progress
| Metric | What to look for |
|--------|-----------------|
| [Metric name] | [What improvement looks like] |
## Related Content
- [Links to relevant guide pages in the site]
/grammar-check before finishing to catch prohibited punctuation (endashes, emdashes, hyphens used as dashes).Each anti-pattern gets a risk indicator badge. Choose the level based on how directly the anti-pattern blocks continuous delivery:
| Level | When to use |
|---|---|
| Critical | Foundational blocker - CD is impossible without fixing this (e.g., no CI, no pipeline) |
| High | Significant drag on delivery flow, feedback loops, or quality (e.g., PR bottlenecks, too much WIP) |
| Medium | Impedes delivery but less directly tied to core CD gates (e.g., no vertical slicing) |
| Low | Minor friction - worth fixing but not a delivery blocker |
These match the categories in common-issues.md:
Use relative links from the problems directory: ../../reference/metrics/[page]/
build-duration - Build Durationchange-fail-rate - Change Fail Ratedevelopment-cycle-time - Development Cycle Timeintegration-frequency - Integration Frequencylead-time - Lead Timemean-time-to-repair - Mean Time to Repairrelease-frequency - Release Frequencywork-in-progress - Work in ProgressUse relative links from the problems directory: ../../[section]/[page]/
Assess:
assess/baseline-metrics - Baseline Metricsassess/current-state-checklist - Current State Checklistassess/identify-constraints - Identify Constraintsassess/value-stream-mapping - Value Stream MappingFoundations:
foundations/build-automation - Build Automationfoundations/code-review - Code Reviewfoundations/everything-as-code - Everything as Codefoundations/testing-fundamentals - Testing Fundamentalsfoundations/trunk-based-development - Trunk-Based Developmentfoundations/work-decomposition - Work Decompositionfoundations/working-agreements - Working AgreementsPipeline:
pipeline/application-config - Application Configpipeline/deployable-definition - Deployable Definitionpipeline/deterministic-pipeline - Deterministic Pipelinepipeline/immutable-artifacts - Immutable Artifactspipeline/pipeline-architecture - Pipeline Architecturepipeline/production-like-environments - Production-Like Environmentspipeline/rollback - Rollbackpipeline/single-path-to-production - Single Path to ProductionOptimize:
optimize/architecture-decoupling - Architecture Decouplingoptimize/feature-flags - Feature Flagsoptimize/limiting-wip - Limiting WIPoptimize/metrics-driven-improvement - Metrics-Driven Improvementoptimize/retrospectives - Retrospectivesoptimize/small-batches - Small BatchesContinuous Deployment:
continuous-deployment/agentic-cd - Agentic CDcontinuous-deployment/deploy-on-demand - Deploy on Demandcontinuous-deployment/experience-reports - Experience Reportscontinuous-deployment/progressive-rollout - Progressive RolloutReference:
reference/cd-dependency-tree - CD Dependency Treereference/common-blockers - Common Blockersreference/dora-capabilities - DORA Capabilitiesreference/glossary - Glossaryreference/resources - ResourcesWrite the generated page to content/en/docs/problems/[slug].md where [slug] is the anti-pattern name in kebab-case.