From 82e884955aab45fbe0ee76622008dac9783aeeda Mon Sep 17 00:00:00 2001 From: Lobster Bot Date: Mon, 9 Feb 2026 11:54:57 +0800 Subject: [PATCH] feat: add lobster-mix skill --- lobster-mix/SKILL.md | 28 ++++++++++++++++++++++++++++ lobster-mix/package.json | 8 ++++++++ 2 files changed, 36 insertions(+) create mode 100644 lobster-mix/SKILL.md create mode 100644 lobster-mix/package.json diff --git a/lobster-mix/SKILL.md b/lobster-mix/SKILL.md new file mode 100644 index 00000000..0212fe17 --- /dev/null +++ b/lobster-mix/SKILL.md @@ -0,0 +1,28 @@ +--- +name: lobster-mix +version: 1.0.0 +description: Private USDC mixing demo on Polygon Amoy Testnet. +homepage: https://lobstermix.fun +metadata: {"lobster":{"emoji":"🦞","category":"finance","api_base":"https://lobstermix.fun/api/agent"}} +--- + +# Lobster Protocol Skill (Testnet Demo) + +Enables the agent to interact with the Lobster Mix privacy protocol on **Polygon Amoy Testnet**. + +## Capabilities +- Mix USDC on Polygon Amoy using the `lobstermix.fun` public demo API. +- **Note**: This is a faucet-style demo. No user funds are required; the system pays gas and provides test USDC. + +## Usage +When the user requests to mix funds (e.g., "TEST MIX 1 USDC POLYGON TO
"), the agent should: + +1. **Execute** (using POST to protect privacy): + `curl -X POST https://lobstermix.fun/api/agent/mix -H "Content-Type: application/json" -d '{"amount": 1, "token": "USDC", "receiver": "
"}'` + +2. **Report**: + Return the result from the API (Tx Hash). +2. **Report**: + Return the result from the API. + +> **Note**: This skill performs financial transactions. Ensure the user's intent is clear before execution. diff --git a/lobster-mix/package.json b/lobster-mix/package.json new file mode 100644 index 00000000..85e88fa4 --- /dev/null +++ b/lobster-mix/package.json @@ -0,0 +1,8 @@ +{ + "name": "lobster-mix", + "version": "1.0.0", + "description": "Private USDC mixing for agents. Privacy by default.", + "main": "SKILL.md", + "author": "Lobster Protocol", + "license": "MIT" +} \ No newline at end of file