From agentic
Getting started with Agentic — workflow, commands, and how the agent team works together.
npx claudepluginhub rexeus/agentic --plugin agenticThis skill uses the workspace's default tool permissions.
Agentic is a multi-agent development toolkit. Seven specialists, one
Provides Ktor server patterns for routing DSL, plugins (auth, CORS, serialization), Koin DI, WebSockets, services, and testApplication testing.
Conducts multi-source web research with firecrawl and exa MCPs: searches, scrapes pages, synthesizes cited reports. For deep dives, competitive analysis, tech evaluations, or due diligence.
Provides demand forecasting, safety stock optimization, replenishment planning, and promotional lift estimation for multi-location retailers managing 300-800 SKUs.
Agentic is a multi-agent development toolkit. Seven specialists, one orchestrator (the Lead), zero configuration.
In OpenCode, lead is installed as a visible primary agent. The specialists
are installed as hidden subagents. Talk to the Lead; the Lead deploys the team.
The Lead agent is your main thread. Start with the Lead when you want to build, fix, or improve something — it deploys the right specialists for the job.
For structured workflows, use the commands:
OpenCode: /agentic-plan Claude Code: /agentic:plan
OpenCode: /agentic-develop Claude Code: /agentic:develop
OpenCode: /agentic-review Claude Code: /agentic:review
OpenCode: /agentic-simplify Claude Code: /agentic:simplify
OpenCode: /agentic-polish Claude Code: /agentic:polish
OpenCode: /agentic-verify Claude Code: /agentic:verify
OpenCode: /agentic-commit Claude Code: /agentic:commit
OpenCode: /agentic-pr Claude Code: /agentic:pr
Plan → Develop → Review → Simplify → Verify → Commit → PR
↑
Polish (iterative loop)
/agentic-plan (OpenCode) or /agentic:plan (Claude Code) — describe what you want. The Lead asks questions, challenges
scope, and produces a plan. You approve before anything is built.
/agentic-develop (OpenCode) or /agentic:develop (Claude Code) — the Lead scouts the codebase, designs the approach,
briefs the developer, and runs review + tests.
/agentic-review (OpenCode) or /agentic:review (Claude Code) — independent parallel reviewers check correctness,
security, and conventions.
/agentic-simplify (OpenCode) or /agentic:simplify (Claude Code) — the Refiner removes unnecessary complexity while
preserving behavior.
Polish. /agentic-polish (OpenCode) or /agentic:polish (Claude Code) is the consistency loop. It aligns the code
with established patterns, smooths out inconsistencies, and is designed for iterative runs until the codebase converges.
Review the changes yourself. Stage what looks good with git add.
/agentic-commit (OpenCode) or /agentic:commit (Claude Code) — creates the commit message from staged changes.
/agentic-pr (OpenCode) or /agentic:pr (Claude Code) — creates or updates a Pull Request.
Skip steps you don't need. Every command works independently.
No agent will ever run git add, git stash, or modify your staged files.
Staging is your responsibility. The agents write code — you decide what ships.
You don't deploy agents directly. The Lead does that based on your task:
Agents use your default model unless overridden. In OpenCode, configure
per-agent models in 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. A practical setup: fast model for
the scout (reconnaissance), capable model for the lead and developer
(orchestration and implementation), default for the rest.
In Claude Code, model overrides are configured in settings.json via the
agentSettings key.
The plugin enforces quality automatically:
TODO(name) or TODO(#123)