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

@voidwire/flux

v1.2.0

Published

Task management CLI for Obsidian-based workflows

Downloads

519

Readme

@voidwire/flux

Simple task management CLI with markdown-backed storage.

Installation

pnpm install
pnpm build

Link globally:

pnpm link --global

Configuration

Create ~/.config/flux/config.toml:

[paths]
data_dir = "~/obsidian/flux"
projects_dir = "~/obsidian/projects"

[behavior]
archive_after_days = 7

Projects are auto-discovered from projects_dir. Any subdirectory is a valid project. Typos fail because the directory doesn't exist.

Commands

Add Task

flux add "task description"              # Add to later.md
flux add "task" -p myproject             # Add to project backlog
flux add "task" -t idea                  # Add as idea type
flux add "urgent task" --urgent          # Add to later.md AND active.md

Types: todo (default), idea, bug

Complete/Cancel

flux done <id-or-text>                   # Mark complete, move to daily
flux cancel <id-or-text>                 # Cancel, move to daily

Activate/Defer

flux activate <id-or-text>               # Move to active.md (Today)
flux activate <id-or-text> --week        # Move to active.md (This Week)
flux defer <id-or-text>                  # Return to backlog

List

flux list                                # All tasks
flux list -p myproject                   # Filter by project
flux list -t bug                         # Filter by type

Recurring

flux recurring --dry-run                 # Preview what would surface
flux recurring                           # Surface due recurring tasks

Recurring items support two modes:

Cadence-based (time since last done):

- [ ] Weigh-in id::rec001 last::2026-01-01

Date-anchored (approaching due date):

- [ ] Tax prep id::rec002 due::2026-04-15 lead::45

| Field | Description | Default | |-------|-------------|---------| | last:: | Last completion date (cadence-based) | — | | due:: | Next due date (date-anchored) | — | | lead:: | Days before due to surface | 7 |

On completion:

  • Cadence-based: last:: updates to today
  • Date-anchored: due:: advances by cadence (yearly → +1 year)

Maintenance

flux lint                                # Check for format issues
flux lint --fix                          # Auto-fix issues
flux archive --dry-run                   # Preview archival
flux archive                             # Archive old completed items

File Structure

data_dir/
  active.md      # Current work (Today, This Week)
  later.md       # Backlog (Ideas, Todos)
  recurring.md   # Recurring tasks by cadence
  daily/         # Daily logs (YYYY-MM-DD.md)
  archive/       # Monthly archives (YYYY-MM.md)

projects_dir/
  {project}/
    later.md     # Project backlog
    completed.md # Project changelog

Item Format

- [ ] description #tag id::abc123 captured:: 2026-01-07 08:00
- todo:: description id::abc123 captured:: 2026-01-07 08:00
- idea:: description id::abc123 captured:: 2026-01-07 08:00
- bug:: description id::abc123 captured:: 2026-01-07 08:00

Checkbox form for active tasks, type-prefix form for backlogs.

Output

All commands output JSON:

{
  "success": true,
  "id": "abc123",
  "destination": "/path/to/file.md",
  "item": { ... }
}

Errors exit non-zero with JSON error object.