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

@imcynic/unified-dev

v3.10.8

Published

CLI tool that orchestrates Claude Code and OpenAI Codex CLI in an intelligent feedback loop

Readme

Unified Development Agent

A CLI tool that orchestrates Claude Code and OpenAI Codex CLI in an intelligent feedback loop for automated development cycles.

Overview

unified-dev automates the iterative process of:

  1. Code Implementation - Claude Code understands requirements and implements solutions
  2. Comprehensive Review - Codex CLI performs multi-dimensional code analysis
  3. Feedback Integration - Review findings are translated into actionable prompts
  4. Iteration - The cycle repeats until code quality converges

Installation

npm install -g unified-dev

Prerequisites

Both tools must be installed and authenticated:

Claude Code

npm install -g @anthropic/claude-code
claude login

Codex CLI

npm install -g @openai/codex-cli
codex auth login

Quick Start

# Check installations
unified-dev check

# Run a development cycle
unified-dev "Build a React todo app with authentication"

# With options
unified-dev "Refactor the API layer" --iterations 5 --yes

Commands

Main Command

unified-dev <prompt> [options]

Options:

  • -i, --iterations <n> - Maximum iterations (default: 3)
  • -y, --yes - Auto-confirm all prompts
  • -v, --verbose - Verbose output
  • --no-artifacts - Skip saving session artifacts

Configuration

# Interactive setup
unified-dev config --init

# Show current config
unified-dev config --show

# Reset to defaults
unified-dev config --reset

# Show config file path
unified-dev config --path

Session Management

# List all sessions
unified-dev sessions --list

# View session details
unified-dev sessions --view <session-id>

Tool Check

# Verify installations and authentication
unified-dev check

Review Categories

The tool performs comprehensive code review across five dimensions:

1. Dependencies

  • Outdated packages and security vulnerabilities
  • Modern alternatives for deprecated libraries
  • Unused dependencies and bundle optimization
  • Version compatibility validation

2. Performance

  • Unnecessary re-renders and optimization opportunities
  • Bundle size and code-splitting analysis
  • Algorithm complexity and query efficiency
  • Memory leaks and resource management

3. Modernization

  • Deprecated API usage and legacy patterns
  • Framework best practices
  • Modern language features
  • Current coding standards

4. Architecture

  • Code organization and separation of concerns
  • Reusability and maintainability
  • Design pattern implementation
  • Scalability and extensibility

5. Security

  • Common vulnerability scanning (OWASP Top 10)
  • Input sanitization and authentication patterns
  • CORS policies and data handling
  • Error handling and logging practices

Configuration

Configuration file location: ~/.unified-dev/config.json

Default Configuration

{
  "maxIterations": 3,
  "autoConfirm": false,
  "verbose": false,
  "claudeCode": {
    "timeout": 300000,
    "retryAttempts": 1
  },
  "codexCli": {
    "timeout": 300000,
    "retryAttempts": 1
  },
  "output": {
    "saveArtifacts": true,
    "artifactsDir": "./unified-dev-session"
  },
  "review": {
    "skipCategories": [],
    "severityThreshold": "low"
  }
}

Environment Variables

  • UNIFIED_DEV_MAX_ITERATIONS - Override max iterations
  • UNIFIED_DEV_AUTO_CONFIRM - Set to "true" for non-interactive mode
  • UNIFIED_DEV_VERBOSE - Set to "true" for verbose output
  • UNIFIED_DEV_ARTIFACTS_DIR - Custom artifacts directory

Workflow Example

$ unified-dev "Build a React dashboard with authentication"

🤖 Claude Code: Planning to implement:
  - JWT authentication system
  - Protected route wrapper
  - User management interface
  - Dashboard with data visualization

✅ Proceed with implementation? [y/N/details]
> y

✓ Claude Code completed - 12 files modified

✓ Review completed - Score: 6.2/10

📊 Review Results:
📦 DEPENDENCIES (3 issues):
  • [high] react-router v5 → upgrade to v6
  • [medium] lodash → replace with native methods

⚡ PERFORMANCE (2 issues):
  • [medium] Dashboard component re-renders unnecessarily
  • [medium] API calls not cached or debounced

🚨 SECURITY (1 issue):
  • [critical] JWT stored in localStorage (XSS vulnerable)

✅ Send this feedback to Claude for fixes? [y/N/edit/filter]
> y

[Cycle continues until convergence...]

🎉 Development cycle complete!

📊 Session Stats:
   Total iterations: 3
   Files modified: 12
   Issues resolved: 6

📈 Quality Metrics:
   Initial review score: 6.2/10
   Final review score: 9.1/10

Session Artifacts

Each session generates the following artifacts in ./unified-dev-session/<session-id>/:

  • DEVELOPMENT_LOG.md - Complete session history with all prompts and responses
  • REVIEW_SUMMARY.md - Detailed review findings and resolutions
  • session.json - Session metadata and statistics
  • suggested-commit.txt - Git commit message for the changes

Troubleshooting

Installation Issues

# Verify Node.js version (requires >=18.0.0)
node --version

# Clear npm cache
npm cache clean --force

# Reinstall
npm install -g unified-dev

Authentication Problems

# Re-authenticate Claude Code
claude logout
claude login

# Re-authenticate Codex CLI
codex auth logout
codex auth login

Tool Not Found

Ensure the tools are in your PATH:

which claude
which codex

Development

Building from Source

git clone https://github.com/yourusername/unified-dev.git
cd unified-dev
npm install
npm run build
npm link

Running Tests

npm test

License

MIT

Contributing

Pull requests are welcome! Please read our contributing guidelines before submitting PRs.

Support

For issues and feature requests, please use the GitHub issue tracker.