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

player2-kanban

v1.0.0

Published

Agent-native local project management with GitHub sync and MCP

Readme

Player2 Kanban

Player2 Kanban is an agent-native, local-first project management tool. It bridges the gap between fast "vibe coding" and professional team workflows by syncing local tasks directly with GitHub Issues.

This project is a fork of the excellent tcarac/taskboard, enhanced with deep AI agent integration, strict engineering standards enforcement, and bidirectional GitHub synchronization.

Screenshots

Kanban Board

Ticket Detail

Key Enhancements

  • Agent-Native Instructions — Built-in commands to install .cursorrules, .clauderules, and .gemini/GEMINI.md to align AI assistants with your workflow.
  • Hard-Enforced Standards — CI/CD gates for 75%+ test coverage, gosec security scans, and mandatory linear git history.
  • GitHub Sync Engine — Bidirectional sync between local SQLite and GitHub Issues. Metadata is stored in hidden HTML comments.
  • Strict Mode — Enforce professional standards. When enabled, tickets must have a User Story and Acceptance Criteria (Gherkin) before they can be created or updated.
  • Git Hooks — Automated sync on git push and git pull via installed pre-push and post-merge hooks.
  • Embedded Terminal — Run AI coding agents directly from the web UI.

Requirements

  • Go 1.24+ and Node.js 22+ (for building from source)
  • Git (for hook integration)
  • Works on Windows, macOS, and Linux

Installation

Via NPM

npm install -g player2-kanban

This downloads a pre-built binary for your platform from GitHub Releases.

From Source

git clone https://github.com/Tristan578/taskboard.git
cd taskboard
make build
# Binary is at ./player2-kanban (add to your PATH)

Manual Steps (if make is unavailable)

cd web && npm ci && npm run build && cd ..
mkdir -p cmd/kanban/web/dist && cp -r web/dist/* cmd/kanban/web/dist/
go build -o player2-kanban ./cmd/kanban

Setup & Usage

1. Start the Server

player2-kanban start
# => Player2 Kanban running at http://localhost:3010 (pid 12345)

To run in the foreground (useful for development):

player2-kanban start --foreground

2. Connect to GitHub

# Set your GitHub Personal Access Token
export GITHUB_TOKEN="ghp_your_token_here"

# Link a project to a repository
player2-kanban project link <project_id> owner/repo

# Sync issues
player2-kanban project sync <project_id>

# Check sync status
player2-kanban project sync-status

3. Install Auto-Sync Hooks

Keep your board updated automatically whenever you push or pull code.

player2-kanban hook install <project_id>

# To remove hooks later:
player2-kanban hook uninstall

4. Configure your AI Agent

player2-kanban agent-config install cursor  # or claude, gemini, windsurf, antigravity, copilot, codex

Strict Mode Enforcement

When a project is in Strict Mode, Player2 Kanban blocks any attempt (by human or agent) to create a non-draft ticket without:

  1. User Story: As a [role] I want [feature] So that [benefit]
  2. Acceptance Criteria: Gherkin format (Given [context] When [action] Then [result])

Create tickets with strict mode fields from the CLI:

player2-kanban ticket create \
  --project <id> \
  --title "Add SSO login" \
  --user-story "As a user I want to log in with SSO So that I don't need another password" \
  --acceptance-criteria "Given a valid SSO session When I visit /login Then I am authenticated" \
  --priority high

Or create as a draft first and fill in details later:

player2-kanban ticket create --project <id> --title "Investigate flaky test" --draft

CLI Reference

| Command | Description | |---------|-------------| | start [--port N] [--foreground] | Start the web UI server (default: port 3010) | | stop | Stop the running server | | mcp | Start the MCP server (stdin/stdout) | | project create <name> --prefix <PFX> | Create a project | | project list | List all projects | | project link <id> <owner/repo> | Link project to GitHub | | project sync <id> [--async] | Sync with GitHub | | project sync-status | Show sync queue status | | project delete <id> | Delete a project | | ticket create --project <id> --title "..." | Create a ticket | | ticket list [--project <id>] [--status todo\|in_progress\|done] [--priority urgent\|high\|medium\|low] | List tickets | | ticket move <id> --status <status> | Move ticket to status | | ticket delete <id> | Delete a ticket | | ticket subtask add <ticket_id> "title" | Add subtask | | ticket subtask toggle <id> | Toggle subtask completion | | team create <name> | Create a team | | team list | List teams | | hook install <project_id> | Install git sync hooks | | hook uninstall | Remove git sync hooks | | agent-config install <agent> | Install AI agent rules | | clear [--force] | Delete all data |

Configuration

| Environment Variable | Description | Default | |---------------------|-------------|---------| | GITHUB_TOKEN | GitHub Personal Access Token for sync | (none) | | LOG_LEVEL | Log verbosity: debug, info, warn, error | info |

Data is stored in your OS config directory (%APPDATA% on Windows, ~/.config on Linux/macOS) as a SQLite database.

Troubleshooting

"player2-kanban is not running" when stopping — The server isn't started, or the PID file is stale. Run player2-kanban start first.

"GITHUB_TOKEN environment variable not set" during sync — Export your token: export GITHUB_TOKEN="ghp_...". You need a GitHub PAT with repo scope.

Port already in use — Another instance may be running. Try player2-kanban stop first, or use --port to pick a different port: player2-kanban start --port 3011

Strict mode blocking ticket creation — Non-draft tickets require --user-story and --acceptance-criteria flags. Use --draft to skip validation temporarily.

Sync fails silently — Check the sync queue: player2-kanban project sync-status. Failed jobs show in the "Failed jobs" count. Check server logs for details (LOG_LEVEL=debug).

Database location — Default: ~/.config/player2-kanban/ (Linux/macOS) or %APPDATA%/player2-kanban/ (Windows). Override with --db /path/to/file.db.

Tech Stack

| Layer | Technology | | ------------ | --------------------------------------------------- | | Backend | Go (Cobra, Chi) | | Database | SQLite (Pure Go) | | Frontend | React, TypeScript, Tailwind CSS v4, dnd-kit | | Sync | GitHub GraphQL & REST APIs | | AI Integration| Model Context Protocol (MCP) | | Distribution | Single binary with embedded assets |

Acknowledgments

Based on Taskboard by tcarac.

License

MIT