diff --git a/documents/anti-patterns/ai-isolation.md b/documents/anti-patterns/ai-isolation.md new file mode 100644 index 0000000..1b45704 --- /dev/null +++ b/documents/anti-patterns/ai-isolation.md @@ -0,0 +1,24 @@ +--- +authors: [aino_vonge_corry] +--- + +# AI Isolation + +## Problem +AI can support long solo work loops. That's fine on a solo project, but on a team, where learning from each other matters, it becomes a problem. + +## What Goes Wrong +It's easy to retreat into private work with the machine instead of collaborating with your team. You feel less embarrassed about mistakes, get help instantly, and can work whenever you want. + +**Consequences:** less pairing, which means less learning, decreased code quality, fewer shared decisions, and weaker collective ownership. + +**Symptoms:** hermit behavior, fewer discussions, hidden assumptions in the work, loneliness. + +## Example +This has always been an issue, but AI makes it easier to work alone, so we'll see more of it. It runs against the principles of agile software development, which are about people, feedback, and learning. + +## Solution +Bring AI output back to the team. Read code together. Discuss prompts, assumptions, and trade-offs. + +## Related Patterns +Causes AI Slop. diff --git a/documents/relationships.mmd b/documents/relationships.mmd index aaf86df..5a7b4ae 100644 --- a/documents/relationships.mmd +++ b/documents/relationships.mmd @@ -129,6 +129,8 @@ graph LR anti-patterns/sunk-cost -->|related| anti-patterns/answer-injection anti-patterns/sunk-cost -->|related| anti-patterns/tell-me-a-lie anti-patterns/cognitive-overload -->|causes| anti-patterns/flying-blind + anti-patterns/ai-isolation -->|causes| anti-patterns/ai-slop + patterns/shared-canvas -->|solves| anti-patterns/ai-isolation %% Anti-pattern → Obstacle relationships (related/causes) anti-patterns/sunk-cost -->|related| obstacles/limited-context-window