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

@intentsolutionsio/attio-pack

v1.0.0

Published

Claude Code skill pack for Attio - 18 skills covering CRM, relationship intelligence, and deal management

Readme

Attio Skill Pack

18 production-grade Claude Code skills for the Attio CRM REST API — real endpoints, real data models, real error codes.

Build Attio integrations with https://api.attio.com/v2 using typed TypeScript patterns, from first API call through production deployment. Every skill uses actual Attio endpoints, the real object/record/list data model, real attribute types, and actual error response formats.

Installation

/plugin install attio-pack@claude-code-plugins-plus

Skills

Standard Skills (S01-S12)

| Skill | What it does | |-------|-------------| | attio-install-auth | Access tokens, OAuth 2.0, scope configuration, Bearer auth | | attio-hello-world | First API calls -- list objects, create person, query companies | | attio-local-dev-loop | Project structure, typed client, MSW mocks, integration tests | | attio-sdk-patterns | Typed client wrapper, retry, pagination iterator, multi-tenant factory | | attio-core-workflow-a | Full record CRUD -- create, read, update, delete, search, filter | | attio-core-workflow-b | Lists, entries, notes, tasks -- pipeline management and activity tracking | | attio-common-errors | Every HTTP error code with real response format, causes, and fixes | | attio-debug-bundle | Diagnostic script -- auth, scopes, schemas, rate limits, connectivity | | attio-rate-limits | Sliding window, Retry-After parsing, p-queue throttling, circuit breaker | | attio-security-basics | Token scoping, rotation, webhook signatures, secret scanning | | attio-prod-checklist | 9-phase launch checklist -- auth, errors, rate limits, monitoring, rollback | | attio-upgrade-migration | V1-to-V2 migration, endpoint mapping, community SDK upgrades |

Pro Skills (P13-P18)

| Skill | What it does | |-------|-------------| | attio-ci-integration | GitHub Actions with MSW mocks, gated live API tests, release workflow | | attio-deploy-integration | Vercel, Fly.io, Cloud Run deployment with secrets and webhook registration | | attio-webhooks-events | All event types, signature verification, filtered subscriptions, idempotency | | attio-performance-tuning | LRU caching, batch queries with $in, streaming pagination, keep-alive | | attio-cost-tuning | Usage auditing, polling-to-webhook migration, tiered caching, budget alerts | | attio-reference-architecture | Layered project structure, sync patterns, webhook router, multi-env config |

Attio API Quick Reference

| Resource | Endpoint | Method | |----------|----------|--------| | List objects | /v2/objects | GET | | Get object | /v2/objects/{slug} | GET | | List attributes | /v2/objects/{slug}/attributes | GET | | Query records | /v2/objects/{slug}/records/query | POST | | Create record | /v2/objects/{slug}/records | POST | | Get record | /v2/objects/{slug}/records/{id} | GET | | Update record | /v2/objects/{slug}/records/{id} | PATCH/PUT | | Delete record | /v2/objects/{slug}/records/{id} | DELETE | | Search records | /v2/records/search | POST | | Query list entries | /v2/lists/{slug}/entries/query | POST | | Create list entry | /v2/lists/{slug}/entries | POST | | Create note | /v2/notes | POST | | Create task | /v2/tasks | POST | | Manage webhooks | /v2/webhooks | GET/POST/PATCH/DELETE |

Usage

Skills trigger automatically when you discuss Attio topics:

  • "Set up Attio API auth" triggers attio-install-auth
  • "Create an Attio person record" triggers attio-core-workflow-a
  • "Add a record to a pipeline list" triggers attio-core-workflow-b
  • "Fix this Attio 429 error" triggers attio-rate-limits
  • "Deploy my Attio webhook handler" triggers attio-deploy-integration

License

MIT