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

create-agent-starter

v3.0.3

Published

Opinionated multi-agent skill pack for Claude Code, Codex, and Cursor: deep skills for HCI usability modeling, Apple HIG Doctor guidance and audits, copywriting frameworks, cleanup workflows, plus a TOON command wrapper for input-token savings.

Readme

agent-starter

An opinionated multi-agent skill pack for Claude Code, Codex, and Cursor. Deep, handwritten skills for HCI usability modeling, Apple HIG Doctor guidance, copywriting, code cleanup, and TOON token savings.

No orchestration framework. No aspirational YAML. Just agent-native project files generated from one shared skill source.

npm version License: MIT

What you get

28 shipped skills:

| Skill | Covers | |---|---| | human-processor-model | Estimates task time, cognitive load, memory burden, and perceptual/motor bottlenecks in product flows. | | goms-klm-analysis | Decomposes workflows into GOMS/KLM goals, operators, methods, selection rules, waits, and interaction-cost comparisons. | | hig-doctor-audit | Runs the HIG Doctor verification loop with npx hig-doctor, severity gates, exported reports, and category-to-skill routing. | | hig-project-context | Creates shared Apple design context so HIG skills tailor guidance without repetitive questions. | | hig-foundations | Apple HIG foundations: color, typography, SF Symbols, dark mode, accessibility, layout, materials, motion, privacy, writing. | | hig-platforms | Platform-specific HIG guidance for iOS, iPadOS, macOS, tvOS, visionOS, watchOS, and games. | | hig-patterns | Apple UX patterns for onboarding, launch, loading, permissions, feedback, undo, settings, sharing, and collaboration. | | hig-inputs | Apple input guidance for gestures, keyboards, pointers, Apple Pencil, Digital Crown, focus, remotes, and spatial input. | | hig-technologies | Apple technology guidance for Siri, Apple Pay, HealthKit, ARKit, iCloud, Sign in with Apple, SharePlay, Wallet, and more. | | hig-components-content | HIG content display components: charts, collections, image views, web views, color wells, lockups, share sheets. | | hig-components-layout | HIG layout and organization: sidebars, split views, tab bars, scroll views, windows, panels, lists, and tables. | | hig-components-menus | HIG menus and actions: buttons, context menus, toolbars, menu bar, pop-up buttons, and disclosure controls. | | hig-components-search | HIG search and navigation components: search fields, page controls, and path controls. | | hig-components-dialogs | HIG dialogs and overlays: alerts, action sheets, popovers, sheets, and digit entry views. | | hig-components-controls | HIG controls: pickers, toggles, sliders, steppers, segmented controls, text fields, labels, and validation. | | hig-components-status | HIG status and progress UI: progress indicators, status bars, loading states, and activity rings. | | hig-components-system | HIG system experiences: widgets, Live Activities, notifications, complications, App Clips, shortcuts, and watch faces. | | copywriting-frameworks | Headlines, landing pages, ads, emails, CTAs, AIDA, objections, proof placeholders, critiques. | | toon-formatter | When TOON helps, when it does not, and how to invoke the TOON commands. | | cleanup-all | Orchestrates the full cleanup pipeline. | | cleanup-unused | Detects and removes high-confidence dead code, exports, files, and dependencies. | | cleanup-cycles | Detects and untangles circular dependencies. | | cleanup-dedupe | Extracts high-confidence duplicate code into shared utilities. | | cleanup-types | Consolidates duplicated or fragmented type definitions. | | cleanup-weak-types | Replaces weak types with stronger inferred or validated types. | | cleanup-defensive | Removes pointless try/catch blocks and guards that hide errors. | | cleanup-legacy | Removes zero-caller deprecated, legacy, and fallback paths. | | cleanup-slop | Removes unhelpful narration comments while preserving useful WHY comments. |

Agent Targets

| Agent | Generated output | Notes | |---|---|---| | Claude Code | .claude/ | Native Claude skills, settings, TOON slash commands, optional hooks. | | Codex | AGENTS.md + .codex/skills/*/SKILL.md | Root Codex guidance points to project-local skill files. | | Cursor | .cursor/rules/*.mdc | Cursor project rules generated as Agent Requested rules, plus an always-applied skill-selection rule. |

Claude remains the default for backwards compatibility. Use --agent all to install all supported targets.

Install

# Claude Code only (default)
npx create-agent-starter@latest

# Codex only
npx create-agent-starter@latest --agent codex

# Cursor only
npx create-agent-starter@latest --agent cursor

# Claude Code + Codex + Cursor
npx create-agent-starter@latest --agent all

# Backwards-compatible aliases still work
npx [email protected] --agent all

For Claude TOON commands, add the runtime deps to your project:

npm i @toon-format/toon gpt-tokenizer

Profiles

npx create-agent-starter@latest --profile all --agent all
npx create-agent-starter@latest --profile apple-hig --agent codex,cursor
npx create-agent-starter@latest --profile design-hci --agent codex
npx create-agent-starter@latest --skills copywriting-frameworks,cleanup-unused --agent cursor

Profiles select a skill set. Agent targets decide where that skill set is installed.

Structure

.claude/
  skills/<skill>/skill.md
  commands/
  utils/toon/cli.mjs

.codex/
  skills/<skill>/SKILL.md
AGENTS.md

.cursor/
  rules/agent-starter.mdc
  rules/<skill>.mdc
  rules/<skill>/references/

The package keeps one shared source of truth in templates/.claude/skills/ and generates Codex/Cursor formats from that source during install.

The Apple HIG skills are vendored from HIG Doctor, including the progressive-disclosure references/ corpus with canonical Apple source links and attribution. The hig-doctor-audit skill points agents at HIG Doctor's published audit CLI and verification workflow.

Documentation Pulls

The docs command is Claude-specific because external docs are stored under .claude/skills/*/docs. It only pulls for installed skills that define a docs.url in their skill.json.

npx create-agent-starter@latest docs pull <skill-id>
npx create-agent-starter@latest docs status

Benchmarks

Real measured token counts for representative workloads are in bench/. Numbers use gpt-tokenizer, not a claimed heuristic.

Requirements

  • Node.js >= 18
  • Claude Code, Codex, or Cursor, depending on the selected target
  • Optional: @toon-format/toon and gpt-tokenizer for Claude TOON slash commands

License

MIT. Not affiliated with Anthropic, Apple, OpenAI, Cursor, or @toon-format/toon.