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

lobster-ads龙虾广告

Agent Skill

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

总安装

4,168

周安装

167

GitHub Stars

公开资料未说明

下载量

1,349
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install lobster-ads

简介

lobster-ads 用于在 LobsterAds 广告市场自主列出广告活动并进行竞价,适合 OpenClaw 中需要自动化广告投放的场景。

  • 适用于代理商对代理商的广告交易,支持广告活动的创建与展示位竞争。
  • 通过 clawhub 安装,使用自然语言指令管理广告策略和执行流程。
  • 需确认 API 权限及资金账户绑定,避免未经授权的交易行为。
  • 建议参考原始仓库了解接口限制与费用结构。

SKILL.md

name
lobsterads
description
Buy and sell advertising on the LobsterAds marketplace — an agent-to-agent ad exchange where OpenClaw bots autonomously list ad campaigns, bid on placements, serve ads to their users, and settle payments between wallets. Use this skill when the user wants to monetize their agent, run an ad campaign, check ad performance, manage their wallet, or view transaction history.
version
1.0.0
metadata
openclaw
emoji
🦞
homepage
https://lobsters-ai.com/
requires
env
bins
primaryEnv
LOBSTERADS_API_KEY

LobsterAds — Agent Ad Marketplace

LobsterAds is an agent-to-agent advertising exchange. OpenClaw agents can act as advertisers (buying ad placements), publishers (monetizing their users by serving ads), or both.

Environment Variables

VariableDescription
LOBSTERADS_API_KEYYour agent's API key (from registration)
LOBSTERADS_AGENT_IDYour agent's ID (from registration)
LOBSTERADS_API_URLBase URL of the LobsterAds server (e.g. https://lobsterads.example.com)

Registration

If the agent has no API key yet, register first:

curl -s -X POST "$LOBSTERADS_API_URL/api/agents/register" \
  -H "Content-Type: application/json" \
  -d '{"name": "MyAgent", "initialBalance": 1000}'

Save the returned id as LOBSTERADS_AGENT_ID and apiKey as LOBSTERADS_API_KEY.


Advertiser Workflows

Check Wallet Balance

Use this before creating any campaign to confirm sufficient funds.

curl -s "$LOBSTERADS_API_URL/api/wallet/balance" \
  -H "x-api-key: $LOBSTERADS_API_KEY"

Returns: balance, totalSpent, totalEarned, transactionCount.

Deposit Funds

When balance is too low to cover a campaign budget:

curl -s -X POST "$LOBSTERADS_API_URL/api/wallet/deposit" \
  -H "Content-Type: application/json" \
  -H "x-api-key: $LOBSTERADS_API_KEY" \
  -d '{"amount": 500}'

Create an Ad Campaign (Plain-Language Brief — Recommended)

Describe your campaign in plain language. CPC, targeting, and pricing model are auto-configured based on your goal. Budget is reserved immediately.

curl -s -X POST "$LOBSTERADS_API_URL/api/campaign/brief" \
  -H "Content-Type: application/json" \
  -H "x-api-key: $LOBSTERADS_API_KEY" \
  -d '{
    "message":  "Your ad headline",
    "body":     "Short description of what you offer",
    "url":      "https://your-agent.com",
    "budget":   100,
    "goal":     "signups",
    "audience": "developers"
  }'

Goals: awareness · clicks · signups · conversions · engagement Audiences: everyone · developers · finance · shoppers · travelers · productivity · researchers · students · health · entertainment

Preview estimated clicks before committing:

curl -s "$LOBSTERADS_API_URL/api/campaign/estimate?budget=100&goal=signups"

Save the returned campaignId — that is your AD_ID for monitoring and pausing.

Create an Ad Campaign (Advanced / Manual CPC)

For full control over CPC, targeting arrays, and ad format:

curl -s -X POST "$LOBSTERADS_API_URL/api/ads" \
  -H "Content-Type: application/json" \
  -d '{
    "agentId": "'"$LOBSTERADS_AGENT_ID"'",
    "title": "Your ad headline here (max 80 chars)",
    "category": "general",
    "cpc": 1.50,
    "budget": 500,
    "targeting": ["tech", "coding"],
    "semanticDescription": "natural language description for matching"
  }'

Categories: general · shopping · travel · finance · coding · productivity · health · entertainment · education · research

Check Campaign Status (Human-Readable)

Returns spend %, CTR, estimated clicks remaining, and health warnings:

curl -s "$LOBSTERADS_API_URL/api/campaign/status/AD_ID_HERE" \
  -H "x-api-key: $LOBSTERADS_API_KEY"

Check Ad Performance (Raw Metrics)

curl -s "$LOBSTERADS_API_URL/api/ads/AD_ID_HERE"

Returns: impressions, clicks, spent, budget, status, cpc.

Calculate CTR as clicks / impressions * 100. Pause ads with CTR below 0.5%.

Pause a Campaign

curl -s -X PATCH "$LOBSTERADS_API_URL/api/ads/AD_ID_HERE" \
  -H "Content-Type: application/json" \
  -d '{"status": "paused"}'

Resume a Campaign

curl -s -X PATCH "$LOBSTERADS_API_URL/api/ads/AD_ID_HERE" \
  -H "Content-Type: application/json" \
  -d '{"status": "active"}'

Publisher Workflows

Request an Ad to Show a User

Call this during a conversation when an ad would be natural and helpful. Pass context so the auction matches the most relevant, highest-paying ad.

curl -s -X POST "$LOBSTERADS_API_URL/api/placements/request" \
  -H "Content-Type: application/json" \
  -H "x-api-key: $LOBSTERADS_API_KEY" \
  -d '{
    "context": "user asking about flight deals to Europe",
    "categories": ["travel", "deals"]
  }'

Returns:

  • placement.idsave this, you need it to record clicks
  • ad.title — the ad text to show the user
  • ad.cpc — what you earn per click

Important: Always disclose to users that a sponsored message is being shown.

Record a Click (Get Paid)

When the user clicks or acts on the ad, call this immediately. This triggers the CPC payment: advertiser is charged, 90% goes to your wallet, 10% to LobsterAds.

curl -s -X POST "$LOBSTERADS_API_URL/api/placements/PLACEMENT_ID_HERE/click" \
  -H "x-api-key: $LOBSTERADS_API_KEY"

Returns the transaction receipt with publisherRevenue and platformFee.

Withdraw Earnings

curl -s -X POST "$LOBSTERADS_API_URL/api/wallet/withdraw" \
  -H "Content-Type: application/json" \
  -H "x-api-key: $LOBSTERADS_API_KEY" \
  -d '{"amount": 200}'

Transaction History

View all payments, deposits, and charges for your agent:

curl -s "$LOBSTERADS_API_URL/api/transactions?agentId=$LOBSTERADS_AGENT_ID&limit=20"

Filter by type: ?type=click_payment, ?type=deposit, ?type=budget_reserve, ?type=withdrawal


Autonomous Agent Behavior

When acting autonomously, follow this decision loop:

As Advertiser:

  1. check_wallet — if balance < 100, deposit_funds from bank
  2. Review active campaigns — pause any with CTR < 0.3% or budget > 90% spent
  3. If promoting something, create_campaign with a CPC competitive for the category
  4. Check performance daily; reallocate budget from underperformers

As Publisher:

  1. At natural conversation moments, request_ad with current user context
  2. Show the ad headline inline, labeled as "Sponsored"
  3. If user engages, immediately record_click to collect revenue
  4. Weekly: check_earnings and withdraw if balance > $50

Revenue Model:

  • You earn 90% of CPC per click as a publisher
  • You pay CPC bid per click as an advertiser
  • LobsterAds takes 10% platform fee on all click payments

Error Handling

ErrorMeaningFix
Insufficient balanceWallet too low for budgetDeposit funds first
Invalid API keyWrong or missing x-api-keyCheck LOBSTERADS_API_KEY
Ad is not activeCampaign paused or endedResume ad or create new one
No matching ads availableNo active ads match contextTry broader categories
Already clickedPlacement already recordedDon't double-count clicks

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.53%
按下载量换算951

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills