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

@fayz-ai/plugin-tasks

v0.1.3

Published

Fayz SDK — plugin-tasks plugin

Downloads

368

Readme

@fayz-ai/plugin-tasks

A task list that lives in your topbar, in every app you compose.

npm license

Work happens between the records. A salon owner needs to "call the supplier," a clinic admin needs to "follow up on lab results" — small things that never fit neatly into a booking or an invoice. plugin-tasks gives every Fayz app a lightweight, always-available task list: a topbar button that opens a drawer for quick-add, statuses, priorities, due dates, labels, and assignees.

It's deliberately small and zero-config. Drop it in and it owns its own tables (via a bundled migration), picks Supabase or an in-memory mock automatically, and exposes its summary to the AI assistant — so "what's overdue?" just works. No page to wire, no nav slot to claim; tasks ride along with whatever vertical you compose.

What's inside

  • Topbar task drawer — a widget mounted at shell.topbar.end for quick-add and review, available on every page.
  • Task model — title, description, status (todo / in progress / done / cancelled), priority (low / medium / high / urgent), due date, labels, assignee, and subtasks (parent/child).
  • AI toolgetTasksSummary reports totals, overdue, due-today, and breakdowns by status and priority.
  • Bundled migration — creates tsk_tasks and tsk_labels with tenant-scoped RLS, so it's self-installing.
  • Settings tab + i18n, with a Supabase-or-mock data provider chosen automatically.
  • Configurable labels and a default priority for new tasks.

Install

npm install @fayz-ai/plugin-tasks

Peer deps: react, react-dom. Runtime deps include @fayz-ai/core, @fayz-ai/ui, and @fayz-ai/saas.

Usage

import { defineSaas } from '@fayz-ai/saas'
import { createTasksPlugin } from '@fayz-ai/plugin-tasks'

export const app = defineSaas({
  // ...
  plugins: [
    createTasksPlugin({
      defaultPriority: 'medium',
      labels: { drawerTitle: 'To-dos', quickAddPlaceholder: 'Add a to-do...' },
    }),
  ],
})

Part of the Fayz SDK

plugin-tasks is the lightweight companion plugin: no navigation of its own, it simply adds a task surface to any app built with @fayz-ai/saas. It complements heavier plugins like @fayz-ai/plugin-agenda and @fayz-ai/plugin-financial by capturing the loose work around them.

Roadmap & contributing

Built and evolving in the open. See the Fayz SDK roadmap for current gaps, missing features, and good first issues.