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

@nicho783/create-agentic-project

v1.0.0

Published

Starter pack for agentic development with Claude Code - multi-role workflow, Scrum SDLC, cross-session memory

Downloads

73

Readme

create-agentic-project

Starter pack for agentic development with Claude Code

Overview

create-agentic-project scaffolds a complete agentic development environment with:

  • Multi-role workflow (PM, FE, BE, QA, Reviewer)
  • Scrum SDLC with sprint cycles
  • Cross-session memory via claude-mem
  • Real-time docs via Context7
  • Token-efficient patterns

Installation

# Using npm
npm create agentic-project my-project

# Using npx
npx create-agentic-project my-project

# Using bun
bunx create-agentic-project my-project

Options

Interactive Mode

npx create-agentic-project

Non-Interactive Mode

npx create-agentic-project my-project --yes

With Template

npx create-agentic-project my-project --template=minimal --yes

Available templates:

  • full - Complete template with all workflows, docs, and skills
  • minimal - Core files only

With Plugins

npx create-agentic-project my-project --plugins=github,linear --yes

Templates

Full Template

Includes everything:

  • CLAUDE.md with complete instructions
  • All role skills (PM, FE, BE, QA, Reviewer)
  • Memory templates
  • Sprint workflows (planning, standup, review, deployment)
  • Documentation structure

Minimal Template

Core essentials:

  • Basic CLAUDE.md
  • Memory templates
  • Essential role skills

Project Structure

my-project/
├── CLAUDE.md              # Core agent instructions
├── .claude/
│   ├── settings.json      # Claude Code settings
│   ├── memory/            # Memory system
│   │   ├── MEMORY.md     # Memory index
│   │   ├── user.md       # User preferences
│   │   ├── project.md     # Project context
│   │   ├── feedback.md    # Lessons learned
│   │   └── reference.md   # External resources
│   └── skills/            # Role skills
│       ├── pm.md          # PM instructions
│       ├── fe.md          # FE instructions
│       ├── be.md          # BE instructions
│       ├── qa.md          # QA instructions
│       └── reviewer.md    # Reviewer instructions
├── workflows/             # Sprint workflows
│   ├── sprint-planning.md
│   ├── daily-standup.md
│   ├── review-process.md
│   └── deployment-checklist.md
└── README.md

Roles

| Role | Description | |------|-------------| | PM | Sprint planning, backlog management, stakeholder communication | | FE | UI/UX implementation, components, responsive design | | BE | API development, database, business logic, security | | QA | Test planning, automation, bug reporting | | Reviewer | Code quality, best practices, architecture review |

Workflow

┌─────────────────────────────────────────────────────────────┐
│ SPRINT CYCLE (2 weeks)                                      │
├─────────────────────────────────────────────────────────────┤
│                                                              │
│  Backlog ──▶ Sprint Planning ──▶ Sprint Backlog               │
│     │                                       │                │
│     │      ┌───────────────────────────────┬─┴────────┐     │
│     │      ▼                               ▼          │     │
│     │   Frontend Dev                    Backend Dev     │     │
│     │   (parallel)                     (parallel)      │     │
│     │      │                               │          │     │
│     │      └───────────────┬───────────────┘          │     │
│     │                      ▼                           │     │
│     │                  QA Testing                       │     │
│     │                      │                           │     │
│     │                      ▼                           │     │
│     │               Code Review                         │     │
│     │                      │                           │     │
│     │               Refactor (if needed)                │     │
│     │                      │                           │     │
│     └────────────────────── Done ◀──────────────────────┘     │
│                                                              │
└─────────────────────────────────────────────────────────────┘

Plugins

Required Plugins

| Plugin | Purpose | |--------|---------| | claude-mem | Cross-session memory & knowledge management | | Context7 | Real-time framework documentation |

Optional Plugins

| Plugin | Purpose | |--------|---------| | GitHub MCP | PR/Issue management | | Linear MCP | Sprint tracking | | Vercel MCP | Deployment & serverless |

Memory System

The project includes a structured memory system for cross-session continuity:

  • user.md - User preferences and profile
  • project.md - Current project context
  • feedback.md - Lessons learned
  • reference.md - External resources

Update memory files regularly for seamless session continuity.

Token-Efficient Patterns

| Pattern | Benefit | |---------|---------| | Focused context | Agent per role, less bloat | | On-demand docs | Only fetch when needed | | Incremental memory | Load relevant context only | | Parallel work | FE + BE simultaneously | | Structured prompts | Clear, role-specific |

Next Steps

  1. Navigate to your project:

    cd my-project
  2. Install required plugins in Claude Code:

    /install claude-mem
    /install context7
  3. Start working:

    claude
  4. Initialize memory system:

    /learn-codebase

Documentation

License

MIT