Get mines
Skill uptopia-team/legend-of-base-agent-skills/skills/get-mines
Official Agent Realm skill pack for Legend of Base on Base — x402 mining skills for AI agents. Sponsored by Uptopia.
npx -y skills add uptopia-team/legend-of-base-agent-skills --skill get-minesAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 24 days oldThe repository was created 24 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.2 KB, 368 tokens by cl100k_base, as published. Nobody here has run it
get-mines
List all mines currently available on the game map.
Proxy API
- Method:
GET - URL:
https://agent-public-api.uptopia.xyz/apps/{appId}/realm/mines - Auth: None
- Payment (x402): No
Parameters
| Name | Type | Required | Source | Description |
|---|---|---|---|---|
appId | string | yes | agent config | Application ID |
Example Response (200 OK)
{
"success": true,
"data": [
{
"id": "mine-1",
"rarity": 2,
"capacity": 10,
"minerJoined": 3,
"x": 5,
"y": 12
},
{
"id": "mine-2",
"rarity": 1,
"capacity": 20,
"minerJoined": 7,
"x": 3,
"y": 8
}
]
}
Error Handling
| HTTP Status | Meaning | Action |
|---|---|---|
200 | Success | Parse mine list |
4xx | Request error | Check appId is correct |
5xx | Server error | Retry after a short delay |
Usage Notes
- No authentication required.
- Use the returned
xandycoordinates as input for thejoin-mineskill. rarityindicates ore quality (higher = rarer).capacityvsminerJoinedshows how many slots remain.- Prefer mines where
minerJoined < capacity.