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

cc-watch

v0.1.5

Published

Control Claude Code from your Apple Watch - approve actions, track progress, receive notifications

Readme

cc-watch

Control Claude Code from your Apple Watch. Approve code changes, track progress, and receive notifications—all from your wrist.

npm version License: MIT

Features

  • Approve/Reject Actions - Review and approve file edits, bash commands, and tool usage directly from your watch
  • Progress Tracking - See real-time task progress with visual indicators
  • Push Notifications - Get notified when Claude needs your attention
  • Voice Commands - Approve or reject with Siri
  • Watch Complications - Quick status glances from any watch face

Quick Start

npx cc-watch

This launches the interactive setup wizard. Enter the pairing code displayed on your Apple Watch to connect.

Installation

# Use directly with npx (recommended)
npx cc-watch

# Or install globally
npm install -g cc-watch

Requirements

  • Node.js 18+
  • Claude Code CLI
  • Apple Watch with watchOS 10+ running the Claude Watch app

Commands

| Command | Description | |---------|-------------| | npx cc-watch | Interactive setup wizard | | npx cc-watch status | Check connection status | | npx cc-watch serve | Start MCP server (used by Claude Code) | | npx cc-watch unpair | Remove configuration | | npx cc-watch help | Show help message |

How It Works

1. Pair Your Watch

Run npx cc-watch and enter the 6-digit code shown on your Apple Watch.

$ npx cc-watch

  Claude Watch Setup

  Enter the pairing code shown on your Apple Watch:
  > 123456

  ✓ Paired successfully!
  ✓ MCP configuration updated

2. Claude Code Integration

The setup wizard automatically adds cc-watch to your Claude Code MCP configuration at ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "claude-watch": {
      "command": "npx",
      "args": ["cc-watch", "serve"]
    }
  }
}

3. Use With Claude Code

When Claude performs actions that require approval, you'll receive a notification on your watch:

Claude wants to:
Edit src/index.ts
[Approve] [Reject]

Tap to approve or reject, or use voice commands: "Hey Siri, approve" or "Hey Siri, reject".

MCP Tools

When paired, Claude Code gains access to these tools:

watch_notify

Send a notification to your watch.

{
  title: string,   // Notification title
  message: string  // Notification body
}

watch_request_approval

Request approval for an action. Blocks until the user approves or rejects.

{
  action_type: "file_edit" | "file_create" | "file_delete" | "bash" | "tool_use",
  title: string,        // Short action title
  description: string,  // Detailed description
  file_path?: string,   // File path (if applicable)
  command?: string      // Command (if bash action)
}
// Returns: { approved: boolean, timestamp: string }

watch_update_progress

Update the progress indicator on the watch.

{
  progress: number,    // 0.0 to 1.0
  task_name?: string   // Optional task name
}

watch_set_task

Set the current task being worked on.

{
  name: string,         // Task name
  description?: string  // Task description
}

watch_complete_task

Mark the current task as complete.

{
  success?: boolean  // Default: true
}

watch_get_state

Get the current session state.

// Returns: { connected: boolean, task: string | null, progress: number }

Architecture

┌─────────────┐     WebSocket      ┌──────────────────┐
│ Apple Watch │◄──────────────────►│ Cloudflare Worker│
└─────────────┘                    └────────┬─────────┘
                                            │
                                            │ HTTP/SSE
                                            ▼
┌─────────────┐      MCP/stdio     ┌──────────────────┐
│ Claude Code │◄──────────────────►│   cc-watch CLI   │
└─────────────┘                    └──────────────────┘

The cc-watch CLI acts as an MCP server that Claude Code communicates with via stdio. It relays messages to your Apple Watch through a Cloudflare Worker that maintains WebSocket connections.

Troubleshooting

"Watch not connected"

  1. Ensure your Apple Watch has the Claude Watch app open
  2. Check that your watch has an internet connection
  3. Try re-pairing: npx cc-watch unpair && npx cc-watch

"MCP server not responding"

  1. Restart Claude Code
  2. Check the MCP configuration: cat ~/.claude/claude_desktop_config.json
  3. Verify the cc-watch entry exists in mcpServers

Check Status

npx cc-watch status

This shows your current pairing status and connection state.

Privacy

  • Pairing codes expire after 5 minutes
  • Session data is stored only on the Cloudflare Worker edge (KV storage)
  • No data is logged or stored permanently
  • All communication is encrypted (HTTPS/WSS)

Development

# Clone the repository
git clone https://github.com/fotescodev/claude-watch.git
cd claude-watch/claude-watch-npm

# Install dependencies
npm install

# Run in development mode
npm run dev

# Build
npm run build

License

MIT

Links