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

made-beta-imagal

v0.1.21

Published

It allows you to create tasks in your project manager (e.g., Github) automatically based on predefined processes. Additionally, it generates documentation based on the project.

Downloads

16

Readme

logo

MADE

It is a plugin that empowers the Scrum Master and the development team to create the backlog and sprints based on processes that can be reused and standardized throughout the project and/or across different projects.

Installation

VS Code Extension

  1. Open Visual Studio Code
  2. Go to Extensions (Ctrl+Shift+X)
  3. Search for "MADE - Leds - Beta"
  4. Click Install

CLI Tool (NPM)

# Install globally
npm install -g made-beta

# Or use locally
npx made-beta --help

Manual Installation (VSIX)

  1. Download the latest .vsix file from releases
  2. Open Visual Studio Code
  3. Right-click and select "Install Extension VSIX"

Usage

VS Code Extension

Right-click on your .made file and select:

  • "Generate Documentation" - Creates markdown documentation
  • "Generate Github Issues" - Pushes to GitHub Issues/Projects

CLI Commands

# Generate documentation
made-cli generate project.made

# Push to GitHub (requires .env configuration)
made-cli github project.made

# Help
made-cli --help

GitHub Integration Setup

Create a .env file in your project directory:

GITHUB_TOKEN=your_github_token
GITHUB_ORG=your_organization
GITHUB_REPO=your_repository

image with the right-click menu

Components

Project:

Define the project configuration and metadata.

project projectid {
    name: "project name"
    description: "project description" 
    startDate: 2024-01-30
    dueDate: 2024-12-30
    completedDate: 2024-11-15
}

Team:

Define a team and its members.

team teamid {
    name: "team name"
    description: "team description"
    
    teammember memberid {
        name: "member name" 
        email: "[email protected]"
        discord: "discord-handle"
    }
}

Sprint (TimeBox):

Define sprints with their planning items and assignees.

sprint sprintid {
    name: "Sprint name"
    description: "Sprint description"
    startDate: 2024-01-30
    endDate: 2024-02-13
    status: IN_PROGRESS
    comment: "First sprint comment"
    
    sprintbacklog backlogid {
        item backlogid.epicid.storyid.taskid {
            assignee: teamid.memberid
            dueDate: 2024-02-10
            startDate: 2024-01-30
            completedDate: 2024-02-08
            status: DONE
            complexity: MEDIUM
        }
    }
}

Process:

Define processes with their activities and tasks.

process processid {
    name: "process name"
    description: "process description"
    
    activity activityid {
        name: "activity name"
        description: "activity description"
        
        task taskid {
            name: "task name"
            description: "task description"
        }
    }
}

Backlog:

Define backlogs with epics, stories, and tasks.

backlog backlogid {
    name: "backlog name"
    description: "backlog description"
    
    epic epicid {
        name: "Epic name"
        description: "Epic description"
        process: processid
        Criterions: "acceptance criteria 1", "criteria 2"
        observation: "epic notes"
        
        story storyid {
            name: "User story name"
            description: "Story description"
            activity: processid.activityid
            depends: backlogid.anotherstory
            Requirements: "requirement 1", "requirement 2"
            Criterions: "story criteria"
            observation: "story notes"
            
            task taskid {
                name: "Task name"
                description: "Task description"
                task: processid.activityid.taskid
                depends: backlogid.epicid.storyid.anothertask
                Deliverables: "deliverable 1", "deliverable 2"
            }
        }
    }
    
    story standalonstory {
        name: "Standalone story"
        description: "Story not inside epic"
        
        task storytask {
            name: "Story task"
        }
    }
}

Roadmap:

Define roadmaps with milestones and releases.

roadmap roadmapid {
    name: "Roadmap name"
    description: "Roadmap description"
    
    milestone milestoneid {
        name: "Milestone name"
        description: "Milestone description"
        startDate: 2024-01-30
        dueDate: 2024-03-30
        completedDate: 2024-03-25
        status: COMPLETED
        depends: roadmapid.previousmilestone
        
        release releaseid {
            name: "Release name"
            description: "Release description"
            version: "1.0.0"
            dueDate: 2024-03-30
            releasedDate: 2024-03-25
            status: RELEASED
            item: backlogid.epicid
            itens: backlogid.story1, backlogid.story2
        }
    }
}