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

indiecorns

v0.3.28

Published

Indiecorns CLI and agent plugin for account sign-in, onboarding tasks, and local setup checks.

Readme

Indiecorns

Indiecorns is the CLI and agent plugin for Indiecorns onboarding. It helps developers sign in, inspect available onboarding tasks, run agent-safe action plans, and install the local Indiecorns plugin for Codex and compatible agent environments.

Install

Run the CLI directly with npm:

npx indiecorns

The default command starts the CLI-first wizard: it analyzes the local environment, checks auth, checks the agent plugin, summarizes onboarding credits, and then routes the user to the next command.

Or install it globally:

npm install --global indiecorns
indiecorns help

The package requires Node.js 20.20 or newer, or Node.js 22.22 or newer.

Common Commands

npx indiecorns wizard
npx indiecorns login
npx indiecorns signup
npx indiecorns status
npx indiecorns tasks
npx indiecorns run
npx indiecorns dashboard
npx indiecorns doctor

The wizard follows the best setup-CLI pattern: one terminal session, clear progress, browser auth only when needed, and structured output for agents.

npx indiecorns login opens the browser, waits for the Indiecorns app to finish Google sign-in, and confirms the local CLI session in the terminal. On a remote machine or in automation, pass --no-open to print the login URL without launching a browser.

Agent Workflows

Use the structured JSON interfaces when another agent is orchestrating the CLI:

npx indiecorns agent
npx indiecorns wizard --ndjson --no-open
npx indiecorns tasks --agent
npx indiecorns run --agent

agent and --agent are stable machine-readable surfaces. They avoid browser opens and return the auth, dashboard, action, and next-command data an agent needs without parsing human terminal output.

wizard --ndjson streams lifecycle events as newline-delimited JSON so Codex, Claude, Cursor, CI jobs, or a custom orchestrator can render progress and act on the next command without scraping the terminal UI.

For JSON output without the full agent plan:

npx indiecorns status --json
npx indiecorns tasks --json
npx indiecorns profiles --platform peerlist --json

Onboarding Actions

The CLI can open or record the current Indiecorns onboarding actions:

npx indiecorns follow x
npx indiecorns follow linkedin
npx indiecorns follow peerlist
npx indiecorns upvote peerlist
npx indiecorns rate peerlist
npx indiecorns join peerlist
npx indiecorns join discord
npx indiecorns complete all

Social actions are external-platform actions. The CLI can open the destination and record progress in Indiecorns, but agents should only mark an action as complete after the action was actually performed in the user's signed-in browser session.

External Profiles

Save profile links used by Indiecorns and agent follow workflows:

npx indiecorns profile set peerlist --username yourname
npx indiecorns profile set x --username yourname
npx indiecorns profile set linkedin --username yourname
npx indiecorns profile set github --username yourname
npx indiecorns profile set substack --username yourname
npx indiecorns profile set website --profile-url https://example.com
npx indiecorns profile show

Codex Plugin

Install the Indiecorns Codex plugin from the public package:

npx indiecorns plugin install

This writes the plugin to ~/plugins/indiecorns and registers it in ~/.agents/plugins/marketplace.json. Restart Codex after installing so it reloads the local plugin marketplace.

Telemetry

The CLI sends product telemetry to Indiecorns so onboarding and agent handoffs can be improved. It identifies the signed-in Indiecorns user when a valid CLI session is available and avoids sending secrets.

npx indiecorns telemetry status
npx indiecorns telemetry disable
npx indiecorns telemetry enable

You can also disable telemetry for a single run:

npx indiecorns tasks --no-telemetry

Local Development

From this repository root:

npm install
npm run cli -- help
npm run cli -- doctor

The Next.js app lives in the nested indiecorns/ workspace:

npm --prefix indiecorns install
npm --prefix indiecorns run dev
npm --prefix indiecorns run typecheck
npm --prefix indiecorns run build

Run the package check before publishing:

npm pack --dry-run

Package Contents

The npm package intentionally ships only the CLI entrypoint and agent plugin assets. The Next.js app source, generated build output, local auth state, and environment files are excluded from the public tarball.

Support

  • Website: https://indiecorns.com
  • App: https://app.indiecorns.com
  • Source: https://github.com/danielsinewe/indiecorns-cli
  • Issues: https://github.com/danielsinewe/indiecorns-cli/issues

License

MIT.