indiecorns
v0.3.28
Published
Indiecorns CLI and agent plugin for account sign-in, onboarding tasks, and local setup checks.
Maintainers
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 indiecornsThe 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 helpThe 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 doctorThe 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 --agentagent 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 --jsonOnboarding 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 allSocial 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 showCodex Plugin
Install the Indiecorns Codex plugin from the public package:
npx indiecorns plugin installThis 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 enableYou can also disable telemetry for a single run:
npx indiecorns tasks --no-telemetryLocal Development
From this repository root:
npm install
npm run cli -- help
npm run cli -- doctorThe 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 buildRun the package check before publishing:
npm pack --dry-runPackage 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.
