Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

x-lead-genx 潜在客户

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

公开资料未说明

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:x-lead-gen(x 潜在客户)
来源仓库:https://github.com/officexapp/x-lead-gen
仓库路径:skills/x-lead-gen
安装命令:
npx skills add https://github.com/officexapp/x-lead-gen --skill x-lead-gen
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/officexapp/x-lead-gen --skill x-lead-gen

简介

x-lead-gen 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 需确认权限范围和维护状态,注意是否触发联网、命令执行或文件读写操作。
  • x-lead-gen 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Twitter Lead Gen API

Async job-based API. Submit a job, poll for status, retrieve results.

Important: When a job's 'view_url' is available, always share it with the user — it opens a spreadsheet GUI where they can browse, sort, and filter results visually.

Base URL

https://x-lead-gen-api-production.cloud.zoomgtm.com

Authentication

Two options (send one):

HeaderSource
'x-officex-install-id' + 'x-officex-install-secret'OfficeX install
'x-api-key'From '/auth/register' or '/auth/login'

Core Workflow

''' POST /api/v1/jobs → 202 {job_id, status: "queued"} GET /api/v1/jobs/{job_id} → 200 {status: "processing"|"completed",...} GET /api/v1/jobs/{job_id}/results → 200 {results: [...]} '''

1. Create Job

'''bash curl -X POST $BASE/api/v1/jobs -H "Content-Type: application/json" -H "x-officex-install-id: $INSTALL_ID" -H "x-officex-install-secret: $INSTALL_SECRET" -d '{"endpoint": "search", "params": {"query": "AI startups"}, "max_records": 100}' '''

Request body:

'''json {"endpoint": "search", "params": {"query": "AI startups"}, "prompt_filter": "SaaS founders discussing pricing", "max_records": 100} '''

FieldTypeRequiredDescription
'endpoint'stringYesOne of 29 endpoints below
'params'object or arrayYesEndpoint params. Array for bulk (one task per item)
'prompt_filter'stringNoAI filter prompt (adds Gemini scoring, costs 0.12 instead of 0.1 credits/task)
'max_records'numberNo1-1000, default 100. Auto-paginates to fetch this many results

Response (202):

'''json {"job_id": "uuid", "status": "queued", "total_tasks": 4, "credits_reserved": 0.4, "poll_url": "/api/v1/jobs/{job_id}"} '''

2. Poll Status

'''bash curl $BASE/api/v1/jobs/{job_id} -H "x-api-key: $KEY" '''

Response:

'''json {"job_id": "uuid", "endpoint": "search", "status": "completed", "total_tasks": 4, "completed_tasks": 4, "failed_tasks": 0, "credits_per_task": 0.1, "credits_charged": 0.4, "params": {"query": "AI startups"}, "max_records": 100, "latest_cursor": "...", "created_at": "2025-01-25T10:00:00Z", "view_url": "https://example.com/dashboard/#/nc/view/uuid"} '''

'view_url' — opens a spreadsheet GUI (NocoDB) showing results for this job. Present it to the user so they can browse results visually. Only present once the job has started processing.

Status values: 'queued' | 'processing' | 'completed' | 'failed' | 'cancelled' | 'paused'

3. Get Results

'''bash curl "$BASE/api/v1/jobs/{job_id}/results?page=1&limit=50" -H "x-api-key: $KEY" '''

Response:

'''json {"job_id": "uuid", "endpoint": "search", "results": {"task_index": 0, "status": "success", "result_url": "[https://s3.amazonaws.com/...", "item_urls": "[https://s3.amazonaws.com/..."], "credits_charged": 0.1, "match_score": 85, "ai_notes": "SaaS founder discussing B2B pricing"}], "next_page": 2} '''

'result_url' — full API response JSON. 'item_urls' — individual items (one per tweet/user/etc). 'match_score' and 'ai_notes' only present when 'prompt_filter' was used.

4. Control Jobs

'''bash

Pause

curl -X PATCH $BASE/api/v1/jobs/{job_id} -H "x-api-key: $KEY" -H "Content-Type: application/json" -d '{"status": "paused"}'

Resume

curl -X PATCH... -d '{"status": "processing"}'

Cancel

curl -X PATCH... -d '{"status": "cancelled"}' '''

Valid transitions: 'processing' → 'paused' → 'processing', any active → 'cancelled'.

5. Bookmark & Notes (per-item annotations)

Save bookmarks and notes on individual result items. Annotations persist in DynamoDB (result-rows table) and sync to the NocoDB spreadsheet view.

'''bash

Get all result rows (annotations) for a job

curl "$BASE/api/v1/jobs/{job_id}/result-rows" -H "x-api-key: $KEY" '''

Response:

'''json {"result_rows": [{"job_id": "uuid", "sk": "0#0", "task_index": 0, "item_index": 0, "user_bookmarked": true, "user_notes": "Great lead", "updated_at": "...", "ttl": 1234567890}, {"job_id": "uuid", "sk": "0#3", "task_index": 0, "item_index": 3, "user_bookmarked": false, "user_notes": "Follow up later", "updated_at": "...", "ttl": 1234567890}]} '''

'''bash

Bookmark or add notes to an item

curl -X PATCH "$BASE/api/v1/jobs/{job_id}/results/0/items/3" -H "x-api-key: $KEY" -H "Content-Type: application/json" -d '{"user_bookmarked": true, "user_notes": "Promising SaaS founder"}' '''

Response:

'''json {"success": true, "job_id": "uuid", "task_index": 0, "item_index": 3, "user_bookmarked": true, "user_notes": "Promising SaaS founder"} '''

Both fields are optional — send either or both. 'view_url' spreadsheet includes 'user_bookmarked' and 'user_notes' columns that sync automatically.

5b. NocoDB Webhook (2-way sync)

'''bash

NocoDB calls this when a user edits annotations in the spreadsheet

curl -X POST "$BASE/api/v1/webhooks/nocodb" -H "x-webhook-secret: $NOCODB_WEBHOOK_SECRET" -H "Content-Type: application/json" -d '{"data":{"row":{"job_id":"uuid","task_index":0,"item_index":3,"user_bookmarked":true}}}' '''

Anti-loop: webhook writes to DynamoDB only, never syncs back to NocoDB.

5c. Legacy Endpoints (deprecated)

The following endpoints still work but are deprecated. Use the new endpoints above.

'''bash

DEPRECATED: Get annotations (use GET /result-rows instead)

curl "$BASE/api/v1/jobs/{job_id}/items" -H "x-api-key: $KEY"

DEPRECATED: Patch annotation (use PATCH /results/{task_index}/items/{item_index} instead)

curl -X PATCH "$BASE/api/v1/jobs/{job_id}/items/0:3" -H "x-api-key: $KEY" -H "Content-Type: application/json" -d '{"user_bookmarked": true}' '''

Endpoints (29)

User Endpoints

EndpointRequiredOptionalReturns
'user-info'screennamerest_idSingle user profile
'bulk-users'rest_idsMultiple user profiles
'about-profile'screennameExtended profile info
'following'screennamecursorPaginated user list
'followers'screennameblue_verified, cursorPaginated user list
'affiliates'screennamecursorPaginated user list
'check-follow'screenname, targetFollow relationship

Tweet Endpoints

EndpointRequiredOptionalReturns
'search'querysearch_type, cursorPaginated tweets
'timeline'screennamecursorPaginated tweets
'usermedia'screennamecursorPaginated media tweets
'replies'screennamecursorPaginated replies
'tweet-info'idSingle tweet
'tweet-thread'idTweet thread
'latest-replies'idcursorPaginated replies
'retweets'idcursorPaginated users
'check-retweet'id, screennameRetweet check
'top-posts'typecountry, periodPaginated tweets

'search_type': Top, Latest, People, Photos, Videos. 'type' (top-posts): Likes, Retweets. 'period': Daily, Weekly, Monthly.

List Endpoints

EndpointRequiredOptionalReturns
'list-timeline'list_idcursorPaginated tweets
'list-followers'list_idcursorPaginated users
'list-members'list_idcursorPaginated users

Community Endpoints

EndpointRequiredOptionalReturns
'community-timeline'community_idranking, cursorPaginated tweets
'community-members'community_idcursorPaginated users
'search-communities'queryCommunity list
'communities-latest'querycursorPaginated tweets
'communities-top'querycursorPaginated tweets

'ranking': Top, New.

Other Endpoints

EndpointRequiredOptionalReturns
'trends'countryTrending topics
'jobs'queryJob listings
'spaces'idSpace details
'broadcast'rest_idBroadcast info

Bulk Requests

Pass 'params' as an array to create one task per item:

'''json {"endpoint": "user-info", "params": [{"screenname": "elonmusk"}, {"screenname": "sama"}, {"screenname": "sataborasu"}]} '''

Creates 3 tasks. Each task is billed independently.

Billing

TypeCredits/TaskUSD/Task
Without AI filter0.1$0.001
With 'prompt_filter'0.12$0.0012

Credits are reserved upfront, settled progressively as tasks complete. Failed tasks are not billed. Unused credits are refunded on completion/cancellation.

Auth Endpoints

POST '/auth/register'

'''json {"email": "user@example.com", "password": "min6chars"} ''' → '201 {api_key, install_id, email}'

POST '/auth/login'

'''json {"email": "user@example.com", "password": "..."} ''' → '200 {api_key, install_id, email}'

POST '/auth/officex-login'

'''json {"officex_customer_id": "uuid", "install_id": "uuid", "install_secret": "..."} ''' → '200 {api_key, install_id, install_secret}'

All Routes

MethodPathDescription
POST'/auth/register'Create account
POST'/auth/login'Login
POST'/auth/officex-login'OfficeX autologin
POST'/api/v1/jobs'Create job
GET'/api/v1/jobs'List jobs ('?page=&limit=')
GET'/api/v1/jobs/{job_id}'Job status
PATCH'/api/v1/jobs/{job_id}'Update job (pause/resume/cancel)
GET'/api/v1/jobs/{job_id}/results'Results ('?page=&limit=')
GET'/api/v1/jobs/{job_id}/results/{task_index}'Single result
GET'/api/v1/jobs/{job_id}/result-rows'Get all result rows (annotations)
PATCH'/api/v1/jobs/{job_id}/results/{task_index}/items/{item_index}'Update item bookmark/notes
POST'/api/v1/webhooks/nocodb'NocoDB 2-way sync webhook
GET'/api/v1/jobs/{job_id}/items'*Deprecated* — Get item annotations
PATCH'/api/v1/jobs/{job_id}/items/{item_key}'*Deprecated* — Update item bookmark/notes
GET'/docs'Raw skill markdown
POST'/webhooks/officex'OfficeX lifecycle webhooks

Error Codes

CodeMeaning
400Invalid request (validation error)
401Missing or invalid auth
402Insufficient credits
403Installation expired
404Job or result not found
409Email already registered
429Rate limited

All errors return: '{"error": "Human-readable message"}'

Data Retention

Results stored for 90 days in S3.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.6%
按下载量换算22

Claude

29.86%
按下载量换算19

Cursor

18.13%
按下载量换算11

Gemini CLI

9.18%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills