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

agent-worklog

v0.4.0

Published

A CLI tool for AI agents to track their work activities, with a web interface for browsing and AI-powered summaries.

Downloads

8

Readme

Agent Worklog

A CLI tool for AI agents to track their work activities, with a web interface for browsing and AI-powered summaries.

Features

  • AI Summaries: Generate summaries of completed work with aw summary
  • Web Interface: Browse logs visually with filters and summaries via aw web
  • Claude Code Integration: Skills and instructions for seamless agent integration
  • Automatic Metadata: Captures project name, git branch, working directory

Web Interface

Installation

npm install -g agent-worklog

Setup

Run the install command to set up Claude Code integration:

aw install --global

This configures your ~/.claude/ directory with:

  • Skills: A skills/worklog/SKILL.md file that guides agents on when and how to log work
  • Instructions: Adds a section to CLAUDE.md with concise logging guidelines
  • Permissions: Grants automatic permission for the aw command in settings.json
  • Hooks: Adds a UserPromptSubmit hook that reminds agents to log completed work

For project-specific installation (adds to ./.claude/ instead):

aw install

Commands

aw install

Install Claude Code integration:

aw install --global     # Install to ~/.claude/ (recommended)
aw install              # Install to ./.claude/ (project-specific)

Options:

  • -g, --global — Install globally to ~/.claude/ instead of local ./.claude/

aw uninstall

Remove Claude Code integration:

aw uninstall --global   # Remove from ~/.claude/
aw uninstall            # Remove from ./.claude/

Options:

  • -g, --global — Uninstall globally from ~/.claude/ instead of local ./.claude/

aw summary

Generate an AI summary of work entries:

aw summary                          # Last 7 days
aw summary -d 30                    # Last 30 days
aw summary --project my-app         # Filter by project
aw summary -c feature -d 14         # Features from last 2 weeks
aw summary --json                   # Machine-readable output

Options:

  • -d, --days <number> — Days to look back (default: 7)
  • -c, --category <category> — Filter by category
  • -p, --project <project> — Filter by project name
  • --json — Output raw JSON

aw web

Start the web interface to browse your worklog with filters and AI summaries:

aw web                  # Start server and open web UI
aw web -p 8080          # Custom port
aw web --no-browser     # Don't open browser automatically

Options:

  • -p, --port <number> — Port for local API server (default: 24377)
  • --host <url> — Custom webapp URL for local development
  • --no-browser — Don't open browser automatically

aw task

Log a completed task. This command is primarily used by AI agents during their work sessions:

aw task "Implemented JWT authentication" --category feature
aw task "Fixed race condition in db pooling" -c bugfix
aw task "Analyzed auth patterns and recommended OAuth2 approach" -c research

Options:

  • -c, --category <category> — Category: feature, bugfix, refactor, docs, config, test, perf, infra, security, research

Categories: | Category | Use for | |----------|---------| | feature | New functionality or capabilities | | bugfix | Fixed defects or issues | | refactor | Code restructuring without behavior change | | docs | Documentation updates | | config | Build, deployment, or infrastructure setup | | test | Test additions or improvements | | perf | Performance optimizations | | infra | Infrastructure or tooling changes | | security | Security improvements or fixes | | research | Investigation findings, technical analysis, exploration conclusions |