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

@dev_ahmad_org/proposal-generator-cli

v1.0.9

Published

CLI client for the proposal-generator — generate freelancing proposals from the terminal

Readme

Proposal Generator CLI

Turn client requirements into a timeline, tech stack, price estimate, milestone breakdown, and a ready-to-send Markdown proposal — all from your terminal.

proposal-gen estimate -c "Green Valley" -t ecommerce -f auth,payments,ecommerce-catalog --region pakistan

Built on the same engine as the Proposal Generator MCP server. Use whichever interface fits your workflow.

Install

npm install -g @dev_ahmad_org/proposal-generator-cli
# or
bun install -g @dev_ahmad_org/proposal-generator-cli

From source (monorepo)

git clone <repo-url> proposal-generator
cd proposal-generator
bun install
bun run build

Then link the CLI globally:

bun link packages/cli
# or run directly:
node packages/cli/dist/index.mjs <command>

Commands

proposal-gen estimate

Quick back-of-envelope numbers — total hours, price range, and timeline.

proposal-gen estimate \
  -c "Acme Corp" \
  -t web-app \
  -f auth,payments,admin-dashboard \
  --region us \
  --complexity medium

proposal-gen generate

Full proposal document with tech stack, milestones, payment schedule, and Markdown output.

proposal-gen generate \
  -c "Acme Corp" \
  -t ecommerce \
  -f auth,payments,ecommerce-catalog,search \
  --region us \
  --additional-notes "Needs multi-vendor support in phase 2"

# Write to file
proposal-gen generate \
  -c "Acme Corp" \
  -t saas \
  -f auth,subscription-billing,admin-dashboard \
  --region us \
  -o proposal.md

proposal-gen tech-stack

Print the recommended tech stack only.

proposal-gen tech-stack \
  -c "Acme Corp" \
  -t mobile-app \
  -f auth,social-login,notifications,realtime-chat

proposal-gen features

List the full feature catalog with hour estimates and categories.

proposal-gen features

Options reference

| Option | Used by | Description | | -------------------- | ------------------------------ | ----------------------------------------------------------------------------------------------- | | -c, --client-name | estimate, generate, tech-stack | Client or company name (required) | | -t, --project-type | estimate, generate, tech-stack | landing-page, web-app, saas, ecommerce, mobile-app, api-backend, other (required) | | -f, --features | estimate, generate, tech-stack | Comma-separated feature keys (required) | | -p, --project-name | estimate, generate, tech-stack | Optional project/product name | | --complexity | estimate, generate, tech-stack | simple, medium (default), complex | | --platforms | estimate, generate, tech-stack | web (default), ios, android | | --design-needs | estimate, generate, tech-stack | none, basic (default), custom-design-system | | --region | estimate, generate, tech-stack | pakistan, uae, us (default), uk, europe, other | | --weekly-capacity | estimate, generate, tech-stack | Your available hours/week (default 25) | | --budget-hint | estimate, generate, tech-stack | Client's stated budget (reference only) | | --deadline-hint | estimate, generate, tech-stack | Client's stated deadline (reference only) | | --additional-notes | estimate, generate, tech-stack | Extra context included in the proposal | | -o, --output | generate | Write the Markdown proposal to a file path |

Customizing estimates

All rates, base hours, feature estimates, and milestones live in the server package:

  • Feature catalogpackages/server/src/data/featureCatalog.ts
  • Rate cards & multiplierspackages/server/src/data/rateCards.ts
  • Milestone templatepackages/server/src/logic/estimator.ts
  • Proposal layoutpackages/server/src/logic/proposalBuilder.ts

Edit any file, then rebuild with bun run build from the monorepo root.

Development

# Build both server + CLI
bun run build

# Build just the CLI
bun run build:cli

# Preview without global install
bun run preview

License

MIT