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

seed-qwen-ai

v1.0.1

Published

Typed project incubator for Qwen CLI - guided ideation through graduation into buildable projects

Readme

SEED-Qwen

Typed Project Incubator for Qwen CLI — guided ideation through graduation into buildable projects.


What is SEED?

SEED takes raw ideas through structured, type-aware exploration and produces comprehensive PLANNING.md documents ready for building.

Raw Idea → SEED → PLANNING.md → PAUL → Built Project

Quick Start

Install

npx seed-qwen-ai

Or specify location:

# Global (all projects)
npx seed-qwen-ai --global

# Local (current project)
npx seed-qwen-ai --local

Start Ideation

/seed

Launch with PAUL

/seed launch

This graduates your project AND initializes PAUL in one step — no re-asking questions.


Project Types (5)

| Type | Rigor | Purpose | |------|-------|---------| | Application | Deep | Software with UI, data model, API, deployment | | Workflow | Standard | Claude Code commands, hooks, skills | | Client | Standard | Client websites — business context, conversion | | Utility | Tight | Small tools, scripts, single-purpose | | Campaign | Creative | Content, marketing, launches |


Commands

| Command | Description | |---------|-------------| | /seed | Start guided ideation (default) | | /seed graduate | Move to apps/ with git repo + README | | /seed launch | Graduate + initialize PAUL (headless) | | /seed status | Show all projects in pipeline | | /seed add-type | Create custom project type |


The SEED → PAUL Pipeline

Step 1: Ideation (/seed)

1. Select project type
2. Guided conversation (type-specific)
3. Generate PLANNING.md

Step 2: Graduation (/seed graduate)

1. Quality gate check
2. Move to apps/{name}/
3. Git init + README

Step 3: Launch (/seed launch)

1. All Graduation steps
2. PAUL initialized headlessly
3. PLANNING.md → ROADMAP.md, PROJECT.md
4. Ready for /paul/plan

File Structure

projects/
└── {project-name}/
    └── PLANNING.md    # Generated during ideation

apps/
└── {project-name}/
    ├── PLANNING.md    # Copied from projects/
    ├── README.md      # Generated during graduation
    └── .paul/         # Created by /seed launch
        ├── PROJECT.md
        ├── ROADMAP.md
        └── STATE.md

Example Session

# Start ideation
/seed

# Select: Application
# Answer guided questions...
# PLANNING.md generated

# Graduate and launch
/seed launch my-app

# Now in apps/my-app/ with PAUL ready
/paul/plan    # Create first executable plan
/paul/apply   # Build it
/paul/unify   # Close loop

Custom Project Types

Add your own types:

/seed add-type

Creates:

  • ~/.qwen/seed-framework/data/{type}/config.md
  • ~/.qwen/seed-framework/data/{type}/guide.md
  • ~/.qwen/seed-framework/data/{type}/skill-loadout.md

Quality Gates

Before graduation, SEED verifies:

Universal:

  • Problem statement clear
  • Target users defined
  • Phases outlined
  • Next actions clear

Type-Specific:

  • Application: Tech stack resolved, data model defined
  • Workflow: Trigger mechanism clear
  • Client: Conversion path defined
  • Utility: Single purpose (no scope creep)
  • Campaign: Measurable goal, timeline set

Integration with PAUL-Qwen

SEED works standalone or with PAUL-Qwen:

Standalone:

/seed graduate    # Just create the project
# Build however you want

With PAUL:

/seed launch      # Graduate + PAUL init
/paul/plan        # Start structured build

Installation Options

Interactive (Default)

npx seed-qwen

Non-Interactive

# Global
npx seed-qwen --global

# Local
npx seed-qwen --local

# Custom path
npx seed-qwen --config-dir ~/.qwen-custom

Help

npx seed-qwen --help

Updating

npx seed-qwen@latest

Comparison: SEED vs Ad-Hoc Planning

| Aspect | Ad-Hoc | SEED | |--------|--------|------| | Structure | None | Type-guided | | Output | Notes, fragments | Structured PLANNING.md | | Graduation | Manual | Automated | | PAUL Handoff | Re-asks questions | Headless (zero re-asking) | | Quality | Variable | Gate-checked |


When to Use SEED

Good Fit

  • New project from scratch
  • Vague idea needs shaping
  • Want structured plan before building
  • Team alignment needed

Overkill

  • Quick scripts (use Utility type anyway)
  • Experiments/prototypes
  • Already have detailed spec

Troubleshooting

Commands Not Found

# Verify installation
ls ~/.qwen/commands/seed/

# Restart Qwen CLI

PLANNING.md Incomplete

Run quality gate manually:

/seed graduate    # Will show what's missing

Contributing

  1. Fork the repo
  2. Make changes
  3. Test with real projects
  4. Submit PR

GitHub: https://github.com/tyler1350/seed-qwen


License

MIT License — see LICENSE file.


Credits

SEED-Qwen is a port of the SEED Framework by Chris Kahler, adapted for Qwen CLI.

Part of the PAUL ecosystem:

  • SEED — Project incubator (ideation → planning)
  • PAUL — Project orchestration (plan → apply → unify)

SEED-Qwen v1.0 | For Qwen CLI | Typed Project Incubator