agent-teams
Coordinate multiple Claude Code sessions as a team — lead + teammates with shared task lists, mailbox messaging, and file-lock claiming. Patterns for team…
Remove AI-generated code slop, unnecessary comments, and over-engineering from the current branch diff. Cleans up boilerplate, simplifies abstractions, strips defensive code, and in skill-file mode lints SKILL.md files for quality. Use when cleaning up code, simplifying,
$ npx -y skills add rohitg00/pro-workflow --skill deslop --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/deslopContext preview
The summary Claude sees to decide when to auto-load this skill.
Remove AI-generated code slop, unnecessary comments, and over-engineering from the current branch diff. Cleans up boilerplate, simplifies abstractions, strips defensive code, and in skill-file mode lints SKILL.md files for quality. Use when cleaning up code, simplifying,
name: deslop description: Remove AI-generated code slop, unnecessary comments, and over-engineering from the current branch diff. Cleans up boilerplate, simplifies abstractions, strips defensive code, and in skill-file mode lints SKILL.md files for quality. Use when cleaning up code, simplifying, removing boilerplate, before committing, or when reviewing a skill before promoting it.
Check the diff against main and remove AI-generated slop introduced in the branch.
Use after completing changes, before committing, or when code feels over-engineered.
git fetch origin main git diff origin/main...HEAD --stat git diff origin/main...HEAD
1. Run diff commands to see all changes on the branch. 2. Identify slop patterns from the focus areas below. 3. Apply minimal, focused edits to remove slop. 4. Re-run `git diff origin/main...HEAD` to verify only slop was removed. 5. Run tests or type-check to confirm behaviour unchanged: `npm test -- --changed --passWithNoTests 2>&1 | tail -10` 6. Summarise what was cleaned.
When the target is a `SKILL.md` (not a code diff), lint it against the same slop instinct applied to prose. Run this before promoting a skill. Flag:
longer matches what it does. Cut it.
linked reference. Push it down: in-skill step, then in-skill reference, then an external file behind a pointer.
Keep one source of truth.
but never records the answer, cleans but never verifies).
can name in one word triggers and executes in fewer tokens.
See [`rules/skill-conventions.mdc`](../../rules/skill-conventions.mdc).
adds, updates, or appends, or that duplicates its output on a second run.
**Skill-file mode output:** the flagged issues by line, the edits applied, the cleanup summary, and whether the skill is ready to promote.
Claude Code learns from your corrections: self-correcting memory that compounds over 50+ sessions. Context engineering, parallel worktrees, agent teams, and 17 battle-tested skills.
Repo: rohitg00/pro-workflow
Coordinate multiple Claude Code sessions as a team — lead + teammates with shared task lists, mailbox messaging, and file-lock claiming. Patterns for team…
Auto-configure quality gates, hooks, and settings for a new project. Detects project type and sets up appropriate tooling. Use when onboarding a new codebase.
Decompose large-scale changes into independent units and spawn parallel agents in isolated worktrees. Use for migrations, refactors, codemods, and any change…
Capture a user-reported defect as a durable GitHub issue written in the project's own domain language. Explores the codebase in parallel for context but never…
Smart context compaction with state preservation. Saves critical files, task progress, and working state before compaction, restores after. Use before manual…
Master the four operations of context engineering — Write, Select, Compress, Isolate. Manage token budgets, compaction strategies, and context partitioning to…