Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub ekson73/multi-agent-os --plugin multi-agent-osHow this skill is triggered — by the user, by Claude, or both
Slash command
/maos:anti-conflictThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Prevent file conflicts between multiple AI agents working in parallel. Implements a 7-phase workflow with mandatory worktree usage, lock files, and QA validation.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Breaks plans, specs, or PRDs into thin vertical-slice issues on the project issue tracker using tracer bullets. Useful for converting high-level work into grabbable implementation tickets.
Share bugs, ideas, or general feedback.
Prevent file conflicts between multiple AI agents working in parallel. Implements a 7-phase workflow with mandatory worktree usage, lock files, and QA validation.
git worktree list # Check active worktrees
cat .worktrees/tasks.md # Check IN_PROGRESS tasks
cat .worktrees/sessions.json # Check active sessions
ls .worktrees/*.lock # Check lock files
git status # Check uncommitted changes
git log --oneline -3 # Verify expected state
git worktree add .worktrees/{agent-hex}-{feature} -b {tipo}/{name}
cd .worktrees/{agent-hex}-{feature}
For protected files (CLAUDE.md, README.md, CSVs):
cp .worktrees/session_lock.template.json .worktrees/{id}.lockgit status --short | grep {file}
# M or MM → DO NOT EDIT (another agent working)
# ?? or CLEAN → Safe to edit
High-risk files requiring explicit coordination:
git add {specific-files} (NEVER git add .)tipo(escopo): desc - Agent: {name}For sessions >1 hour:
git fetch origin
git log HEAD..origin/main --oneline
Before closing session:
Skill based on Anti-Conflict Protocol v3.2 | multi-agent-os