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

@hirokidaichi/noti

v0.2.0

Published

Notion CLI - A command-line interface for Notion

Downloads

235

Readme


Why noti?

noti bridges the gap between Notion and AI agents like Claude Code. Instead of manually copy-pasting content, let your AI assistant directly read, create, and manage your Notion workspace.

  • AI-Native Design — Built as a Claude Code Agent Skill for seamless AI integration
  • Full Notion API Coverage — Pages, databases, blocks, comments, and search
  • Non-Interactive — All commands work without prompts, perfect for automation
  • Markdown-First — Read and write content in familiar Markdown format

Quick Start

1. Install

npm install -g @hirokidaichi/noti

Or build from source:

git clone https://github.com/hirokidaichi/noti.git
cd noti
npm install && npm run build && npm link

2. Configure

Get your Integration Token from Notion Integrations, then:

noti configure --token <your_token>

3. Install Agent Skills (for Claude Code)

# Install to your home directory (available globally)
noti setup-skills --user

# Or install to current project only
noti setup-skills --project

That's it! Claude Code will now have access to all noti commands.

Agent Skills

noti is designed to work as a Claude Code Agent Skill. Once installed, Claude can:

Read & Understand Your Notion

"Read the meeting notes from last week"
"What tasks are marked as high priority in my project database?"
"Show me the latest entries in my journal"

Create & Update Content

"Create a new page summarizing our discussion"
"Add a task to the project database with priority high"
"Append today's notes to my daily log"

Search & Query

"Find all pages mentioning 'quarterly review'"
"List incomplete tasks sorted by due date"
"Export the customer database as CSV"

Manage Your Workspace

"Set up an alias 'tasks' for my task database"
"Archive completed items from last month"
"Import this CSV data into the contacts database"

CLI Usage

All commands work in your terminal too:

Pages

noti page get <id>                    # Get page as Markdown
noti page create <parent> file.md     # Create from Markdown
noti page update <id> file.md -f      # Update content
noti page append <id> file.md         # Append content
noti page remove <id> -f              # Delete page

Databases

noti database list                    # List all databases
noti database query <id>              # Query database
noti database query <id> -f "Status=Done" -s "Name:asc"
noti database export <id> -f csv -o data.csv
noti database import -f data.csv -d <id>

Search

noti search "keyword"                 # Search workspace
noti search "keyword" --json          # JSON output

Aliases

noti alias add tasks <database_id>    # Create shortcut
noti open tasks                       # Open in browser

Command Reference

| Command | Description | |---------|-------------| | configure | Set up Notion API token | | page | Page operations (get/create/update/append/remove) | | database | Database operations (list/query/export/import/create) | | search | Search pages and databases | | block | Block operations (get/list/delete) | | alias | Manage shortcuts to pages/databases | | user | User information | | open | Open page in browser | | setup-skills | Install Agent Skills for Claude Code |

Examples

Daily Standup Automation

# Claude can create your standup notes
"Create a standup note for today with sections for Yesterday, Today, and Blockers"

Database Backup

# Export your important data
noti database export <id> -f csv -o backup_$(date +%Y%m%d).csv

Bulk Import

# Import data with validation
noti database import -f contacts.csv -d <id> --dry-run  # Validate first
noti database import -f contacts.csv -d <id>            # Execute

Meeting Notes Workflow

# Claude can help manage meeting notes
"Find the meeting notes from the product sync and summarize the action items"
"Create a follow-up page with the decisions we discussed"

Configuration

Config files are stored in ~/.config/noti/:

  • config.json — API token and settings
  • aliases.json — Page/database aliases

Requirements

  • Node.js 18+
  • Notion Integration Token
  • Claude Code (for Agent Skills)

License

MIT

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request