← Back to Skills Marketplace
manu-xmint

lobstercash

by Manuel Hidalgo · GitHub ↗ · v0.0.14 · MIT-0
cross-platform ✓ Security Clean
339
Downloads
1
Stars
0
Active Installs
10
Versions
Install in OpenClaw
/install lobstercash
Description
Use this skill when the user wants to spend money, make purchases, send crypto, pay for APIs, browse websites for shopping, complete checkout, or manage an A...
README (SKILL.md)

Lobster Cash CLI Skill

The Lobster Cash CLI (lobstercash) gives AI agents payment tools — a blockchain wallet, virtual cards for buying anything online, cloud browser automation for browsing sites and completing checkout, and x402 protocol support for paying APIs — all with human approval in the loop. Use lobstercash \x3Ccommand> --help for full flag details on any command.

Installation

Install globally:

npm install -g @crossmint/lobster-cli

After installation, all commands are available via the lobstercash binary.

Steps to use this skill

1. Version check (automatic)

The CLI automatically checks for updates on every API call. If an update notice appears in the command output, tell the user and offer to run npm update -g @crossmint/lobster-cli. If the notice says the update is required, you must also update the skill from https://www.lobster.cash/install before continuing. Do not run separate version-check commands.

2. Select lobstercash agent to use

Every lobstercash command operates on the active agent. Before doing anything else, make sure the right agent is selected.

lobstercash agents list

Then follow this decision tree:

  1. You see yourself in the list and it says (active) → You're good. Move on.
  2. You see yourself in the list but it's NOT active → Run lobstercash agents set-active \x3CagentId> with the matching ID, then move on.
  3. No agent matches you (or the list is empty) → Register a new one. Read the agents reference for how to register one.

How to recognize yourself: Match by name. If you are Claude Code, look for an agent named "Claude Code" or similar. Same for Cursor, Codex, Gemini, etc. If you aren't sure, ask the user which agent to use.

3. Route based on the user's intent

Determine which scenario applies and follow the corresponding section:

  • A) Buy something online (product, subscription, domain, service — always browser-automated) → Buy something online
  • B) Pay for a paid API endpoint (x402 protocol) → Pay an API with x402
  • C) Anything else (check balance, send crypto, view status, link wallet, browse examples) → Other actions

A) Buy something online

Use when the user wants to purchase a product, subscription, domain, or any item from an online store. Purchases are always browser-automated via purchase run — Browser Use navigates the merchant's site, fills the checkout form, and stops at final review (or submits, when explicitly authorized). No manual checkout path.

The flow is: discover the real product and price first, then size a virtual card to that price (or reuse an existing one), then run the automated checkout.

Step 1: Gather info from the conversation

Check what you already know from prior turns before asking:

  • shipping address
  • contact email
  • phone (if the merchant might require it)
  • product preferences (size, color, brand, quantity, exclusions)

Only ask the user for fields you don't already have. If they say a field isn't needed (e.g. "no phone" or "digital product, no address"), believe them and skip it. Never re-ask for info already in the conversation.

Step 2: Discover the product and price (purchase explore)

Pack everything into one natural-language --description and run explore. Share the live view URL with the user so they can watch.

lobstercash purchase explore \
  --description "\x3Cproduct, merchant or URL, shipping address, email, preferences>" \
  --merchant-country \x3CXX>

Handle the response:

  • completed → record exploreId and the discovered total, move on to Step 3.
  • needs_user_input → ask the user the returned question, resume with --explore-id \x3Cid> --answer "...".
  • running → re-poll with --explore-id \x3Cid>.

Never invent product URLs or category paths from training data. Explore navigates the merchant's UI for you — that's the whole point. If the user didn't specify a merchant, do a web search first to ground the description in a real one (e.g. "best running socks to buy online" or "running socks site:nike.com").

For full flag list, description-writing guidance, resume/poll syntax, and output status definitions, see purchase reference.

Step 3: Check for an existing usable card (fork)

Before creating a new card, list current cards and look for one that already covers this purchase.

lobstercash cards list

Note: Subscription / recurring cards are coming soon — for now every card is single-use. The matching rules below already account for this; period-based matching will become relevant once subscriptions ship.

Each card (order intent) carries these fields you can compare against:

  • phase — only active is usable
  • mandates[type=maxAmount].value — the spending cap (in details.currency, default USD)
  • mandates[type=maxAmount].details.period — currently always absent (single-use). Will be weekly | monthly | yearly when subscriptions launch.
  • mandates[type=description].value — what the user approved the card for (e.g. "AWS credits", "RHCP enamel pins")
  • mandates[type=prompt].value — original natural-language request (richer context than description)
  • mandates[type=consumer].details.email — consumer email scope (only matters if multi-user)

Fields NOT to rely on:

  • Remaining balancecards list only exposes the limit, not how much has been spent. Once subscription cards ship we won't be able to tell if this period's budget is already drained; trust the limit and let the merchant decline if exceeded.
  • Whether the card has already been charged — single-use cards can't be reused once they've been charged successfully, but cards list doesn't expose charge history. If the card looks unused (no purchase you initiated against it), assume it's available; otherwise request a new one.
  • agentId / paymentMethodId — internal bindings, not user-facing match signals.

A card is usable for this purchase when all of the following are true:

  1. phase === active
  2. maxAmount.value >= rounded total (rounded up to the nearest $5)
  3. maxAmount.details.currency matches the purchase currency (typically USD)
  4. The card hasn't already been used. Today every card is single-use, so a card you (or a previous turn) already charged successfully is no longer usable. (Coming soon: when subscription cards launch, maxAmount.details.period will need to match the requested cadence — single-use purchase → no period; recurring purchase → same period.)
  5. description (and prompt if present) is semantically compatible with the purchase. The user approved the card for a specific purpose — do not reuse a card whose description targets a different merchant or product category. Example: an existing "AWS credits" card must not be reused for "RHCP enamel pins". A generic description like "online shopping" can cover broader purchases — use judgment.

Fork:

  • Match found → skip Step 3b and Step 4. Reuse its card-id and jump straight to Step 5. Tell the user briefly: "Reusing your existing $X card for [description]."
  • No match → continue to Step 3b.

See cards reference for the full cards list output format and field semantics.

Step 3b: Request a new virtual card sized to the discovered total

Round the discovered total up to the nearest $5 so a small price drift at checkout doesn't decline the card (e.g. $47.23 → $50, $31.75 → $35). Tell the user the rounded amount and why.

lobstercash cards request --amount \x3Crounded> --description "\x3Cshort product name>"

Cards are currently single-use only. Subscription / recurring cards are coming soon — when they ship you'll be able to add --period \x3Cweekly|monthly|yearly> for recurring purchases. Until then, omit --period (or rely on the default) and request a fresh card per purchase.

This command bundles wallet setup if needed. See cards request reference for output format.

Step 4: Get user approval

The cards request command outputs an approvalUrl. Show it to the user:

To create this card I need your approval. Open this link:

[approvalUrl]

Come back here when you've approved it.

Do not proceed until the user confirms they approved. Do not poll. After they confirm, run lobstercash cards list once to verify the new card is active, then continue.

Step 5: Complete the purchase (purchase run)

Reuse the explore session — the browser is already parked on the cart, so the purchase agent picks up immediately without re-searching.

lobstercash purchase run \
  --card-id \x3Ccard-id> \
  --explore-id \x3Cexplore-id> \
  --description "\x3Csame description as explore>" \
  --max-total \x3Crounded>

Share the live view URL with the user so they can watch the checkout, especially before the final-review screen.

Default --submit-policy stop-before-submit stops at the final review screen so the user can confirm via the live view URL before the order is placed. Only pass --submit-policy submit-if-within-mandate when the user has explicitly authorized final submission.

Handle the response the same way as explore: completed → done; needs_user_input → ask and resume with --purchase-id \x3Cid> --answer "..."; running → re-poll with --purchase-id \x3Cid>.

For all run flags (--constraint, --shipping-json, --contact-json, --submit-policy), the single-phase fallback (no --explore-id), and local dev-mock-card testing, see purchase reference.


B) Pay an API with x402

Use when the user wants to call a paid API endpoint that uses the x402 payment protocol. The CLI handles the payment negotiation automatically: the server returns HTTP 402, the CLI pays with USDC from the agent wallet, and the server returns the content.

Step 1: Ensure the wallet has funds

lobstercash status

Route based on the result:

  • Wallet configured + has enough funds → proceed to step 2.
  • Wallet configured + insufficient funds → run lobstercash crypto request --amount \x3Cneeded> --description "\x3Cdescription>" to top up, show the approval URL, wait for user confirmation, then proceed.
  • Wallet not configured → run lobstercash crypto request --amount \x3Cneeded> --description "\x3Cdescription>" (bundles wallet creation + funding). Show the approval URL, wait for user confirmation, verify with lobstercash status, then proceed.

The --description must explain what the agent will spend the funds on — derive it from the user's task, not generic filler like "top up wallet".

See crypto request reference for the full crypto request flow.

Step 2: Fetch the paid endpoint

lobstercash crypto x402 fetch \x3Curl>

For POST requests add --json '{"key": "value"}'. For custom headers add --header "Authorization: Bearer \x3Ctoken>".

Step 3: Report the result

Report what the API returned (the body field), not the payment mechanics. Only mention the payment if the user asks.

If the fetch fails, add --debug and run again. See x402 reference for output format and common failures.


C) Other actions

For everything else — checking balances, sending crypto, viewing wallet status, linking a wallet, or browsing examples — use the matching command from the Quick Reference below and read the corresponding reference file for details.

Run the command, report its output. For read-only commands (crypto balance, status, examples), execute them directly and report what they say. Do not pre-check status and construct your own summary — the CLI output already handles unconfigured states with clear messaging. If a command fails with exit code 2 (wallet not set up), tell the user and offer to run lobstercash setup or the appropriate setup-bundling command.

Common actions:

  • Check balance: lobstercash crypto balancebalance reference
  • Send tokens: lobstercash crypto send --to \x3Caddr> --amount \x3Cn> --token usdcsend reference
  • View wallet status: lobstercash statusstatus reference
  • Browse examples: lobstercash examplesexamples reference
  • Link wallet / configure agent (setup only): lobstercash setupsetup reference. Use when the user says "configure", "set up", "link wallet", or similar — and isn't trying to make a purchase.
  • Sign/submit a transaction: lobstercash crypto tx createtx reference

For crypto operations (crypto send, crypto tx create), always run lobstercash status first to confirm the wallet is configured and has sufficient funds. If not, use lobstercash crypto request --amount \x3Cneeded> --description "\x3Cdescription>" to fund it — see crypto request reference.

Quick Reference

lobstercash agents register --name "\x3Cname>" --description "\x3Cdesc>" --image-url "\x3Curl>"  # register a new agent
lobstercash agents list                                          # list all agents
lobstercash agents set-active \x3CagentId>                          # set active agent
lobstercash examples                                             # browse working examples
lobstercash status                                               # check status & readiness & wallet address
lobstercash setup                                                # link agent to wallet (no purchase needed)
lobstercash crypto balance                                       # check balances
lobstercash crypto send --to \x3Caddr> --amount \x3Cn> --token usdc    # send tokens
lobstercash crypto x402 fetch \x3Curl>                              # pay for API
lobstercash crypto request --amount \x3Cn> --description "\x3Cdesc>"    # request crypto funding / top up (bundles wallet setup)
lobstercash crypto tx create|approve|status                      # low-level transaction management
lobstercash cards request --amount \x3Cn> --description "\x3Cdesc>"     # request virtual card (single-use; subscriptions/--period coming soon)
lobstercash cards list                                           # list cards (includes card-id, phase, mandates) — used in Step 3 of the buy flow to check for a reusable card
lobstercash purchase explore --description "\x3C...>" --merchant-country \x3CXX>                        # discover product + price (Step 2 of buy flow)
lobstercash purchase run --card-id \x3Cid> --explore-id \x3Cid> --description "\x3C...>" --max-total \x3Cn>   # automated browser checkout (Step 5 of buy flow)
lobstercash cards reveal --card-id \x3Cid> --merchant-name "..." --merchant-url "https://..." --merchant-country US  # checkout credentials (manual sites only — not part of the standard buy flow)

Output Contract

  • All commands produce human-readable output to stdout.
  • Errors go to stderr as plain text.
  • Exit 0 = success. Exit 1 = unexpected error. Exit 2 = wallet not set up (use cards request or crypto request to set up).

Decision Tree

  • Read examples if the user wants to browse working examples, or has no specific task yet
  • Read status if the user asks about agent status or payment readiness
  • Read balance if the user wants to check token balances
  • Read purchase if the user wants to buy something online — full flag reference, single-phase fallback, dev-mock-card, description-writing tips, and resume/poll syntax
  • Read cards request if the user wants to create a new virtual card for a purchase (Step 3b of the buy flow)
  • Read crypto request if the user wants to request USDC, top up their wallet, or fund a crypto operation
  • Read cards if the user needs to list existing cards or check whether one can be reused for a purchase (Step 3 of the buy flow)
  • Read send if the user wants to send tokens to an address (Crypto Path)
  • Read x402 if the user wants to pay for an API via x402 protocol (Crypto Path)
  • Read tx if the user needs to sign or submit a transaction from an external tool (Crypto Path)
  • Read setup if the user wants to link the agent to a wallet without making a purchase
  • Read agents if the user wants to register, list, or set the active agent

Anti-Patterns

  • Running crypto commands without checking status first: Always run lobstercash status before crypto send, crypto x402 fetch, or crypto tx create. If the wallet isn't configured or has insufficient funds, the command will fail with a confusing error. Check first, fund if needed, then execute.
  • Running setup when the user wants to buy something: If the user wants to make a purchase, don't run setup first — use cards request or crypto request which bundle setup automatically. Only use lobstercash setup when the user explicitly wants to link the agent to their wallet without buying anything.
  • Re-running setup when the agent is already configured: If lobstercash status shows the wallet is already configured, do not generate a new setup session. The existing configuration is valid. Only start a fresh setup if the user explicitly tells you their current configuration is broken and needs to be regenerated.
  • Asking the user for info the CLI can fetch: Check balance before sending. Check status before acting. Read command output before asking questions.
  • Running write commands in loops: One attempt, read the result, then decide. Read operations (crypto balance, status, examples) are idempotent and safe to repeat. Write operations (crypto send, cards request) are not.
  • Ignoring terminal status: A pending transaction is not a success. All write commands now wait for on-chain confirmation by default.
  • Polling for HITL approval: When a command returns an approval URL, the user must tell you they approved. Do not auto-poll.
  • Running commands before registering an agent: Always ensure an agent exists via lobstercash agents list before running any other command. If you need to work with a different agent, use lobstercash agents set-active.
  • Asking the user which chain to use: Agents default to Base silently. Do not ask "which chain do you want?" at registration — just register on Base. Only pass --network solana if the user has explicitly told you they need Solana, or when the context clearly implies the agent must operate on Solana (e.g. they already hold USDC on Solana, or the integration they want is Solana-only). Chain is fixed per agent; switching later means registering a new one.
  • Recommending cards for crypto-only integrations: If the integration only uses crypto, don't suggest a virtual card.
  • Requiring USDC for card-supported integrations: Virtual cards are backed by credit cards, not USDC. Don't tell the user to "add funds" when the integration accepts cards.
  • Treating x402/send/tx as separate user flows: They all go through the same Crypto Path. The only split is credit card vs crypto.
  • Suggesting crypto request or cards request when the user just wants to connect: If the user wants to check balance, run a crypto command, or simply link their wallet — without topping up or creating a card — guide them through lobstercash setup first. Don't jump to crypto request or cards request unless the user actually wants to fund the wallet or make a purchase.
  • Jumping to readiness checks before showing options: Show what's available first (via examples), then check payment readiness only when the user wants to try one.
  • Assuming an integration's payment method: Never guess whether a flow uses cards or crypto. Run lobstercash status and read the payment methods output before choosing a path.
  • Hallucinating product URLs or paths: Never guess URLs beyond the root domain — /w/socks, /category/socks, /shop/socks are all guesses, and URL structures change. Don't bake guessed paths into the purchase explore --description. Either give explore the merchant homepage (e.g. nike.com) and let Browser Use navigate the site's own UI, or ground the description with a real URL pulled from web search results.
  • Placing orders without user confirmation: Don't pass --submit-policy submit-if-within-mandate to purchase run unless the user has explicitly authorized final submission. The default stop-before-submit is correct: it stops at the final review screen so the user can confirm via the live view URL before the order is placed.
  • Skipping purchase explore and going straight to purchase run: Always discover the real product and price first so you can size the card to the actual total. The single-phase purchase run fallback (no --explore-id) only applies when the user has already given you the exact price and a real merchant URL — see purchase reference.
  • Requesting a new card without checking cards list first: Always run lobstercash cards list after purchase explore and check whether an active card already covers this purchase (matching amount, currency, period, and purpose — see Section A Step 3). Reusing a usable card avoids spamming the user with another approval link.
  • Reusing a card whose description doesn't fit the purchase: The user approved each card for a specific purpose. Don't reuse an "AWS credits" card to buy enamel pins — request a new card scoped to the new purpose instead.
  • Forgetting to share the live view URL: Both purchase explore and purchase run return a live view URL. Always pass it to the user so they can watch the browser, especially before they confirm a final-review screen or answer a needs_user_input prompt.
  • Guessing answers to needs_user_input: When purchase explore or purchase run returns needs_user_input, the agent has reached a required choice it can't make on its own (size, paid shipping speed, missing address field, etc.). Ask the user with the returned question and options, then resume the same session with --explore-id / --purchase-id and --answer. Never invent an answer.
Usage Guidance
This skill appears coherent for payment and checkout tasks, but it operates on highly sensitive resources (virtual card numbers, credit-card-backed approvals, signing transactions). Before installing or using it: 1) Verify the npm package owner (@crossmint) and examine the package on the npm registry; 2) Confirm the vendor domain (lobster.cash) is legitimate and review their install/update page before running any downloads; 3) Be prepared to open approval URLs yourself for any card or funding operation and never paste private keys into the chat — the SKILL.md says the CLI manages keys for you; 4) Require explicit user confirmation before any final 'submit' or send action (watch for the submit-policy flags), and consider testing on small, non-production amounts first; 5) If you need higher assurance, ask for the CLI source/release links and audit them or run it in an isolated environment.
Capability Analysis
Type: OpenClaw Skill Name: lobstercash Version: 0.0.14 The lobstercash skill bundle provides a comprehensive toolset for AI agents to manage blockchain wallets and virtual cards via the @crossmint/lobster-cli. While the skill handles high-risk financial operations and browser automation for shopping, it incorporates strict security guardrails, including mandatory human-in-the-loop (HITL) approval for all spending and funding actions. The instructions in SKILL.md and the reference files (e.g., purchase.md, cards.md) explicitly forbid the agent from automating approvals, require sharing live browser views with the user, and emphasize sensitive data handling for virtual card credentials.
Capability Tags
cryptorequires-walletcan-make-purchasescan-sign-transactionsrequires-sensitive-credentials
Capability Assessment
Purpose & Capability
The name/description (payments, purchases, virtual cards, crypto, x402, browser checkout) match the SKILL.md behavior: it instructs the agent to use the lobstercash CLI to list/register agents, request cards, request crypto, run browser-based checkout, sign and submit transactions. Required resources listed by the registry are minimal and appropriate for this purpose (no unrelated env vars or binaries declared).
Instruction Scope
The SKILL.md stays within the payment/shopping scope: it directs only lobster CLI commands, user approvals, and browser-based checkout flows. It explicitly forbids asking for private keys and encourages human approvals. One notable instruction: the CLI auto-checks for updates and the document requires updating from https://www.lobster.cash/install if an update is required — this implies downloading/executing code from a vendor URL during runtime and should be considered when deciding trust.
Install Mechanism
The skill is instruction-only (no install spec), but it requires installing an external npm package (npm install -g @crossmint/lobster-cli) per the instructions. Installing a global npm package is a common delivery for CLIs, but it executes third-party code on the user's machine. The update guidance refers to a vendor URL (lobster.cash/install) rather than only relying on the npm registry; that increases risk compared to a purely registry-based update flow and warrants verifying the package and site before installing/updating.
Credentials
No environment variables, credentials, or config paths are required by the registry metadata. The skill legitimately needs access to payment instruments and to produce approval URLs and virtual card credentials as part of its purpose; those flows require human consent per the instructions. There are no unexplained requests for unrelated secrets.
Persistence & Privilege
The skill does not request 'always: true' or any elevated persistent presence. It's instruction-only and relies on an external CLI. Autonomous invocation is allowed by default (platform standard) but the skill repeatedly emphasizes human approval before writes (card creation, funds, submit policies), limiting autonomous destructive actions.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install lobstercash
  3. After installation, invoke the skill by name or use /lobstercash
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.0.14
lobstercash 0.0.14 - Automated online purchases are now always browser-based; manual checkout no longer supported. - Checkout flow updated: discover real product/price first, then create or reuse a virtual card, then run automated checkout. - Explicit instructions to gather customer details (address, contact) only if not already known; no redundant prompts. - Step-by-step matching logic for determining if an existing single-use card can be reused for a new purchase. - Subscription/recurring cards are not yet supported, but guidance added for future compatibility.
v0.0.13
- Added a new reference for purchase flows: `references/purchase.md` - Removed the browser-specific reference: `references/browser.md` - Updated product discovery guidance: directs users to use `lobstercash purchase explore` for finding real products and calculating totals, instead of navigating with browser CLI commands - Updated Step 3 under "Buy something with a card" to describe the new explore-based purchase flow, including how to initiate it and handle user input or responses - Emphasized using live explore navigation over inventing URLs, enhancing accuracy and replicating real buyer experience
v0.0.11
lobstercash v0.0.11 - Version metadata updated to 0.0.11. - No other functional or documentation changes detected.
v0.0.10
lobstercash 0.0.10 - The virtual card "period" parameter is now optional (was required). Cards default to single-use if period is not set. - Instructions updated: only ask the user about period if the purchase is clearly recurring and no period was specified. - Version bump to 0.0.10; no functional changes to commands beyond card period flag.
v0.0.9
lobstercash 0.0.9 - Added required --period flag to `cards request` (must specify weekly/monthly/yearly; prompt user if missing). - Updated deposit flow: replaced `crypto deposit` with `crypto request` throughout, and removed legacy deposit references. - Introduced a new reference for `crypto-request` and removed outdated `deposit.md`. - Improved documentation for funding the wallet and clarified steps for virtual card creation. - Miscellaneous documentation updates to references and examples.
v0.0.8
**Lobstercash v0.0.8 changelog:** - Major update: Adds browser automation for web shopping and checkout, restructures and expands workflow steps, and modernizes card and crypto payment flows. - Added support for cloud browser automation, including browsing, product discovery, and completing real checkout flows—never guess URLs; always use real, live data. - Replaced and renamed CLI commands and help references for improved clarity: e.g., `cards request`, `crypto deposit`, better separation between card and crypto actions. - Workflow instructions are now scenario-based (online shopping, API payments, and other wallet actions), making it easier to route intents correctly. - Removed obsolete files and commands relating to previous request flows; added new references for browser actions, cards, deposit, and practical examples. - Expanded guidance on agent selection, version checking, and user approval, with references to corresponding CLI commands and output formats.
v0.0.4
lobstercash v0.0.4 introduces version checks, agent management, and new references. - Added explicit version metadata and a Preflight step to check for up-to-date CLI and skill instructions before running commands. - Introduced agent management flow: always check for existing agents and register a new one with a unique name before wallet/payment actions. - New documentation files: SKILL.md (detailed instructions and metadata) and references/agents.md (agent management reference). - Removed obsolete Skill.md (lowercase) file. - Updated all command flows to remove required --agent-id flags in most places; now agent context is set separately. - Improved upgrade UX—now prompts user and offers one-liner updates if CLI or skill is outdated.
v0.0.3
- No user-facing changes or updates in this release. - No file or documentation changes detected from prior version (0.0.2 to 0.0.3).
v0.0.2
- Documentation fix: Installation instructions updated to remove incorrect version pin on the npx install command. - No behavioral or CLI changes; usage patterns and flows remain the same.
v0.0.1
Major update: Expanded payment coverage, improved user flows, and enhanced CLI guidance. - Now supports spending, wallet management, virtual cards, crypto payments, API payments (x402), and on-chain transactions—all with secure guardrails and human approval. - Unified all spending and payment intents ("buy", "pay", "send", "top up", etc.) under one streamlined process, regardless of mention of "lobster", "crypto", or "Solana". - Clear, step-by-step CLI instructions for each user intent: discover/browse, check status/balances, buy/pay, link agent wallet, or top up funds. - Improved automatic routing: selects correct payment method (credit card or crypto) based on store output and wallet status. - New human-in-the-loop consent steps and more robust wallet/card setup processes. - Updated skill description for broader intent detection and better user guidance.
Metadata
Slug lobstercash
Version 0.0.14
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 10
Frequently Asked Questions

What is lobstercash?

Use this skill when the user wants to spend money, make purchases, send crypto, pay for APIs, browse websites for shopping, complete checkout, or manage an A... It is an AI Agent Skill for Claude Code / OpenClaw, with 339 downloads so far.

How do I install lobstercash?

Run "/install lobstercash" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is lobstercash free?

Yes, lobstercash is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does lobstercash support?

lobstercash is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created lobstercash?

It is built and maintained by Manuel Hidalgo (@manu-xmint); the current version is v0.0.14.

💬 Comments