Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

antipattern-detector反模式检测器

Agent Skill

antipattern-detector 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

259

周安装

11

GitHub Stars

85

下载量

91
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:antipattern-detector(反模式检测器)
来源仓库:https://github.com/alirezarezvani/claude-cto-team
仓库路径:skills/antipattern-detector
安装命令:
npx skills add https://github.com/alirezarezvani/claude-cto-team --skill antipattern-detector
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alirezarezvani/claude-cto-team --skill antipattern-detector

简介

用于识别技术决策与组织结构中的常见失败模式,预防项目风险。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中评估架构提案与团队流程。
  • 聚焦于早期发现导致技术债务、人员流失与进度延误的反模式。
  • 安装命令为 npx skills add https://github.com/alirezarezvani/claude-cto-team --skill antipattern-detector。
  • 使用时需结合具体项目背景,避免泛化结论影响判断准确性。

SKILL.md

Anti-Pattern Detector

Identifies recurring failure patterns in technical decisions, organizational structures, and project plans.

When to Use

  • Reviewing architecture proposals
  • Evaluating project plans and roadmaps
  • Assessing team structures and processes
  • Validating technology choices
  • Checking migration strategies

Why Anti-Patterns Matter

Anti-patterns are proven failure modes. They look reasonable on the surface but lead to predictable problems:

  • Technical debt accumulation
  • Team burnout and turnover
  • Missed deadlines and budgets
  • System instability
  • Organizational dysfunction

Detecting them early saves months of pain.


Anti-Pattern Categories

1. Architecture Anti-Patterns

Structural problems in system design.

PatternDescriptionSymptoms
Big Ball of MudNo clear architecture, everything coupledCan't change X without breaking Y
Golden HammerUsing one tech for everything"We'll use Kubernetes for that too"
Premature MicroservicesSplitting before understanding boundaries3 devs managing 20 services
Distributed MonolithMicroservices with tight couplingDeploy all services together
Resume-Driven DevelopmentTech choices for career, not product"Let's use Rust for the admin panel"

2. Timeline Anti-Patterns

Planning failures that guarantee missed deadlines.

PatternDescriptionSymptoms
Timeline FantasyOptimistic estimates ignoring reality"6 weeks if everything goes well"
Scope Creep BlindnessNot accounting for inevitable additionsSame deadline, 2x features
Parallel Path DelusionAssuming unlimited parallelization"Add more devs to go faster"
MVP MaximalismMVP that's actually V347 features in "minimum" product
Demo-Driven DevelopmentBuilding for demos, not production"It works on my machine"

3. Team Anti-Patterns

Organizational structures that create dysfunction.

PatternDescriptionSymptoms
Hero CultureReliance on key individuals"Only Sarah can fix that"
Knowledge SilosCritical info in one person's headBus factor of 1
Conway's Law ViolationArchitecture doesn't match team structureTeam boundaries ≠ service boundaries
Understaffed AmbitionBig plans with tiny teams2 devs building "the platform"
Absent OwnershipNo clear owner for componentsBugs fall through cracks

4. Process Anti-Patterns

Workflow failures that slow delivery.

PatternDescriptionSymptoms
Cargo Cult AgileAgile ceremonies without principlesStandups but no shipping
Analysis ParalysisOver-planning, under-executingMonth 3 of "finalizing requirements"
Infinite RefactoringNever shipping, always "improving""One more cleanup before release"
Documentation TheaterDocs that no one reads or maintains200-page spec, outdated day 1
Meeting MadnessMore meetings than coding time"Let's schedule a meeting to discuss"

5. Technology Anti-Patterns

Poor technology decisions.

PatternDescriptionSymptoms
Shiny Object SyndromeChasing latest tech without reason"We should rewrite in [new thing]"
Not Invented HereBuilding what should be boughtCustom auth, custom logging, custom everything
Vendor Lock-in DenialIgnoring exit costs"We can always migrate later"
Premature OptimizationOptimizing before measuringCaching layer with 10 users
Framework OverloadToo many frameworks/libraries47 npm dependencies for a button

Detection Process

Step 1: Scan for Signals

Look for these phrases that often indicate anti-patterns:

Timeline signals:

  • "If everything goes well..."
  • "We can do it faster if we're focused..."
  • "Just need to hire..."
  • "Should only take..."

Architecture signals:

  • "We'll figure out the boundaries later..."
  • "Everything talks to everything..."
  • "It's only for now..."
  • "We can always refactor..."

Team signals:

  • "Only [person] knows..."
  • "We'll hire for that..."
  • "[Person] will handle all of..."
  • "The team can absorb..."

Process signals:

  • "We don't need docs for this..."
  • "We'll add tests later..."
  • "Let's discuss in the meeting..."
  • "Requirements are still evolving..."

Step 2: Verify Pattern Match

For each suspected anti-pattern:

  1. Identify the pattern: Which specific anti-pattern?
  2. Gather evidence: What in the proposal matches?
  3. Assess severity: How bad is it? (Critical/High/Medium/Low)
  4. Check context: Could this be a reasonable exception?

Step 3: Document Findings

### Anti-Pattern: [Name]

**Category**: Architecture / Timeline / Team / Process / Technology
**Severity**: Critical / High / Medium / Low

**Evidence**:
- [Quote or observation 1]
- [Quote or observation 2]

**Why This Is a Problem**:
[Explain the typical failure mode]

**Historical Examples**:
[Reference similar failures if known]

**Recommendation**:
[Specific action to address]

Severity Framework

Critical

Will cause project failure if not addressed.

  • Examples: No clear ownership, timeline fantasy for commitments, hero dependency
  • Action: Stop and address before proceeding

High

Will cause significant problems.

  • Examples: Premature microservices, understaffed plans, shiny object syndrome
  • Action: Address in planning phase

Medium

Will cause friction and delays.

  • Examples: Documentation gaps, process inefficiencies, minor scope creep
  • Action: Include in risk mitigation

Low

Worth noting but manageable.

  • Examples: Style inconsistencies, minor tech debt, preference-based choices
  • Action: Track and address opportunistically

Output Format

# Anti-Pattern Analysis: [Plan/Proposal Name]

## Summary
- **Patterns Detected**: [Count]
- **Critical Issues**: [Count]
- **Overall Risk Level**: Critical / High / Medium / Low

## Critical Issues (Must Address)

### 1. [Pattern Name]
**Category**: [Category]
**Evidence**: [What triggered this detection]
**Risk**: [What will go wrong]
**Fix**: [How to address]

---

## High-Priority Issues (Should Address)

### 2. [Pattern Name]
[Same format]

---

## Medium-Priority Issues (Consider Addressing)

### 3. [Pattern Name]
[Same format]

---

## Patterns NOT Detected
[List patterns that were checked but not found - provides confidence]

## Recommendations

### Before Proceeding
1. [Critical action 1]
2. [Critical action 2]

### During Execution
1. [Mitigation 1]
2. [Mitigation 2]

### Monitoring
- [Warning sign to watch for]
- [Metric to track]

Common Pattern Combinations

Certain anti-patterns tend to appear together:

The Startup Death Spiral

  • Timeline Fantasy + Understaffed Ambition + Hero Culture
  • Result: Burnout, missed deadlines, key person leaves

The Enterprise Trap

  • Analysis Paralysis + Documentation Theater + Meeting Madness
  • Result: Nothing ships, team frustrated, competition wins

The Tech Debt Avalanche

  • "We'll refactor later" + No clear ownership + Premature optimization
  • Result: System becomes unmaintainable, rewrite required

The Microservices Mistake

  • Premature Microservices + Distributed Monolith + Not enough DevOps
  • Result: Complexity explosion, slower delivery than monolith

Integration with Validation

The antipattern-detector feeds into the broader validation workflow:

Proposal/Plan
     │
     ▼
[assumption-challenger] → Assumptions identified
     │
     ▼
[antipattern-detector] → Patterns identified
     │
     ▼
[validation-report-generator] → Combined 8-section report

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.5%
按下载量换算32

Claude

28.78%
按下载量换算26

Cursor

16.28%
按下载量换算15

Gemini CLI

9.89%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills