by avifenesh
AI writes code. This automates everything else · 13 plugins · 42 agents · 28 skills · for Claude Code, OpenCode, Codex.
# Add to your Claude Code skills
git clone https://github.com/avifenesh/agentsysRenamed from
awesome-slash— Theawesome-prefix implies a curated list of links, but this project is a functional software suite and runtime. Please update your installs:npm install -g agentsys
AI models can write code. That's not the hard part anymore. The hard part is everything around it — task selection, branch management, code review, artifact cleanup, CI, PR comments, deployment. AgentSys is the runtime that orchestrates agents to handle all of it — structured pipelines, gated phases, specialized agents, and persistent state that survives session boundaries.
Building custom skills, agents, hooks, or MCP tools? agnix is the CLI + LSP linter that catches config errors before they fail silently - real-time IDE validation, auto suggestions, auto-fix, and 155 rules for Cursor, Claude Code, Cline, Copilot, Codex, Windsurf, and more.
An agent orchestration system — 13 plugins, 42 agents, and 28 skills that compose into structured pipelines for software development.
Each agent has a single responsibility, a specific model assignment, and defined inputs/outputs. Pipelines enforce phase gates so agents can't skip steps. State persists across sessions so work survives interruptions.
The system runs on Claude Code, OpenCode, and Codex CLI. Install the plugins, get the runtime.
Code does code work. AI does AI work.
No comments yet. Be the first to share your thoughts!
Certainty levels exist because not all findings are equal:
| Level | Meaning | Action | |-------|---------|--------| | HIGH | Definitely a problem | Safe to auto-fix | | MEDIUM | Probably a problem | Needs context | | LOW | Might be a problem | Needs human judgment |
This came from testing on 1,000+ repositories.
| Command | What it does |
|---------|--------------|
| /next-task | Task → exploration → plan → implementation → review → ship |
| /agnix | Lint agent configs - 155 rules for Skills, Memory, Hooks, MCP across 10+ AI tools |
| /ship | Branch → PR → CI → reviews addressed → merge → cleanup |
| /deslop | 3-phase detection pipeline, certainty-graded findings |
| /perf | 10-phase performance investigation with baselines and profiling |
| /drift-detect | AST-based plan vs code analysis, finds what's documented but not built |
| /audit-project | Multi-agent code review, iterates until issues resolved |
| /enhance | Analyzes prompts, agents, plugins, docs, hooks, skills |
| /repo-map | AST symbol and import mapping via ast-grep |
| /sync-docs | Finds outdated references, stale examples, missing CHANGELOG entries |
| /learn | Research any topic, gather online sources, create learning guide with RAG index |
| /consult | Consult another AI CLI tool for a second opinion. Use when you want to cross-check ideas, get alternative approaches, or validate decisions with Gemini, Codex, Claude, OpenCode, or Copilot. |
| /debate | Use when user asks to "debate", "argue about", "compare perspectives", "stress test idea", "devil advocate", or "tool vs tool". Structured debate between two AI tools with proposer/challenger roles and a verdict. |
Each command works standalone. Together, they compose into end-to-end pipelines.
28 skills included across the plugins:
| Category | Skills |
|----------|--------|
| Performance | perf:perf-analyzer, perf:perf-baseline-manager, perf:perf-benchmarker, perf:perf-code-paths, perf:perf-investigation-logger, perf:perf-profiler, perf:perf-theory-gatherer, perf:perf-theory-tester |
| Enhancement | enhance:enhance-agent-prompts, enhance:enhance-claude-memory, enhance:enhance-cross-file, enhance:enhance-docs, enhance:enhance-hooks, enhance:enhance-orchestrator, enhance:enhance-plugins, enhance:enhance-prompts, enhance:enhance-skills |
| Workflow | next-task:discover-tasks, next-task:orchestrate-review, next-task:validate-delivery |
| Cleanup | deslop:deslop, sync-docs:sync-docs |
| Analysis | debate:debate, drift-detect:drift-analysis, repo-map:repo-mapping |
| Productivity | consult:consult |
| Learning | learn:learn |
| Linting | agnix:agnix |
Skills are the reusable implementation units. Agents invoke skills; commands orchestrate agents. When you install a plugin, its skills become available to all agents in that session.
| Section | What's there | |---------|--------------| | The Approach | Why it's built this way | | Commands | All 12 commands overview | | Skills | 28 skills across plugins | | Command Details | Deep dive into each command | | How Commands Work Together | Standalone vs integrated | | Design Philosophy | The thinking behind the architecture | | Installation | Get started | | Research & Testing | What went into building this | | Documentation | Links to detailed docs |
Purpose: Complete task-to-production automation.
What happens when you run it:
Phase 9 uses the orchestrate-review skill to spawn parallel reviewers (code quality, security, performance, test coverage) plus conditional specialists.
Agents involved:
| Agent | Model | Role | |-------|-------|------| | task-discoverer | sonnet | Finds and ranks tasks from your source | | worktree-manager | haiku | Creates git worktrees and branches | | exploration-agent | opus | Deep codebase analysis before planning | | planning-agent | opus | Designs step-by-step implementation plan | | implementation-agent | opus | Writes the actual code | | test-coverage-checker | sonnet | Validates tests exist and are meaningful | | delivery-validator | sonnet | Final checks before shipping | | ci-monitor | haiku | Watches CI status | | ci-fixer | sonnet | Fixes CI failures and review comments | | simple-fixer | haiku | Executes mechanical edits |
Cross-plugin agent: | Agent | Plugin | Role | |-------|--------|------| | deslop-agent | deslop | Removes AI artifacts before review | | sync-docs-agent | sync-docs | Updates documentation |
Usage:
/next-task # Start new workflow
/next-task --resume # Resume interrupted workflow
/next-task --status # Check current state
/next-task --abort # Cancel and cleanup
[Full workflow documentation →](./docs/workf