Files
nexus/wiki/concepts/Pivot-Strategy.md
2026-04-22 19:20:32 +08:00

55 lines
2.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "Pivot-Strategy"
type: concept
tags: []
last_updated: 2026-04-22
---
## Overview
当赛道拥挤度较高(`reality_signal > 30`)时,通过重新定位切入角度实现差异化的策略。通过分析现有竞品的覆盖盲区,找到一个可专注的细分维度,在该维度上构建竞争优势。
## Three Pivot Dimensions
`reality_signal` 显示赛道拥挤时,可通过以下三个维度实现转向:
### 1. Language Specialization
语言专一化——只支持特定编程语言的竞品细分。
- 示例:不做通用的"AI code review tool",而是"**Rust-only AI code review**"规避与通用方案GitHub Copilot、CodeRabbit的正面竞争
- 适用场景:某语言社区有特殊需求,通用方案覆盖不足
### 2. Framework Specialization
框架专一化——只针对特定框架的审查工具。
- 示例:"**React 组件合规性审查**"而非通用代码审查
- 适用场景:某框架有独特的 linting/compliance 需求
### 3. Industry Specialization
行业专一化——针对特定垂直行业的合规/审查工具。
- 示例:"**金融/医疗代码合规性审查**"HIPAA、SOX 相关代码检查)
- 适用场景:强监管行业有特殊代码合规要求,通用方案无法满足
## Decision Framework
```
reality_signal > 70?
→ STOP + 展示竞品 + 询问用户是否继续/转向/放弃
→ 用户选择 pivot 后,从三个维度中选择最合适的角度
reality_signal 30-70?
→ 展示竞品 + 提供 pivot_hints
→ Agent 主动建议差异化角度
reality_signal < 30?
→ 赛道空白,直接构建
```
## Relationship to Related Concepts
- [[Competition-Analysis]] ← 识别需要 pivot 的时机
- [[Reality-Signal]] ← 决策阈值依据
- [[Pre-Build Validation]] ← 包含 pivot 决策的工作流
- [[Agent-Build-Gate]] ← pivot 决策通过后的后续动作
## Related
- [[Competition-Analysis]]
- [[Reality-Signal]]
- [[Pre-Build Validation]]
- [[Agent-Build-Gate]]
- [[Startup MVP Pipeline]]