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

@teeckin/agent

v1.9.1

Published

One-command setup for TeeckIn time tracking in AI coding agents (Claude Code, Codex, etc.)

Readme

@teeckin/agent

One-command setup for TeeckIn time tracking in AI coding agents.

Supports Claude Code and OpenAI Codex.

Quick Start

# Run in your project directory
npx @teeckin/agent init

The CLI auto-detects your agent type. You can also specify explicitly:

npx @teeckin/agent init --claude   # Claude Code
npx @teeckin/agent init --codex    # OpenAI Codex

Authentication

Claude Code (Browser-based)

Claude Code uses OAuth PKCE flow - no credentials needed in config files. When you start a Claude Code session:

  1. Claude connects to TeeckIn MCP server
  2. Your browser opens to TeeckIn for authorization
  3. You select or create an agent to use
  4. Authorization completes automatically

Codex (OAuth Credentials)

Codex requires OAuth credentials from TeeckIn Settings > Agents:

  1. Create an agent at teeckin.com/app/agents
  2. Copy the Client ID and Client Secret
  3. Run npx @teeckin/agent init --codex and enter the credentials

Or set environment variables:

export TEECKIN_CLIENT_ID=teeckin_agent_...
export TEECKIN_CLIENT_SECRET=tcs_...
npx @teeckin/agent init --codex

What It Does

For Claude Code

Creates:

  • .mcp.json - MCP server configuration (PKCE auth via browser)
  • .claude/settings.json - SessionEnd hook to auto-stop timer
  • CLAUDE.md - Instructions for Claude to prompt for topics

For Codex

Creates:

  • ~/.codex/config.toml - MCP server configuration with OAuth credentials
  • .codex/hooks.json - Session hooks
  • AGENTS.md - Instructions for Codex to prompt for topics

Commands

Config commands (manage MCP setup):

npx @teeckin/agent init              # Initial setup (prompts for token)
npx @teeckin/agent update            # Update MCP config with latest features
npx @teeckin/agent help              # Show help

Timer commands (interact with API):

npx @teeckin/agent exec:status           # Check if timer is running
npx @teeckin/agent exec:update "notes"   # Update notes on active timer
npx @teeckin/agent exec:stop             # Stop the active timer

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | TEECKIN_CLIENT_ID | Codex only | OAuth Client ID (from Settings > Agents) | | TEECKIN_CLIENT_SECRET | Codex only | OAuth Client Secret | | TEECKIN_API_URL | No | Custom API URL (for self-hosted) |

How It Works

  1. Session starts - Agent asks what topic you're working on
  2. You pick a topic - Timer starts automatically
  3. You work - Time is tracked in the background
  4. Session ends - Timer stops automatically (via hooks)

Switch topics mid-session by telling your agent.

Requirements

  • Node.js 18+
  • Pro subscription (personal agents) or Team plan (organization agents)

Links

License

MIT