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

@ladbabynpm/picc-working-spinner

v0.1.3

Published

Claude Code style spinner ·✢✶✻✽ for pi. Fork of pi-claude-shimmer, better aligned with the actual Claude Code implementation.

Downloads

494

Readme

picc-working-spinner

npm downloads

Claude Code style spinner · ✢ ✳ ✶ ✻ ✽ for pi: spinner glyph, shimmer sweep, mode-aware status line, stall detection, thinking glow, smooth token counter. Part of picc, a pi agent setup mirroring Claude Code's harness.

Fork of npm:pi-claude-shimmer, better aligned with the actual Claude Code spinner implementation.

Usage

Install via pi install npm:@ladbabynpm/picc-working-spinner.

Changes vs. upstream

  • agent_end previously reported the final turn's duration instead of total run time. Date.now() - (agentStart || turnStart) is now used in the completion message, matching the live status calculation.
  • Re-derived each animation parameter from the actual claude-code source.

| Area | Before | After | | --- | --- | --- | | Spinner glyphs | macOS-only: · ✢ ✳ ✶ ✻ ✽ | Platform-aware: macOS / Linux / Windows / Ghostty variants (verbatim from components/Spinner/utils.ts) | | Verb list | 40 verbs (curated) | 186 verbs (verbatim from constants/spinnerVerbs.ts) | | Stall ramp | Frame-based: 30 frames at 200ms = 6s | Time-based: 3s start + 2s ramp to full red, 50ms tick with += diff * 0.1 smoothing (matches useStalledAnimation.ts) | | Thinking display | Cleared after 3.5s | 2s minimum "thinking", then 2s of "thought for Ns" (matches SpinnerWithVerb.tsx useEffect) | | Spinner continuity | Mode change reset the spinner glyph to frame 0 | setGlyphs() no longer called on mode change — frame continues | | Live verb text | No trailing ellipsis | Verb… (matches effectiveVerb + '…') | | Status parts order | [thinking, tokens, timer] (reversed) | [timer, tokens, thinking] matching SpinnerAnimationRow.tsx render order | | Stall color | Linear interpolation over 6s | > 0.5 threshold: jump to ERROR_RED once intensity passes midpoint (matches SpinnerGlyph.tsx) |

Behaviors

  • Verb: picked once per turn from 186 whimsical options. Stays fixed throughout the turn.
  • Glyph: · ✢ ✶ ✻ ✽ ✻ ✶ ✢ · (Linux/Windows) or · ✢ ✳ ✶ ✻ ✽ ✻ ✶ ✳ ✢ · (macOS) at 120ms per frame.
  • Live message: ${Verb}… (1m 23s · ↓ 42 tokens · thinking) — verb text with shimmer sweep, status parts inside parens.
  • Mode-driven colors:
    • requesting — shimmer sweeps left-to-right (50ms tick), arrow
    • thinking — "thinking" with sine-wave glow after 3s
    • responding — shimmer sweeps right-to-left (200ms tick), arrow
    • tool-input / tool-use — flash oscillates entire verb between base and shimmer
  • Stall: if no tokens for 3s and no tools active, verb blends from orange to rgb(171,43,63) over the next 2s. Resets instantly on token arrival.
  • Completion: ✻ ${past-tense verb} for ${duration} via notification, randomly picked from ["Baked","Brewed","Churned","Cogitated","Cooked","Crunched","Sautéed","Worked"].