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

sixtyfour-skill六十四技能

Agent Skill

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

总安装

11,266

周安装

479

GitHub Stars

公开资料未说明

下载量

3,947
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install sixtyfour-skill

简介

sixtyfour-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中使用 Sixtyfour AI API 获取人员与公司信息时使用。

  • 它能读取实时网络数据并返回结构化结果,优于静态数据库查询。
  • 通过 clawhub 安装后,可结合原始 README 配置 API 密钥与查询参数。
  • 安装前需确认权限范围、维护状态,以及是否会触发外部 API 调用或数据缓存。
  • 使用时建议验证来源可靠性,避免依赖未经验证的网络信息。

SKILL.md

name
sixtyfour
description
People and company intelligence via the Sixtyfour AI API. AI research agents that read the live web — not static databases — to return structured, confidence-scored profiles. Use when you need to: (1) enrich a lead with full profile data (name, title, email, phone, LinkedIn, tech stack, funding, pain points — up to 50 custom fields), (2) research a company (team size, tech stack, funding rounds, hiring signals, key people), (3) find someone's professional or personal email address, (4) find phone numbers, (5) score/qualify leads against custom criteria with reasoning, (6) search for people or companies via natural language query, or (7) run batch enrichment workflows via API. NOT for: general web browsing, tasks unrelated to people/company data, or non-enrichment research.

Sixtyfour AI — People & Company Intelligence

AI research agents that investigate people and companies across the live web, returning structured, confidence-scored data. 93% accuracy — benchmarked against Clay (66%), Apollo (72%), and ZoomInfo.

Base URL: https://api.sixtyfour.ai Auth header: x-api-key: YOUR_API_KEY (all requests) Free tier: 50 deep researches on signup — app.sixtyfour.ai (Google sign-in, API key available immediately) Docs: docs.sixtyfour.ai OpenAPI spec: api.sixtyfour.ai/openapi.json

Setup

# 1. Sign up at https://app.sixtyfour.ai (Google sign-in)
# 2. Sidebar → Keys → Create new key
export SIXTYFOUR_API_KEY="your_key_here"

API Quick Reference

EndpointMethodDescriptionSync/Async
/enrich-leadPOSTFull person profile from name + companyBoth
/enrich-companyPOSTDeep company research + people discoveryBoth
/find-emailPOSTProfessional ($0.05) or personal ($0.20) emailBoth
/find-phonePOSTPhone number discoveryBoth
/qa-agentPOSTScore/qualify leads against custom criteriaBoth
/search/start-deep-searchPOSTFind people/companies via natural languageAsync
/search/start-filter-searchPOSTStructured filter search (skips LLM parsing)Sync
/workflows/runPOSTExecute batch enrichment pipelinesAsync

All enrichment endpoints have async variants (append -async) returning task_id for polling via GET /job-status/{task_id}. Use async for production workloads.


Enrich Lead

The core endpoint. Give it a name — get back a full profile with any fields you define.

curl -X POST "https://api.sixtyfour.ai/enrich-lead" \
  -H "x-api-key: $SIXTYFOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "lead_info": {
      "name": "Jane Doe",
      "company": "Acme Corp"
    },
    "struct": {
      "full_name": "Full name",
      "title": "Current job title",
      "seniority": "Seniority level (C-suite, VP, Director, Manager, IC)",
      "department": "Department or function",
      "email": "Work email address",
      "personal_email": "Personal email address",
      "phone": "Phone number",
      "linkedin": "LinkedIn profile URL",
      "location": "City and state",
      "company_name": "Current company",
      "company_size": {"description": "Approximate employee count", "type": "int"},
      "tech_stack": {"description": "Tools and technologies they use daily", "type": "list[str]"},
      "funding_stage": "Company latest funding stage and amount",
      "pain_points": {"description": "Likely challenges based on role and company stage", "type": "list[str]"},
      "social_profiles": {"description": "Twitter, GitHub, personal blog URLs", "type": "list[str]"},
      "recent_activity": "Notable recent posts, talks, or job changes"
    },
    "research_plan": "Check LinkedIn profile, company website about page, Twitter, GitHub, and any recent conference talks or blog posts."
  }'

Response

{
  "structured_data": {
    "full_name": "Jane Doe",
    "title": "VP of Engineering",
    "seniority": "VP",
    "department": "Engineering",
    "email": "jane@acme.com",
    "phone": "+1-555-0123",
    "linkedin": "https://linkedin.com/in/janedoe",
    "tech_stack": ["React", "Python", "AWS", "Terraform"],
    "funding_stage": "Series B, $45M (2025)",
    "pain_points": ["Scaling engineering team post-Series B", "Migrating legacy infrastructure"]
  },
  "notes": "Research narrative with sources...",
  "references": {
    "https://linkedin.com/in/janedoe": "LinkedIn profile",
    "https://acme.com/about": "Company about page"
  },
  "confidence_score": 9.2
}

Key Parameters

ParameterTypeRequiredDescription
lead_infoobjectYesKnown data: name, company, linkedin_url, email, domain, etc.
structobjectYesFields to collect. Value is either a plain-English description string or `{"description": "...", "type": "str\int\float\bool\list[str]\dict"}`
research_planstringNoGuides where the agent looks — specific sources, methodology

Timeouts: P95 ~5 min, max ~10 min. Set client timeout to 15+ min or use /enrich-lead-async.


Enrich Company

Deep company research with optional people discovery.

curl -X POST "https://api.sixtyfour.ai/enrich-company" \
  -H "x-api-key: $SIXTYFOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "target_company": {
      "company_name": "Stripe",
      "website": "stripe.com"
    },
    "struct": {
      "description": "One-line company description",
      "employee_count": {"description": "Approximate headcount", "type": "int"},
      "tech_stack": {"description": "Key technologies used", "type": "list[str]"},
      "recent_funding": "Most recent funding round, amount, and date",
      "hiring_signals": {"description": "Open roles indicating growth areas", "type": "list[str]"},
      "competitors": {"description": "Main competitors", "type": "list[str]"}
    },
    "find_people": true,
    "people_focus_prompt": "Find the VP of Engineering and CTO",
    "lead_struct": {
      "name": "Full name",
      "title": "Job title",
      "linkedin": "LinkedIn URL",
      "email": "Work email"
    }
  }'

People Discovery Parameters

ParameterTypeDescription
find_peopleboolEnable people discovery at the company
people_focus_promptstringDescribe who to find (role, department, seniority)
lead_structobjectFields to return per person found (same format as struct)

Each person returned includes a score (0-10) for relevance to people_focus_prompt.


Find Email

# Professional email ($0.05 per call)
curl -X POST "https://api.sixtyfour.ai/find-email" \
  -H "x-api-key: $SIXTYFOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "lead": {"name": "Saarth Shah", "company": "Sixtyfour AI"},
    "mode": "PROFESSIONAL"
  }'

Response: {"email": [["saarth@sixtyfour.ai", "OK", "COMPANY"]], "cost_cents": 5}

# Personal email ($0.20 per call)
curl -X POST "https://api.sixtyfour.ai/find-email" \
  -H "x-api-key: $SIXTYFOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "lead": {"name": "Jane Doe", "company": "Acme Corp"},
    "mode": "PERSONAL"
  }'

Email field format: [["email@domain.com", "OK|UNKNOWN", "COMPANY|PERSONAL"]]

Bulk: Use /find-email-bulk-async with {"leads": [...]} for up to 100 leads.


Find Phone

curl -X POST "https://api.sixtyfour.ai/find-phone" \
  -H "x-api-key: $SIXTYFOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "lead": {
      "name": "John Doe",
      "company": "Example Corp",
      "linkedin_url": "https://linkedin.com/in/johndoe"
    }
  }'

Provide as much context as possible (name, company, LinkedIn, email, domain) for best hit rate.

Bulk: Use /find-phone-bulk-async for up to 100 leads, or /enrich-dataframe with CSV:

curl -X POST "https://api.sixtyfour.ai/enrich-dataframe" \
  -H "x-api-key: $SIXTYFOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"csv_data": "name,company\
John Doe,Example Corp", "enrichment_type": "phone"}'

QA Agent — Score & Qualify Leads

Evaluate enriched data against custom criteria. Returns scores and reasoning.

curl -X POST "https://api.sixtyfour.ai/qa-agent" \
  -H "x-api-key: $SIXTYFOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "data": {
      "name": "Alex Johnson",
      "title": "VP Engineering",
      "company": "TechStartup",
      "funding": "Series B",
      "tech_stack": ["React", "AWS", "PostgreSQL"]
    },
    "qualification_criteria": [
      {"criteria_name": "Seniority", "description": "VP level or above", "weight": 10.0, "threshold": 8.0},
      {"criteria_name": "Company Stage", "description": "Series A-C, actively growing", "weight": 8.0},
      {"criteria_name": "Tech Fit", "description": "Uses modern web stack", "weight": 6.0}
    ],
    "struct": {
      "overall_score": {"description": "Composite score 0-10", "type": "float"},
      "verdict": "ACCEPT or REJECT",
      "reasoning": "Why this lead does or does not qualify"
    }
  }'

Optional: add "references": [{"url": "https://...", "description": "Company blog"}] for additional context.


Search — Find People or Companies

Deep Search (natural language, async)

# Start search
curl -X POST "https://api.sixtyfour.ai/search/start-deep-search" \
  -H "x-api-key: $SIXTYFOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "VP of Engineering at Series B SaaS startups in New York", "max_results": 100}'

# Returns: {"task_id": "abc123", "status": "queued"}

# Poll (every 10-15s)
curl "https://api.sixtyfour.ai/search/deep-search-status/abc123" \
  -H "x-api-key: $SIXTYFOUR_API_KEY"

# Download results (when status = "completed", use resource_handle_id)
curl "https://api.sixtyfour.ai/search/download?resource_handle_id=xyz789" \
  -H "x-api-key: $SIXTYFOUR_API_KEY"
# Returns signed URL (expires 15 min) → CSV download

Filter Search (structured, synchronous)

curl -X POST "https://api.sixtyfour.ai/search/start-filter-search" \
  -H "x-api-key: $SIXTYFOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"filters": {"title": "VP Engineering", "location": "New York", "company_size": "50-200"}}'
# Returns: {"resource_handle_id": "...", "total_results": 150, "exported_count": 150}

Workflows — Batch Enrichment Pipelines

Chain blocks into reusable pipelines. Trigger via API with webhook payloads.

# List available workflow blocks
curl "https://api.sixtyfour.ai/workflows/blocks" \
  -H "x-api-key: $SIXTYFOUR_API_KEY"

# Run a workflow (webhook-triggered)
curl -X POST "https://api.sixtyfour.ai/workflows/run?workflow_id=YOUR_WORKFLOW_ID" \
  -H "x-api-key: $SIXTYFOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"webhook_payload": [{"company_name": "Acme", "website": "acme.com"}]}'

# Monitor progress (poll every 5-10s)
curl "https://api.sixtyfour.ai/workflows/runs/RUN_ID/live_status" \
  -H "x-api-key: $SIXTYFOUR_API_KEY"

# Download results
curl "https://api.sixtyfour.ai/workflows/runs/RUN_ID/results/download-links" \
  -H "x-api-key: $SIXTYFOUR_API_KEY"

Block types: webhook, read_csv, enrich_company, enrich_lead, find_email, find_phone, qa_agent

Manage workflows: GET /workflows (list), POST /workflows/create_workflow, POST /workflows/update_workflow, POST /workflows/delete_workflow


Webhooks — Async Notifications

Add "webhook_url" to any async request body:

{"lead_info": {...}, "struct": {...}, "webhook_url": "https://your-server.com/hook"}

Sixtyfour POSTs {task_id, status, task_type, result} on completion. 5 retries with exponential backoff.


Common Patterns

Signup enrichment: New user email → /enrich-lead with role, tech stack, funding fields → push to CRM CRM backfill: Export contacts → /enrich-lead-async in parallel → poll → download enriched data Lead scoring pipeline: /enrich-lead/qa-agent with custom ICP criteria → route by verdict Prospect list building: /search/start-deep-search with ICP description → CSV → /find-email per lead Account intelligence: /enrich-company with find_people: true → weekly Slack digest of changes


Error Handling & Rate Limits

  • Rate limit: 500 requests/min per API key
  • Errors: {"error": "ErrorType", "message": "Details"}
  • HTTP codes: 400 (bad request), 401 (invalid key), 429 (rate limited), 500 (retry)
  • Async polling: Use GET /job-status/{task_id} — statuses: pendingprocessingcompleted | failed

MCP Server

For Claude Desktop, Cursor, Windsurf, or any MCP client:

{
  "mcpServers": {
    "sixtyfour": {
      "command": "npx",
      "args": ["-y", "sixtyfour-mcp"],
      "env": {"SIXTYFOUR_API_KEY": "your_key"}
    }
  }
}

Then ask naturally: "Find the email and phone number for the CTO of Stripe" — the assistant calls Sixtyfour automatically.


Support: team@sixtyfour.ai | docs.sixtyfour.ai | app.sixtyfour.ai

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

94.74%
按下载量换算3,739

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills