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/glean-pack

v1.0.3

Published

Claude Code skill pack for Glean - 24 skills covering enterprise search, knowledge management, and AI assistant

Readme

Glean Skill Pack

24 production-ready Claude Code skills for Glean enterprise search -- real Indexing API and Client API code with actual endpoints.

What This Is

A complete skill pack for building, deploying, and operating Glean enterprise search integrations. Every skill contains real Glean REST API code: custom datasource creation, document indexing (individual and bulk), search queries, AI chat, and permission management. Uses the actual Glean Indexing API (/index/v1/) and Client API (/client/v1/) endpoints.

Installation

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

Skills

Standard Skills (S01-S12)

| # | Skill | What It Does | |---|-------|-------------| | S01 | glean-install-auth | Configure indexing and client API tokens, verify both APIs | | S02 | glean-hello-world | Create datasource, index documents, search them back | | S03 | glean-local-dev-loop | Mock search responses, test connector transforms, Vitest | | S04 | glean-sdk-patterns | Typed GleanClient class, bulk indexing, search with filters | | S05 | glean-core-workflow-a | Search with filters/facets, AI chat, autocomplete | | S06 | glean-core-workflow-b | Bulk indexing, custom connectors, permissions, document deletion | | S07 | glean-common-errors | Fix 401/403, empty results, bulk upload errors, permissions | | S08 | glean-debug-bundle | Collect datasource config, search test, indexing status | | S09 | glean-rate-limits | Batch sizing, backoff strategies, indexing throughput | | S10 | glean-security-basics | Token scoping, document permissions, SSO integration | | S11 | glean-prod-checklist | Datasource verification, search quality, connector scheduling | | S12 | glean-upgrade-migration | API version migration, SDK updates, schema changes |

Pro Skills (P13-P18)

| # | Skill | What It Does | |---|-------|-------------| | P13 | glean-ci-integration | Automated connector testing, search quality validation | | P14 | glean-deploy-integration | Deploy connectors to Cloud Run, Lambda, Fly.io | | P15 | glean-webhooks-events | Event-driven indexing from source system webhooks | | P16 | glean-performance-tuning | Search relevance tuning, indexing throughput optimization | | P17 | glean-cost-tuning | Efficient indexing, datasource management, content pruning | | P18 | glean-reference-architecture | Enterprise search architecture with custom connectors |

Flagship Skills (F19-F24)

| # | Skill | What It Does | |---|-------|-------------| | F19 | glean-multi-env-setup | Staging/production datasource isolation, token separation | | F20 | glean-observability | Indexing metrics, search quality tracking, alerting | | F21 | glean-incident-runbook | Search outage triage, stale content, connector failures | | F22 | glean-data-handling | PII filtering, document classification, retention policies | | F23 | glean-enterprise-rbac | Group-based permissions, SSO mapping, admin roles | | F24 | glean-migration-deep-dive | Migrate from Elasticsearch/Algolia to Glean |

Key Glean API Concepts

  • Indexing API: POST /api/index/v1/indexdocuments with Authorization: Bearer <indexing_token>
  • Client API: POST /api/client/v1/search with Authorization: Bearer <client_token> + X-Glean-Auth-Type: BEARER
  • Bulk indexing: /bulkindexdocuments with uploadId for full datasource refresh
  • Custom datasources: /adddatasource to register new content sources
  • Permissions: Document-level via allowedUsers, allowedGroups, or allowAnonymousAccess
  • Chat/AI: /client/v1/chat for AI-powered answers with citations

License

MIT