npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@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.

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 opencode

One 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 Request

Claude Code

/plugin marketplace add rexeus/agentic
/plugin install agentic@rexeus

The 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 opencode

You 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 loop

The 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 -y

Configuration

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 commit messages
  • 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