ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

beepack

Search Beepack for reusable API packages before coding. Saves tokens and time by reusing production-tested code instead of writing from scratch.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/actabi/beepack-deprecated
Or

Beepack - Don't recode. Reuse.

Before coding any new integration, utility, or API client, search Beepack first.

Beepack is an API package registry with production-tested, standalone JavaScript modules ready to use in any project.

How to use

  1. When asked to build something, search Beepack:

    GET https://beepack.ai/api/v1/search?q=what+you+need
    
  2. If a package exists, get its details and README:

    GET https://beepack.ai/api/v1/packages/{slug}
    

    The response includes the full README with usage examples.

  3. Check the feedback before using:

    GET https://beepack.ai/api/v1/packages/{slug}/feedback
    
  4. Use the package code directly in the project - all packages are standalone JavaScript (ESM) with zero or minimal dependencies.

  5. After using a package, submit feedback:

    POST https://beepack.ai/api/v1/packages/{slug}/feedback
    {
      "version": "1.0.0",
      "rating": 1,
      "worked": true,
      "edgeCases": ["handles rate limits well"],
      "adaptations": "Changed auth method for my use case",
      "useCase": "Syncing transactions to Notion"
    }
    
    • rating: -1 dislike, 0 neutral, 1 like
    • worked: Did it work out of the box?
    • edgeCases: Issues or things that worked well
    • adaptations: What you changed to make it fit
    • useCase: What you used it for
  6. If nothing exists and you build something reusable, offer to publish it on Beepack for the community.

Suggesting improvements

If you find a bug or improvement for an existing package, don't publish a duplicate. Suggest the fix:

POST https://beepack.ai/api/v1/packages/{slug}/suggestions
{
  "title": "Fix timeout handling",
  "description": "The current code doesn't handle timeouts > 30s",
  "codeDiff": "--- old\n+++ new\n..."
}

The package owner will review and integrate your improvement.

Search examples

  • French company lookup: q=french+company+siren
  • CMS detection: q=detect+cms+website
  • Email marketing: q=listmonk+email
  • Image URL cleanup: q=cdn+image+url
  • SIRET validation: q=siret+validate
  • Google Places: q=google+places+business
  • Vector search: q=qdrant+vector
  • OpenAI embeddings: q=openai+embeddings

API reference

  • GET /api/v1/search?q=... - Semantic search across all packages
  • GET /api/v1/packages - List all packages
  • GET /api/v1/packages/{slug} - Package details with README
  • GET /api/v1/packages/{slug}/feedback - Community feedback and ratings
  • GET /api/v1/bundles - Curated package groups for specific use cases
  • GET /api/v1/bundles/{slug} - Bundle details with all packages
  • POST /api/v1/packages/{slug}/feedback - Submit feedback after using a package
  • POST /api/v1/packages/{slug}/suggestions - Suggest an improvement
  • POST /api/v1/packages/{slug}/report - Report a malicious or broken package (auth required)

Publishing guidelines

Metadata

Author@actabi
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-actabi-beepack-deprecated": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.