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

@fledge/cli

v0.12.1

Published

CLI tooling for the [Fledge](https://github.com/fledge-build/fledge-build) development workflow. Provides the `fledge` binary for managing skill packages and feature briefs.

Readme

@fledge/cli

CLI tooling for the Fledge development workflow. Provides the fledge binary for managing skill packages and feature briefs.

Install

Skill packages bundle @fledge/cli into self-contained scripts at build time, so direct installation is optional. To install explicitly (for CLI access or local development):

pnpm add -D @fledge/cli

Commands

fledge skills install [source]

Installs skills from a package into the project's skills directory. Supports two layouts:

  • Single skill: a skill/ directory in the package. Installed as <prefix> (e.g. @fledge/vue becomes fledge-vue).
  • Multiple skills: a skills/ directory with subdirectories. Each subdirectory is installed as <scope>-<name> (e.g. @fledge/workflow/skills/brief becomes fledge-brief).

The skill name in SKILL.md frontmatter is updated to match the installed directory name. A .gitignore is written so the installed files are not committed.

Typically called from a skill package's postinstall script:

{
  "dependencies": {
    "@fledge/cli": "..."
  },
  "scripts": {
    "postinstall": "fledge skills install"
  }
}

| Option | Description | | ---------- | ---------------------------------------------------- | | --target | Target directory to install into (defaults to project root) | | --global | Install to the home directory instead of the project |

fledge skills list

Lists all installed skills with their name, type, and description. Reads SKILL.md frontmatter from each installed skill directory.

fledge skills list
fledge skills list --type technology

Example output:

fledge-vue             technology  Vue conventions
fledge-brief  workflow    Brief lifecycle

| Option | Description | | ---------- | ---------------------------------------------------- | | --type | Filter by skill type from SKILL.md metadata (e.g. "technology", "workflow") | | --global | List globally installed skills instead of project-local |

fledge brief create <name>

Creates a new brief directory at .fledge/briefs/<name>/ with stub files for brief.md and tasks.md. The brief starts in draft status.

fledge brief create recipe-versioning

fledge brief start <name>

Transitions a brief from draft to active. Validates that the brief has at least one task defined in tasks.md before allowing the transition.

fledge brief start recipe-versioning

fledge brief complete <name>

Transitions a brief from active to completed. Validates that all tasks are marked as done and that a summary is present in the brief frontmatter before allowing the transition. The summary serves as a compact record of what was built and why, used as context when creating future briefs.

fledge brief complete recipe-versioning

fledge brief status <name>

Shows the current status of a brief, including task progress grouped by group.

fledge brief status recipe-versioning

Example output:

recipe-versioning [active] 1/4 tasks done

backend
  [x] Add version column to recipes table
  [ ] Create migration script
frontend
  [ ] Create version history composable
  [ ] Add version badge to recipe card

fledge brief list

Lists all briefs with their status, task progress, and summary (if present). Sorted by last updated date. Completed briefs include their summary, giving agents context from previous work when creating new briefs.

fledge brief list
fledge brief list --status completed

Example output:

recipe-sharing     draft      0/2 tasks
recipe-versioning  active     1/4 tasks
meal-planning      completed  6/6 tasks  Added meal planning with weekly calendar view

| Option | Description | | ---------- | ---------------------------------------------------- | | --status | Filter by brief status (draft, active, completed) |

fledge brief validate <name>

Runs schema validation on a brief's brief.md and tasks.md frontmatter without changing state. Reports all validation errors.

fledge brief validate recipe-versioning

fledge brief schema

Outputs the JSON Schema for brief.md and tasks.md frontmatter. Useful for agents that need to understand the expected file format.

fledge brief schema

Brief lifecycle

Briefs follow a linear state machine. The CLI enforces valid transitions and runs validation checks at each transition.

draft  -->  active  -->  completed

| Transition | Command | Validation | | ----------------------- | ----------------------- | --------------------------------------------- | | (new) to draft | fledge brief create | Name must not already exist | | draft to active | fledge brief start | At least one task must be defined | | active to completed | fledge brief complete | All tasks must be done, summary must be present |

Brief file format

Briefs live in .fledge/briefs/<name>/ and consist of two files:

brief.md

---
name: recipe-versioning
status: draft
created: 2026-03-26
updated: 2026-03-27
summary: Added append-only versioning to recipes with full history UI
---

Requirements, design decisions, and context go here as freeform markdown.

| Field | Type | Required | Description | | --------- | ------ | --------------------- | ------------------------------------------------- | | name | string | yes | The brief name (matches directory name) | | status | string | yes | One of draft, active, completed | | created | date | yes | Creation date (YYYY-MM-DD) | | updated | date | no | Last update date (YYYY-MM-DD) | | summary | string | required for complete | Short summary of what was built, used as context for future briefs |

tasks.md

---
tasks:
  - name: Add version column to recipes table
    group: backend
    done: false
  - name: Create version history composable
    group: frontend
    done: true
---

Optional notes and implementation details go here as freeform markdown.

| Field | Type | Required | Description | | ------- | ------- | -------- | -------------------------------- | | name | string | yes | The task name | | group | string | no | Grouping label (e.g. "backend") | | done | boolean | yes | Whether the task is complete |