Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

okki-go奥吉戈

Agent Skill

okki-go 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,166

周安装

209

GitHub Stars

公开资料未说明

下载量

1,622
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:okki-go(奥吉戈)
来源仓库:https://github.com/okki-op/okki-go
安装命令:
openclaw skills install okki-go
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install okki-go

简介

通过 Okki Go 平台进行 B2B 潜在客户勘探与推广。

  • 支持全球公司搜索、决策者邮箱查找及邮件群发。
  • 适用于冷启动营销与客户拓展场景。
  • 安装命令:openclaw skills install okki-go;注意反垃圾邮件策略与合规性。
  • okki-go 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
OKKI Go
version
1.0.6
description
B2B lead prospecting and outreach via the Okki Go platform. Use this skill to (1) search global companies, (2) find decision-maker contact emails, (3) send cold outreach emails/EDM, (4) check email delivery status, (5) check credits/quota balance, or (6) upgrade plans/buy credits. Do NOT trigger if the user wants to search ON a DIFFERENT platform (e.g. 'search 1688 for suppliers', 'find products on Alibaba'). Having a product listing on another platform is fine — only skip when the search action itself targets another platform. Also NOT for: reading incoming emails, CRM management, or account settings.
metadata
openclaw
emoji
🌐
requires
bins
["curl", "jq"]
primaryEnv
OKKIGO_API_KEY
homepage
https://go.okki.ai
config
apiKey
type
string
required
true
description
API Key

OKKI Go — B2B Lead Prospecting & Outreach Skill

Helps sales teams and businesses rapidly discover and analyze potential customers and execute outreach campaigns via AI Agent, taking B2B customer acquisition efficiency to the next level.

For complete API parameter documentation and response schemas, see references/api-reference.md.

Quick Install

  • Install via OpenClaw platform

Option 1 — Open the OpenClaw web UI → Sidebar → Skills → Search "okki-go" → Click Install

Option 2 — Type in the OpenClaw chat: "Please run npx clawhub@latest install --force 'okki-go' to install this skill, then verify the installation was successful"

Routing

Use this skill when

  • User wants to find companies or customers — search by industry, country, keywords
  • User wants to get contact emails for a company — find decision-makers
  • User wants to search contacts by name, title, or email
  • User wants to send outreach or cold emails (EDM)
  • User wants to check email delivery status
  • User wants to check remaining credits or EDM quota
  • User needs the full prospecting workflow: search → contacts → outreach
  • User wants to upgrade plan or buy credit packs

Do NOT use this skill when

  • Reading or receiving incoming emails — this skill is outbound-only
  • CRM pipeline management, deal tracking, or sales forecasting
  • User explicitly names another platform (1688, Alibaba, Google Maps, Amazon, etc.)

Capabilities

#FeatureDescriptionCost
1Search CompaniesPortrait-based multi-dimensional filtering by company type, product, industry, countryFree
2Unlock CompanyResolve domain to companyHashId for subsequent queries1 credit (30-day domain dedup)
3View Company ProfileFull business info and trade data (requires unlock first)Free
4Get Company Contact EmailsContact email list for a given company (requires unlock first)Free
5Search ContactsCross-company search by name, title, email1 credit/request
6Send Batch OutreachSame template to multiple recipients, with variable substitution1 EDM quota/email
7Send Personalized OutreachUnique content per recipient1 EDM quota/email
8Check Email StatusTask list, per-email status, failure reasonsFree
9Check Credits & EDM BalanceRemaining search credits and email quotaFree

Authentication & API Key Setup

All endpoints use API Key authentication. Each user has an independent sk- prefixed key. Request header format:

Authorization: ApiKey $OKKIGO_API_KEY
X-Hostname: xxx

First-use check

Before the first API call in each session, check if the key is configured:

[ -z "$OKKIGO_API_KEY" ] && echo "NO_KEY" || echo "KEY_SET"
  • KEY_SET → Proceed directly with the user's request
  • NO_KEY → Follow the email verification flow below

If NO_KEY but the user has explicitly provided an API Key in context, save it directly. See saving instructions below.

Email Verification to Obtain API Key

  1. Ask the user for their email address
  2. Send verification code:
curl -s -X POST "${OKKIGO_BASE_URL:-https://go.okki.ai}/api/v1/auth/register-email" \
  ${HOSTNAME:+-H "X-Hostname: $HOSTNAME"} \
  -H "Content-Type: application/json" \
  -d '{"email":"<user email>"}' | jq '.'
  1. After the user provides the 6-digit code, exchange it for an API Key:
curl -s -X POST "${OKKIGO_BASE_URL:-https://go.okki.ai}/api/v1/auth/verify-email" \
  ${HOSTNAME:+-H "X-Hostname: $HOSTNAME"} \
  -H "X-OpenClaw-Provision-Api-Key: true" \
  -H "Content-Type: application/json" \
  -d '{"email":"<user_email>","code":"<6_digit_code>"}' | jq '.'
  1. Persist the API Key (required, once only):

After obtaining the apiKey, you must inform the user that the Agent is about to run the following command to persist the configuration, and ask for explicit consent before executing:

I'm about to run the following command to save your API Key to the okki go skill config:
`openclaw config set skills.entries.okkigo.apiKey "sk-xxxxxxxxxxxxxxxxxxxx"`
Do you approve?

After user approval, execute:

openclaw config set skills.entries.okkigo.apiKey "sk-xxxxxxxxxxxxxxxxxxxx"

If the command fails, show this message once for manual execution:

Your API Key: sk-xxxxxxxxxxxxxxxxxxxx Please run this command immediately to save it — this key is shown only once. openclaw config set skills.entries.okkigo.apiKey "sk-xxxxxxxxxxxxxxxxxxxx"

Once saved, OpenClaw auto-injects it as OKKIGO_API_KEY in future sessions — no re-verification needed.


Billing Confirmation Rules

These rules protect users from being charged unknowingly. All workflows must follow them.

Rule 1: Confirm before implicit paid API calls

"Implicit" means the user didn't explicitly ask to unlock a company, but the Agent decides to call /companies/unlock on its own. In this case, confirm first:

I found some matching companies. Unlocking a company costs 1 credit per domain (free if unlocked within the last 30 days). Shall I proceed?

Exception (no confirmation needed): If the user explicitly said "unlock this company", "get company details", "find emails for this company", etc., treat it as an active request. Call /companies/unlock first (if not already unlocked), then proceed to profile/profileEmails directly — these are now free.

Rule 2: Report charges after every paid API call

After each successful paid API call, include the cost summary at the end of your response:

This unlock used 1 credit. Remaining balance: XX (monthly) + YY (add-on).

For multiple companies:

Unlocked 3 companies, using 2 credits (1 was already unlocked within 30 days — no charge). Remaining: XX.

If unsure about the balance, call GET /api/v1/credit/balance after the paid call to get the latest numbers.

Rule 3: First-session confirmation for contact search

Before the first call to POST /contacts/search in the current session, regardless of whether the user explicitly asked, inform and confirm:

Contact search costs 1 credit per query. Proceed with the search?

After confirmation, subsequent calls in the same session do not need re-confirmation.


Output Formatting

Present API results in user-friendly format, not raw JSON.

Company search results

Show key info in a table for quick scanning:

#CompanyCountryIndustryDomain
1Example CorpCNManufacturingexample.com
2TechPrint AGDEElectronicstechprint.de
  • For 10+ results, show the first 10, state the total, and offer "say 'next page' to see more"
  • For zero results, suggest broadening criteria (different keywords, removing country filter, etc.)
  • The domain field is used with /companies/unlock to get the companyHashId

Contact information

NameTitleEmailLinkedIn
Hans MuellerProcurement Managerhans@techcorp.deYes
Lisa SchmidtCEOYes

Balance information

Current Account Balance - Search credits: 80 (monthly) + 400 (add-on) = 480 available - EDM quota: 200 (monthly) + 2000 (add-on) = 2200 available - Monthly quota resets: 2026-04-30

Email send feedback

After sending:

Submitted 2 emails (task ID: 1001), status: pending Emails are sent asynchronously — actual delivery takes seconds to minutes. Let me know if you'd like to check status later.

When checking status:

Task 1001 results: 48 sent / 2 failed / 50 total Failed: bob@globex.com — Invalid email address

Workflow Orchestration

User requests often span multiple workflows. The Agent needs to understand when to chain steps and when to pause for user decisions.

Workflow A: Exploration — "Help me find target customers"

  1. Search companies (free, see api-reference.md §2) → display results table
  2. Wait for user to select companies of interest → do NOT proactively call paid APIs
  3. User selects → Unlock company (follow Billing Rule 1, see api-reference.md §3) to get companyHashId
  4. Get contact emails (free, see api-reference.md §5) using the companyHashId
  5. Display contacts → ask if they want to send outreach

Workflow B: Contact Search — "Find a specific person"

  • Use POST /contacts/search to search by name, title, email, or company (see api-reference.md §6)
  • Follow Billing Rule 3 (first-session confirmation)
  • Supports filtering by country, has_email, employee count, etc.

Workflow C: Precision — "Send outreach to procurement managers in German auto parts companies"

  1. Search companies → display results for user confirmation
  2. Unlock selected companies (confirm billing) → get companyHashId for each
  3. Get contacts (free) → filter by relevant titles
  4. Display contact list → ask user to confirm recipients and email content
  5. Never send emails before user confirms — use POST /emails/send/batch for same-template sends (see api-reference.md §7)

Workflow D: Personalized Outreach — "Send each company a tailored email"

  • Same flow as Workflow C, but use POST /emails/send/personalized for unique content per recipient (see api-reference.md §8)
  • Each email should reference the recipient's company/industry context

Workflow E: Check Balance

Workflow F: Check Email Status — "How did my last batch go?"

  • Only call when user asks ("did they send?", "which ones failed?") — do NOT proactively poll
  • Use GET /emails/tasks for task list, GET /emails/tasks/:taskId for details (see api-reference.md §9-12)
  • Task status flow: pendingrequestedcompleted / partial / failed

Core Principles

  • Free operations can be executed proactively: search companies, check balance, check email status
  • Profile/detail/profileEmails are free but require unlock first — always call /companies/unlock to obtain companyHashId before querying these endpoints
  • Paid operations strictly follow Billing Confirmation Rules — unlock and contact search require confirmation
  • Sending emails always requires explicit user confirmation of content and recipients
  • When in doubt, show information and let the user decide rather than deciding for them

Error Handling

For HTTP error codes, handling guidance, and RFC 7807 response format, see api-reference.md §14.

Key cases to handle gracefully:

  • 401: API Key invalid → guide re-configuration (see Authentication section)
  • 402: Insufficient credits → inform user and direct to go.okki.ai/pricing
  • 403: Free plan has no EDM access → guide user to upgrade

Pricing

When users ask about plans, upgrades, or credit packs, direct them to the pricing page: go.okki.ai/pricing


Advanced Reference

For complete request/response schemas, all parameter constraints, and pagination details, see references/api-reference.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.13%
按下载量换算1,575

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills