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

@okki-global/okki-go

v1.0.12

Published

B2B lead prospecting and outreach skill for AI coding assistants

Readme

Okki Go Skill

B2B lead prospecting and outreach skill for AI coding assistants.

Quick Start

Method 1: Automated Installation (Recommended)

# Using npx (no installation required)
npx @okki-global/okki-go

# Or install globally first
npm install -g @okki-global/okki-go
okki-go

The installer supports:

  • Global installation - Install to ~/.{runtime}/skills/okki-go
  • Current directory - Install to ./skills/okki-go
  • Custom path - Install to a directory you specify

Method 2: Manual Upload (For platforms with file upload)

If your AI platform requires manual file upload:

  1. Download the skill file:

    # After installing the npm package
    npm install @okki-global/okki-go
    
    # The SKILL.md file is located at:
    node_modules/@okki-global/okki-go/skill/SKILL.md
  2. Or download directly from npm:

    • Visit: https://www.npmjs.com/package/@okki-global/okki-go
    • Download the package
    • Extract and locate skill/SKILL.md
  3. Upload to your platform:

    • Open your AI assistant's settings/configuration
    • Look for "Upload Skill" or "Add Custom Instructions"
    • Select the SKILL.md file
    • Save and restart your AI assistant

Important: The SKILL.md file contains all necessary instructions, API references, and workflows. Make sure to upload this specific file, not other markdown files in the package.

Supported Platforms

  • Claude Code - AI coding assistant CLI
  • OpenClaw - Open-source AI coding platform
  • Cursor - AI-first code editor
  • Windsurf - AI coding assistant
  • Accio Work - Alibaba International cross-border business agent workspace
  • Codex, Copilot, Gemini, Cline - Other AI platforms
  • Custom platforms - Use --custom=<name> for unlisted platforms

Configure API Key

After installation, configure your API key:

# Get your API key at: https://go.okki.ai

# 1. Preferred: platform secrets/config that injects OKKIGO_API_KEY
openclaw config set skills.entries.okkigo.apiKey "sk-xxx"

# 2. Accio Work: account skill config is detected automatically when present

# 3. Standard environment variable, for CLI/CI/local agent sessions
export OKKIGO_API_KEY="sk-xxx"

For Claude Code or other runtimes with JSON settings, inject the same variable:

{
  "env": {
    "OKKIGO_API_KEY": "sk-xxx"
  }
}

For platforms that cannot inject secrets into new sessions, use the secure local fallback:

mkdir -p ~/.config/okki-go
umask 077
printf '%s\n' '{"apiKey":"sk-xxx"}' > ~/.config/okki-go/credentials.json
chmod 600 ~/.config/okki-go/credentials.json

The skill resolves credentials in this order: platform config/secrets, Accio Work account skill config, OKKIGO_API_KEY, then ~/.config/okki-go/credentials.json.

Features

  • 🔍 Company Search - Find B2B prospects by industry, country, keywords
  • 📧 Contact Discovery - Get decision-maker emails
  • 📨 Outreach Campaigns - Send personalized cold emails
  • 📊 Email Tracking - Monitor delivery status
  • 💳 Credit Management - Check balance and upgrade plans

Advanced Installation

CLI Options

# Install to specific runtime
npx @okki-global/okki-go --global --claude

# Install to multiple runtimes
npx @okki-global/okki-go --global --claude --cursor

# Install to custom path
npx @okki-global/okki-go --claude --path /your/custom/path

# Install to custom runtime
npx @okki-global/okki-go --global --custom=myai

# Uninstall
npx @okki-global/okki-go --uninstall --global --claude

File Locations

After installation, the skill files are located at:

  • Global: ~/.{runtime}/skills/okki-go/
  • Local: ./skills/okki-go/
  • Custom: <your-path>/skills/okki-go/

The skill directory contains:

  • SKILL.md - Main skill file for most runtimes (instructions.md for GitHub Copilot)
  • references/ - API documentation
  • scripts/ - Helper scripts
  • VERSION - Version tracking

Documentation

Installation Architecture

Multi-runtime installation system with the following features:

  • ✅ Multi-runtime support (10 platforms + custom)
  • ✅ SHA256 manifest for change detection
  • ✅ Local modification protection
  • ✅ Automatic version management
  • ✅ Interactive & CLI modes
  • ✅ Custom path support

Troubleshooting

npx cache issues

If you encounter issues with npx, clear the cache:

npm cache clean --force
npx clear-npx-cache

Manual installation

If automated installation fails, you can manually copy the skill files:

# 1. Download the package
npm pack @okki-global/okki-go

# 2. Extract the tarball
tar -xzf okki-global-okki-go-*.tgz

# 3. Copy skill files to your platform's config directory
cp -r package/skill/* ~/.claude/skills/okki-go/

Version

Current: 1.0.12

Links

  • Homepage: https://go.okki.ai
  • Documentation: https://docs.okki.ai
  • Support: [email protected]
  • npm: https://www.npmjs.com/package/@okki-global/okki-go

License

MIT