parallel-feature-development
帮助把大功能拆成独立工作流并降低合并冲突。
分解大功能并行实现的归属、集成与冲突策略。
把一个大功能拆成多个并行任务的实践指南,包含文件归属、冲突规避和集成策略。适合多人同时实现同一系统不同层次、需要提前约定接口或避免频繁合并冲突时使用。特别强调接口契约与所有权边界,能让不同实现者并行工作又不互相踩线。
▸ 展开 SKILL.md 英文原文
Coordinate parallel feature development with file ownership strategies, conflict avoidance rules, and integration patterns for multi-agent implementation. Use this skill when decomposing a large feature into independent work streams, when two or more agents need to implement different layers of the same system simultaneously, when establishing file ownership to prevent merge conflicts in a shared codebase, when designing interface contracts so parallel implementers can build against each other's APIs before they are ready, or when deciding whether to use vertical slices versus horizontal layers for a full-stack feature.
帮我安装这个 skill:https://raw.githubusercontent.com/wshobson/agents/main/plugins/agent-teams/skills/parallel-feature-development/SKILL.mdcurl -fsSL "https://raw.githubusercontent.com/wshobson/agents/main/plugins/agent-teams/skills/parallel-feature-development/SKILL.md"# Parallel Feature Development Strategies for decomposing features into parallel work streams, establishing file ownership boundaries, avoiding conflicts, and integrating results from multiple implementer agents. ## When to Use This Skill - Decomposing a feature for parallel implementation - Establishing file ownership boundaries between agents - Designing interface contracts between parallel work streams - Choosing integration strategies (vertical slice vs horizontal layer) - Managing branch and merge workflows for parallel development ## File Ownership Strategies ### By Directory Assign each implementer ownership of specific directories: ``` implementer-1: src/components/auth/ imple