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

@heshamfsalama/agentport

v0.1.0

Published

AgentPort CLI: a safe migration planner and AgentPack compiler for AI coding-agent environments.

Readme

AgentPort

AgentPort is a safe migration planner and compiler for AI coding-agent environments.

It scans tools like Claude Code, Codex, and Gemini CLI, normalizes their configuration into an AgentPack, produces a reviewed migration plan, and applies that plan only after explicit approval.

The goal is not to copy random folders. The goal is a standard, inspectable way to move agent instructions, MCP servers, skills, commands, permissions, and automation between coding agents without silently leaking secrets or changing behavior.

Product Model

  • AgentPort: the CLI and migration engine.
  • AgentPack: the portable JSON artifact and schema.
  • Adapter: a scanner/emitter for a specific tool.
  • Migration plan: a reviewed list of writes, manual actions, skipped items, and portability labels.

Recommended First Run

Without installing:

npx @heshamfsalama/agentport doctor --project .

Or install globally:

npm install -g @heshamfsalama/agentport
agentport doctor --project .
agentport scan --from auto --scope all --project . --cwd . --out agentpack.json
agentport plan --pack agentpack.json --to codex --target-scope same --out migration.plan.json
agentport apply --plan migration.plan.json --dry-run

Only apply after reviewing migration.plan.json:

agentport apply --plan migration.plan.json --yes

agentmigrate remains as a backward-compatible alias while the project transitions to AgentPort.

Safety Defaults

  • scan and plan do not write target files.
  • Secrets are redacted into environment variable references.
  • Raw conversations are not imported.
  • Hooks and permissions that do not map exactly are flagged for manual review.
  • Marketplace plugins are cataloged but not installed.
  • Managed organization policy is never auto-written.
  • Local/private project scope stays private unless explicitly promoted.

Supported V1 Adapters

  • Claude Code
  • Codex
  • Gemini CLI

The compatibility catalog also tracks research-only entries for Cursor, Windsurf, Antigravity, Kiro, Amp, Aider, OpenCode, Goose, Zed, JetBrains Junie, GitHub Copilot CLI, Amazon Q Developer, Continue, Cline, Roo Code, Trae, Augment, Replit Agent, and Devin.

Who Should Look At This

AgentPort is meant for users and maintainers of AI coding-agent tools who care about portable, reviewable configuration. Relevant ecosystems include OpenAI Codex, Anthropic Claude Code, Google Gemini CLI and Antigravity, Cursor, Windsurf, Kiro, Amazon Q Developer, Sourcegraph Amp, Aider, OpenCode, Goose, Cline, Roo Code, Continue, Zed, JetBrains Junie, and GitHub Copilot.

This list is not an endorsement claim. It is a map of tools whose users may benefit from a shared migration format.

Documentation

Contributing

Contributions are welcome. The most useful early contributions are sanitized fixtures, adapter research facts, and tests for new tool paths.

Read CONTRIBUTING.md before opening a PR.

Security

Please do not paste private configs, credentials, or raw conversations into public issues. See SECURITY.md.

Current Status

This is V1. It is useful today for local migration planning between Claude Code, Codex, and Gemini CLI, and it is structured so the community can add adapters without changing the core standard.