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

taskup-cli

v2.1.10

Published

CLI para TaskUp MD — Automação via API Supabase

Downloads

1,287

Readme

🚀 TaskUp CLI & API Client

API client + CLI para TaskUp MD — Automação dinâmica via Supabase direto.

📦 Instalação

npm install @belmirongola/taskup-cli

🎯 Uso: CLI

1️⃣ Autenticação

# Login (interativo ou com credenciais)
taskup login
taskup login --email [email protected] --password xxx

# Ver utilizador
taskup whoami

# Logout
taskup logout

Credenciais são armazenadas em ~/.taskup-cli/config.json

2️⃣ Tarefas

# Listar tarefas
taskup tarefas list
taskup tarefas list --estado "Em Progresso" --limit 20
taskup tarefas list --prioridade "Alta" --format json

# Criar tarefa
taskup tarefas create --titulo "Novo bug" --prioridade "Alta" --prazo 2026-04-01

# Ver tarefa
taskup tarefas get <id>

# Actualizar tarefa
taskup tarefas update <id> --estado "Concluído"

# Deletar tarefa
taskup tarefas delete <id>

3️⃣ Projectos

# Listar projectos
taskup projectos list
taskup projectos list --estado "Activo"

# Criar projecto
taskup projectos create --nome "Novo Projecto" --estado "Activo"

# Ver projecto
taskup projectos get <id>

# Actualizar projecto
taskup projectos update <id> --estado "Concluído"

# Deletar projecto
taskup projectos delete <id>

💻 Uso: Como Biblioteca

import { TaskUpClient } from "@belmirongola/taskup-cli";

const client = new TaskUpClient();
await client.login("[email protected]", "password");

// Listar tarefas
const tarefas = await client.listTarefas({
  estado: "Em Progresso",
  prioridade: "Alta",
  limit: 20,
});

// Criar tarefa
const tarefa = await client.createTarefa({
  titulo: "Minha Tarefa",
  descricao: "Descrição",
  prioridade: "Média",
  prazo: "2026-04-01",
});

// Actualizar
await client.updateTarefa(tarefa.id, { estado: "Concluído" });

// Deletar
await client.deleteTarefa(tarefa.id);

// Projectos
const projectos = await client.listProjectos();
const projecto = await client.createProjecto({
  nome: "Novo Projecto",
  descricao: "Descrição",
});

// Reuniões
const reunioes = await client.listReunioes();

// Users
const users = await client.listUsers();

// Notificações
const notificacoes = await client.listNotificacoes();

⚙️ Configuração

Criar .env na raiz:

SUPABASE_URL=https://your-project.supabase.co
SUPABASE_ANON_KEY=your-anon-key

# Opcional: credenciais padrão
[email protected]
TASKUP_PASSWORD=password

📋 API Métodos

Tarefas

  • listTarefas(filters?) — Listar com filtros
  • getTarefa(id) — Obter uma tarefa
  • createTarefa(data) — Criar nova
  • updateTarefa(id, updates) — Actualizar
  • deleteTarefa(id) — Deletar

Projectos

  • listProjectos(filters?) — Listar
  • getProjecto(id) — Obter um
  • createProjecto(data) — Criar novo
  • updateProjecto(id, updates) — Actualizar
  • deleteProjecto(id) — Deletar

Reuniões

  • listReunioes(filters?) — Listar
  • getReuniao(id) — Obter uma
  • createReuniao(data) — Criar nova
  • updateReuniao(id, updates) — Actualizar
  • deleteReuniao(id) — Deletar

Users

  • listUsers(filters?) — Listar utilizadores
  • getUserProfile(userId) — Obter perfil
  • updateUser(userId, updates) — Actualizar

Notificações

  • listNotificacoes(filters?) — Listar
  • markNotificacaoRead(id) — Marcar como lida
  • markAllNotificacoesRead() — Marcar todas

🔐 Privacidade (GitHub Packages)

Para publicar privadamente no GitHub:

  1. Editar ~/.npmrc:

    @belmirongola:registry=https://npm.pkg.github.com
    //npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN
  2. GitHub token com permissão write:packages e read:packages

  3. Publicar:

    npm publish

📝 Desenvolvimento

# Build
npm run build

# Dev mode
npm run dev

# Compilação TypeScript
npm run build

📄 Tipos

Tipos completos exportados:

import type {
  Credentials,
  Priority,
  TaskStatus,
  ProjectStatus,
  CreateTaskInput,
  TaskInfo,
  ProjectInfo,
  DashboardStats,
} from "@belmirongola/taskup-cli";

Developed by @belmirongola — TaskUp MD Automation CLI