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

@getdonetoday/gdt

v0.2.0-beta.2

Published

GDT - Get Done Today - LLM-Native time management agent

Downloads

1,371

Readme

GDT - Get Done Today

Get things done through conversation.

GDT is an LLM-Native time management agent that helps you manage tasks through natural conversation. No syntax to learn, no complex interfaces - just tell GDT what you want to do.

Features

  • Conversational Interface - Describe tasks naturally, GDT understands your intent
  • Smart Task Decomposition - Break down complex tasks into actionable steps with time estimates
  • Built-in GTD Workflow - Capture, clarify, organize, reflect, engage - naturally practiced
  • Personalized Learning - GDT learns your preferences and adapts over time
  • Local Data Storage - Tasks stored via TaskWarrior, conversation history stays on your machine
  • Privacy First - Disable or clear history anytime with /privacy commands

Personalized Learning

GDT automatically learns from your actions to provide a more personalized experience:

| What GDT Learns | How It Learns | How It Helps | |-----------------|---------------|--------------| | Time Estimation | Tracks estimated vs actual task completion time | Adjusts future time estimates based on your patterns | | Task Granularity | Detects feedback like "too detailed" or "too coarse" | Adapts task decomposition to your preferred level | | Frequent Projects | Observes which projects you use most | Suggests relevant projects when creating tasks | | Common Tags | Tracks tags you frequently apply | Auto-suggests tags based on your habits |

All learning happens locally and improves GDT's suggestions without sending data externally.

Quick Start

Prerequisites

| Requirement | Description | |-------------|-------------| | Node.js 18+ | nodejs.org | | TaskWarrior 3.0+ | Task storage backend | | Anthropic API Key | console.anthropic.com |

Install TaskWarrior

# macOS
brew install task

# Ubuntu/Debian
sudo apt install taskwarrior

# Arch Linux
sudo pacman -S task

Install GDT

npm install -g @getdonetoday/gdt

Configure API Key

export ANTHROPIC_API_KEY=sk-ant-your-key-here

Launch

getdone

Usage

Interactive Mode

getdone

Then just talk to GDT:

You: Help me prepare for tomorrow's meeting

GDT: I'll help you prepare. A few questions:
     - What's the meeting about?
     - How long is it?

You: Product review, 1 hour

GDT: Here's a preparation plan:

     1. Review agenda (15 min)
     2. Prepare status updates (30 min)
     3. Anticipate questions (15 min)

     Should I add these as tasks?

Direct Prompt Mode

# Add a task
getdone -p "Add task: finish report by Friday"

# View today's tasks
getdone -p "What do I need to do today"

# Break down a task
getdone -p "Help me break down 'learn Rust programming'"

Commands

| Command | Description | |---------|-------------| | /help | Show help | | /new | Start new session | | /privacy | Manage privacy settings | | Ctrl+C | Exit |

Documentation

Full documentation available at getdone.today

Development

This project uses Bun as the package manager.

# Install dependencies
bun install

# Development mode
bun run dev

# Build
bun run build

# Run tests
bun test

# Type check
bun run typecheck

Architecture

GDT is built with an LLM-Native architecture - all intelligence comes from LLM reasoning (Claude API), not traditional AI algorithms. This enables:

  • Conversation-driven personalization
  • Prompt engineering-based decision making
  • Natural language understanding without NLP pipelines

Data Storage

| Directory | Contents | |-----------|----------| | ~/.task/ | TaskWarrior task data | | ~/.gdt/ | GDT config and conversation history |

License

MIT