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

@dougskinner/thangs

v1.0.2

Published

A CLI wrapper around Things 3, built in TypeScript

Readme

Thangs

A cli wrapper around Things 3, built in Typescript.

Installation

npm install -g things3-cli-wrapper

Usage

List Tasks

List all tasks in Things 3:

thangs list

You can also list tasks by the built in lists:

thangs list --list "Today"
thangs list --list "Upcoming"
thangs list --list "Anytime"
thangs list --list "Someday"

Finally, you can also filter tasks by project, area, or tag:

thangs list --project "Project Name"
thangs list --area "Area Name"
thangs list --tag "Tag Name"

Add Task

Add a new task to the Inbox:

thangs add "Task Name"

You can also specify additional options such as notes, due date, tags, project, and area:

thangs add "Task Name" --notes "These are the task notes" --due "2024-12-31" --tags "Tag1,Tag2" --project "Project Name" --area "Area Name"

Edit Tasks

Edit a task by its name. You can update the name, notes, due date, tags, project, and area:

thangs edit "Task Name" --name "New Task Name" --notes "Updated notes" --due "2025-01-15" --tags "NewTag1,NewTag2" --project "New Project Name" --area "New Area Name"

Complete Task

Complete a task by its name:

thangs complete "Task Name"

Cancel Task

Cancel a task by its name:

thangs cancel "Task Name"

Add Project

Add a new project:

thangs add-project "Project Name"

Add Area

Add a new area:

thangs add-area "Area Name"

Claude Code Integration

Thangs includes a Claude Skill that teaches Claude Code how to effectively use the Things3 CLI wrapper. A Claude Skill is a specialized instruction set that helps Claude understand your tools and workflows, enabling natural language task management through Claude.

What is a Claude Skill?

Claude Skills are markdown documents that teach Claude Code about specific tools, APIs, or workflows. When you install the Thangs skill, Claude learns:

  • All available CLI commands and their options
  • Things 3 core concepts (Areas, Projects, Tags, Lists)
  • Common task management workflows and patterns
  • Best practices for working with Things 3

Installation

Install the Claude Skill with a single command:

thangs install-skill

This copies the skill files to ~/.claude/skills/things3-cli-wrapper/, making them available to Claude Code.

Updating the Skill

To update the skill after upgrading Thangs (or if you made local modifications):

thangs install-skill --force

The --force flag overwrites the existing installation.

Verification

Verify the skill was installed correctly:

ls ~/.claude/skills/things3-cli-wrapper/

You should see:

  • SKILL.md - Main skill instruction file
  • reference.md - Complete command reference
  • examples.md - Usage examples and workflows
  • LICENSE.txt - MIT license
  • README.md - Developer documentation

Using with Claude

Once installed, you can interact with Claude Code using natural language for task management:

Examples:

"Show me all tasks due today in my Work project"
"Add a task 'Review PR #123' with tag 'code-review' to my Development project"
"Complete the task 'Finish documentation'"
"Create a new project called 'Q1 Planning' in my Work area"

Claude will understand your intent and execute the appropriate thangs commands using the installed skill's guidance.

What Claude Learns

The skill teaches Claude:

  • Commands: All 8 CLI commands (list, add, edit, complete, cancel, add-project, add-area, install-skill)
  • Filtering: How to use --list, --project, --area, and --tag filters
  • Task Properties: Working with notes, due dates, tags, projects, and areas
  • Workflows: Common patterns like daily task reviews, project planning, and task organization
  • Error Handling: How to handle ambiguous task names, missing entities, and validation errors

Developer Documentation

If you're interested in modifying or improving the skill, see the developer documentation:

cat ~/.claude/skills/things3-cli-wrapper/README.md

Or view it in the repository at skill/README.md.

Contributing

Contributions are welcome! Please open an issue or submit a pull request on GitHub.

Development

To build the project locally, clone the repository and run:

npm ci
npm run build

You can then link the package globally for testing:

npm link

Tools Used