@rexeus/agentic
v0.3.2
Published
Multi-agent development toolkit for Claude Code and OpenCode. Specialized agents, conventions, review workflows, and quality guardrails for TypeScript and JavaScript projects.
Maintainers
Readme
@rexeus/agentic
A multi-agent development toolkit for Claude Code and OpenCode. Seven specialized agents, one orchestrator, zero complexity.
Why
Most Claude Code plugins are overwhelming. Dozens of commands, complex configuration, steep learning curves.
Agentic is different. Install it, type a command, and let the agents do their work. The Lead orchestrator figures out which specialists to deploy, briefs them precisely, and synthesizes their results. You stay in control — the agents stay in their lane.
Built for TypeScript projects. Should work with other languages too.
Quick Start
OpenCode (recommended)
npx @rexeus/agentic install opencodeOne command. This installs the Agentic plugin, agents, commands, and skills
globally. Restart OpenCode, switch to the visible lead agent, then run:
/agentic-plan Plan a feature
/agentic-develop Build it
/agentic-review Review the code
/agentic-simplify Make it simpler
/agentic-polish Harmonize the codebase
/agentic-verify Run the quality gate
/agentic-commit Commit with Conventional Commits
/agentic-pr Create a Pull RequestClaude Code
/plugin marketplace add rexeus/agentic
/plugin install agentic@rexeusThe Workflow
A typical development cycle with Agentic:
Plan → Develop → Review → Simplify → Verify → Commit → PR
↑
Polish (iterative loop)1. Plan. Start with /agentic-plan (OpenCode) or /agentic:plan (Claude Code).
The Lead doesn't just accept your
requirements — it challenges them. It asks hard questions, surfaces assumptions,
and presents options before producing an implementation plan. You approve the
plan before any code is written.
2. Develop. /agentic-develop (OpenCode) or /agentic:develop (Claude Code)
runs the full pipeline. The Lead scouts the
codebase, designs the approach, hands a precise briefing to the developer agent,
and follows up with review and tests. You get working, tested code — not a plan
about a plan.
3. Review. /agentic-review (OpenCode) or /agentic:review (Claude Code)
deploys parallel reviewers with different
focus areas — correctness, security, conventions. Each reviewer works
independently for unbiased analysis. High-confidence findings only.
4. Simplify. /agentic-simplify (OpenCode) or /agentic:simplify (Claude Code)
is where the craft happens. The Refiner
distills working code to its essence — fewer abstractions, clearer names, less
indirection. Behavior stays the same. Complexity goes down. This step is what
separates code that works from code that sings.
Polish. /agentic-polish (OpenCode) or /agentic:polish (Claude Code)
is the consistency loop. It discovers the patterns
your project already uses, finds where peer files diverge, and unifies them.
Use it after a feature is built, after a large refactor, or whenever files have
drifted apart. Polish is designed for iterative runs: execute, review the
changes, then /clear and run it again. Each pass finds fewer
issues until the codebase converges.
5. Verify. /agentic-verify (OpenCode) or /agentic:verify (Claude Code)
is the pre-ship quality gate. It runs
correctness review, complexity analysis, and tests in parallel. One command,
three perspectives, a clear verdict: PASS, FAIL, or CONDITIONAL.
6. Commit & PR. /agentic-commit + /agentic-pr (OpenCode) or
/agentic:commit + /agentic:pr (Claude Code) handle commit and PR flow.
commit creates Conventional Commits from your
staged changes. pr crafts a Pull Request with a structured
description. You stage the files — the agents handle the message.
OpenCode CLI
agentic install opencode
agentic doctor
agentic uninstall opencodeYou don't have to use every step. Skip what you don't need. The commands work independently.
The Agents
Seven cognitive modes, one orchestrator. Each answers a different question:
Scout → "What is here?" Fast codebase reconnaissance
Analyst → "How does this work?" Traces logic and data flows
Architect → "How should it be?" Designs solutions, evaluates trade-offs
Developer → "Here's the implementation." The only agent that writes source code
Reviewer → "Is this correct?" Reviews for quality, correctness, and conventions
Tester → "Does it actually work?" Writes and runs tests
Refiner → "How can this be simpler?" Distills code to its essence
Lead → Orchestrates all above Delegates, synthesizes, keeps you in the loopThe Lead runs as your main thread. In Claude Code, that is configured through
settings.json. When you describe a task, the Lead decides which specialists
to deploy, in what order, and with what briefing. You see the plan before it
executes.
In OpenCode, lead is installed as a first-class primary agent. The rest of
the team is installed as hidden subagents so the experience still flows through
one visible orchestrator instead of eight competing entry points.
Claude Code agents also have Stop hooks — LLM-based guardrails that check whether the agent stayed in its role before returning results. The Developer is checked against planning. The Reviewer against implementing. The Architect against writing tests. These are probabilistic guardrails, not hard walls — but they catch most role drift.
Skills
Skills are background knowledge that agents load automatically. They inform decisions without cluttering your workflow.
| Skill | Purpose |
| ------------------ | ---------------------------------------------------------- |
| conventions | Code style, naming, structure, types, error handling |
| quality-patterns | Anti-patterns, coupling, duplication, positive patterns |
| security | Injection, auth, data exposure, input validation |
| testing | Test philosophy, layers, doubles, anti-patterns |
| git-conventions | Conventional Commits, branch naming, PR descriptions |
| setup | Getting started with Agentic, workflow, and agent overview |
Agentic is compatible with the skills CLI.
You can use it to update skills via npx skills update or install additional
third-party skills alongside Agentic. To add Agentic skills through the skills
CLI instead of the built-in installer:
npx skills add rexeus/agentic -g --all -yConfiguration
Agentic works out of the box with zero configuration. But you can customize
models per agent in your opencode.json:
{
"agent": {
"lead": { "model": "openai/gpt-5.4" },
"scout": { "model": "anthropic/claude-haiku-4-5" },
"developer": { "model": "openai/gpt-5.4" }
}
}Model IDs use the provider/model format — the same format as your top-level
model setting. Agents without an explicit override use your default. This
lets you balance cost and capability — a fast model for the scout, a capable
model for the lead and developer, and your default for everything else.
In Claude Code, model overrides are configured in settings.json via the
agentSettings key.
Hooks & Guardrails
Both integrations enforce the same core guardrails:
- Secret detection before write/edit (hardcoded passwords, secrets, API tokens)
- Conventional Commit validation on
git commitmessages - Convention warnings after edits (debug statements, unowned TODOs, conflict markers)
Claude Code integration (hooks/hooks.json, shell scripts, and settings.json) also includes:
- Native plan mode blocking to keep planning inside Agentic workflows
- Agent-level Stop hooks for role compliance checks
OpenCode integration (opencode/plugin.mjs) applies the same write/commit
guardrails through tool.execute.before and post-edit warnings through
tool.execute.after.
All guardrails are pattern-based and intentionally conservative. They catch high-signal issues, but they are not a substitute for human review.
License
Apache-2.0
