JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 234
  • Score
    100M100P100Q119229F
  • License MIT

GooseWorks CLI — give your coding agent real data tools

Package Exports

  • gooseworks
  • gooseworks/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gooseworks) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

GooseWorks

Give your coding agent (Claude Code, Cursor, Codex) access to 100+ data tools — scrape Twitter/Reddit/LinkedIn, find emails, enrich companies, research competitors — with one install.

Install

Pick your agent:

# Claude Code
npx gooseworks install --claude
npx gooseworks install --claude --with goose-graphics

# Cursor
npx gooseworks install --cursor

# Codex
npx gooseworks install --codex

# All detected agents
npx gooseworks install --all

This does three things:

  1. Opens browser for Google sign-in
  2. Installs the GooseWorks skill into your coding agent
  3. You're ready — ask your agent to "scrape reddit", "find leads", "research competitors"

Use --with <skill-slug> to install standalone GooseWorks skills alongside the main GooseWorks skill. For example, --with goose-graphics installs /goose-graphics locally so your agent can run it directly without doing a catalog lookup through /gooseworks.

Other install methods

# Via Vercel skills.sh
npx skills add gooseworks-ai/gooseworks

# Via Claude Code plugins
/plugin install gooseworks

# Via OpenClaw ClawHub
clawhub skill install gooseworks

# Via Codex (OpenAI) — available once merged into openai/skills
codex skills install gooseworks

Commands

install

Full setup: login + install skill + configure your coding agent.

npx gooseworks install --claude    # Configure for Claude Code
npx gooseworks install --cursor    # Configure for Cursor
npx gooseworks install --codex     # Configure for Codex
npx gooseworks install --all       # Configure all detected agents
npx gooseworks install --claude --with goose-graphics
npx gooseworks install --claude --with goose-graphics --with aeo

What it does:

  • Runs login if you don't have credentials yet
  • Writes the GooseWorks skill to ~/.agents/skills/gooseworks/SKILL.md
  • Downloads any --with standalone skills from gooseworks-ai/goose-skills into ~/.agents/skills/<slug>/
  • Creates symlinks in ~/.claude/skills/ (Claude) or ~/.codex/skills/ (Codex), or writes MCP config (Cursor)

--with is repeatable. Unknown slugs are reported clearly and do not block the main GooseWorks skill install.

login

Authenticate with GooseWorks via Google OAuth.

npx gooseworks login

Flow:

  1. Starts a temporary HTTP server on a random local port
  2. Opens your browser to the GooseWorks sign-in page
  3. You sign in with Google
  4. Token saved to ~/.gooseworks/credentials.json

Timeout: 120 seconds. If the browser doesn't complete, re-run the command.

logout

Clear saved credentials.

npx gooseworks logout

Deletes ~/.gooseworks/credentials.json.

Search the GooseWorks skill catalog.

npx gooseworks search "reddit scraping"
npx gooseworks search "find emails"
npx gooseworks search "competitor research"

credits

Check your credit balance.

npx gooseworks credits

Output:

Credits: 847 available (500 subscription + 347 purchased)

update

Re-fetch the latest skill without re-authenticating.

npx gooseworks update

How It Works

  1. Install — authenticates you and installs a master skill file into your coding agent
  2. Ask your agent anything — "scrape r/ClaudeAI", "find CTOs at AI startups", "research competitor pricing"
  3. Agent finds the right skill — searches the GooseWorks catalog of 100+ skills
  4. Runs it — downloads and executes the skill's Python scripts, which call GooseWorks APIs
  5. You get results — structured data returned directly in your coding agent

Standalone skills installed with --with skip the catalog search step. After npx gooseworks install --claude --with goose-graphics, you can invoke /goose-graphics ... directly from Claude Code.

What's Included

100+ skills across these categories:

Category Examples
Lead Generation Apollo prospecting, company contact finder, signal scanning
Outreach Cold email, LinkedIn outreach, email drafting
Scraping Twitter/X, Reddit, LinkedIn, Product Hunt, Hacker News
Research Competitor intel, ICP identification, meeting briefs
SEO Content audit, domain analysis, programmatic SEO
Ads Google/Meta ad scraping, campaign analysis
Enrichment Contact enrichment, company research, tech stack
Monitoring Newsletter scanning, review site tracking

File Layout

Credentials

~/.gooseworks/
└── credentials.json      # API key, email, agent_id, api_base

Skills

~/.agents/skills/
├── gooseworks/
│   └── SKILL.md          # GooseWorks skill — teaches your agent to use 100+ data tools
└── goose-graphics/
    └── SKILL.md          # Optional standalone skill installed with --with
~/.claude/skills/
├── gooseworks → ~/.agents/skills/gooseworks
└── goose-graphics → ~/.agents/skills/goose-graphics
~/.codex/skills/
├── gooseworks → ~/.agents/skills/gooseworks
└── goose-graphics → ~/.agents/skills/goose-graphics

Pricing

New users get 200 free credits. Each skill run costs 1-10 credits depending on the data source. Check your balance with npx gooseworks credits.

Need more? Visit gooseworks.ai/settings to add credits.

Requirements

  • Node.js 18+
  • Python 3 (for running skill scripts)
  • Claude Code, Cursor, or Codex

License

MIT