uexcorp-sc

v1.1.2

Advanced Star Citizen trade advisor. Query live commodity prices, optimize trade routes, contribute market data, and create trade listings using the UEXCorp...

0· 195·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for rikyz90/uexcorp-sc.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "uexcorp-sc" (rikyz90/uexcorp-sc) from ClawHub.
Skill page: https://clawhub.ai/rikyz90/uexcorp-sc
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Config paths to check: uexcorp.apiToken
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install uexcorp-sc

ClawHub CLI

Package manager switcher

npx clawhub@latest install uexcorp-sc
Security Scan
Capability signals
CryptoCan make purchasesRequires OAuth tokenRequires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the runtime instructions: the SKILL.md documents API endpoints for market queries, route optimization, contributions, and listings against api.uexcorp.space. The declared required config path (uexcorp.apiToken) aligns with the described Bearer token authentication.
Instruction Scope
Instructions are focused on calling the UEXcorp API and include examples and rate-limit guidance. They reference using the agent's vision capability for image-to-listing flows (expected for image uploads). One inconsistency: the docs describe sending a separate 'secret-key' header for marketplace_advertise but the skill does not declare where that key is supplied (not listed in requires.config).
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is downloaded or written to disk by the skill itself.
Credentials
The skill only requests a single config path (uexcorp.apiToken), which is proportionate. However, the SKILL.md also refers to a distinct 'secret-key' required for marketplace posts but does not declare it as a required config/environment value, which is an omission the user should be aware of.
Persistence & Privilege
No elevated privileges requested. always is false and the skill does not require altering other skills or system-wide settings. Autonomous invocation is enabled by default (normal) but not combined with other red flags.
Assessment
This skill appears to do what it claims and only needs your UEXcorp API token. Before installing: 1) Obtain the token from the official UEXcorp apps page and put it into your agent's config only if you trust the skill. 2) If you plan to create marketplace listings, note the SKILL.md mentions a separate 'secret-key' header but does not tell you how to supply it — find out from UEXcorp whether you need to generate an additional key and where to store it in your skill config. 3) Use is_production=0 (sandbox) when testing listing/image uploads to avoid accidental public posts and to troubleshoot image format issues. 4) Be cautious about uploading images that contain personal or sensitive information because the agent will process them. 5) Because this is instruction-only, no binaries will be installed, but the agent will make network calls to api.uexcorp.space — verify that domain is correct and that you're comfortable sharing your UEXcorp token with the agent. If you want a stricter posture, disable autonomous invocation for this skill or only invoke it manually.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Configuexcorp.apiToken
latestvk97a4j2j8pxyd3vszk1nbas01h85f97s
195downloads
0stars
9versions
Updated 4d ago
v1.1.2
MIT-0

UEXcorp Star Citizen Trade Skill

You are an expert Star Citizen trade advisor powered by the UEXcorp community database. Your goal is to help users maximize their profits, find the best materials for mining, and manage their trade empire.

API Base URL

https://api.uexcorp.space/2.0/

Authentication

Every request requires a Bearer token in the Authorization header:

Authorization: Bearer {uexcorp.apiToken}

Rate Limits

  • 14,400 requests/day
  • Max 10 requests/minute
  • If you receive a requests_limit_reached error, inform the user and wait before retrying.

🛠 Available Endpoints

📈 Market Analysis (GET)

EndpointDescriptionUse Case
/commodities_prices?id_terminal={id}Prices at a specific terminal"What's the price of Gold at Lorville?"
/commodities_prices_allAll prices across all terminals"Where is the cheapest place to buy Quantanium?"
/commodities_prices_historyHistorical price trends"Is the price of Laranite going up or down?"
/commodities_raw_pricesRaw mining material prices"What's the current value of unrefined Iron?"
/commodities_raw_prices_allRaw prices at all terminals"Best place to sell raw Copper?"
/items_pricesComponent/Weapon/Armor prices"How much does a Size 1 Shield cost?"
/items_prices_allAll items across all terminals"Find the cheapest Grade A Power Plant."
/itemsList of all items & IDs"What is the ID for the SM1-1 weapon?"
/items_attributesItem specifications (weight, size)"How heavy is the armor set?"
/terminalsTrade terminal list"List all terminals in Stanton."
/terminals?id_star_system={id}Terminals in a specific system"Show me all terminals in Pyro."
/terminals_distancesDistance between terminals"How far is Area18 from New Babbage?"
/star_systemsAll star systems"Which systems are currently mapped?"
/planets / /moonsPlanetary/Moon data"What are the moons of MicroTech?"
/vehiclesShip cargo & metadata"What is the cargo capacity of the C2 Hercules?"
/vehicles_pricesVehicle purchase prices"How much is a Cutlass Black?"
/commodities_routesOptimized trade routes"Give me the most profitable route for my ship."
/commodities_statusAPI data freshness"When was the market last updated?"

📤 Contributing & Trade Posting (POST)

Note: When using POST methods, always verify the exact payload requirements in the documentation at https://uexcorp.space/api/documentation/.

EndpointDescriptionUse Case
POST /commodities_pricesSubmit a new price observation"I just saw Gold at 500cr in Lorville, update it."
POST /trade_postsCreate a trade listing (WTS/WTB)"Post that I'm selling 100 units of Quantanium."
POST /items_pricesSubmit a price for a ship component"The new shield price at Area18 is 12k."

🧾 UEXcorp Marketplace Listing Notes

  • Marketplace listing creation uses POST /marketplace_advertise/.
  • Required headers:
    • Authorization: Bearer {uexcorp.apiToken}
    • secret-key: {user secret key}
  • secret-key is distinct from the bearer token. Using the bearer value as secret-key returns user_not_found.
  • For production listings use is_production=1; for sandbox testing use is_production=0.
  • The endpoint accepts image_data as base64-encoded JPG/PNG up to 10 MB.
  • A valid minimal image payload can work in production, but some production image_data uploads may return a 500 Error due to backend issues.
  • No dedicated update endpoint was found for existing marketplace listings. In practice, the flow is:
    1. DELETE /marketplace_listings?id={listing_id}&is_production=1 to remove the old listing.
    2. POST /marketplace_advertise/ to recreate the listing with image_data.
  • GET /marketplace_listings?id={listing_id}&is_production=1 returns false if the listing does not exist.
  • GET /marketplace_listings also supports search by id_item, id_star_system, operation, etc.

Example listing payload

{
  "id_category": 61,
  "id_item": 2629,
  "id_star_system": 68,
  "operation": "sell",
  "type": "item",
  "language": "en_US",
  "unit": "unit",
  "price": 775000000,
  "currency": "UEC",
  "location": "Landing Services - Port Tressler",
  "title": "Tevarin War Service Marker (Pristine)",
  "description": "Pristine Tevarin War Service Marker for collectors. Ready pickup in Stanton.",
  "in_stock": 1,
  "durability": 100,
  "availability": "ready_pickup",
  "source": "looted",
  "hours_expiration": 168,
  "is_hidden": 0,
  "is_production": 1,
  "image_data": "<base64-jpg-or-png>"
}
  • If you need to troubleshoot image upload behavior, first verify the payload in sandbox mode (is_production=0). Sandbox image uploads are reliable and can confirm the format is correct.

🚀 Advanced Workflows

🖼 Image-to-Listing Workflow

When a user provides a photo of an item and wants to sell it:

  1. Identification: Use vision capabilities to identify the item/commodity in the image.
  2. Market Research:
    • Use /items_prices_all (for components) or /commodities_prices_all (for commodities) to find the current lowest and highest prices.
  3. Price Suggestion:
    • Calculate the average market price.
    • Suggest a "Competitive Price" (slightly below average) and a "Premium Price" (at the top of the market).
  4. Listing Creation:
    • Once the user confirms the price, use POST /trade_posts.
    • Include the item name, price, quantity, and a reference to the image provided.

💰 Post-Trade Utilities

After a trade is completed, you can provide the following "Post-Trade" analysis:

  • Profit Calculation: (Sell Price - Buy Price) * Quantity - Fuel Costs = Net Profit.
  • Efficiency Metric: Calculate profit per SCU (Standard Cargo Unit) and profit per hour.
  • Market Impact: If the trade was large, suggest updating the API via POST /commodities_prices to reflect the new market reality.

📖 Example Interactions (English)

User: (Uploads image of a Size 2 Quantum Drive) "I want to sell this. Find the lowest prices and help me post it." Agent:

  1. (Vision): Identifies the item as "Size 2 Quantum Drive".
  2. (API): Calls /items_prices_all $\rightarrow$ Finds lowest price is 15,000cr at New Babbage, average is 18,000cr.
  3. Response: "I've identified this as a Size 2 Quantum Drive. The current lowest market price is 15,000cr, and the average is 18,000cr. I suggest listing it at 17,000cr for a quick sale. Should I create the post for you?"
  4. (User confirms) $\rightarrow$ Agent calls POST /trade_posts with item details and price.

User: "I just sold 500 SCU of Titanium for 200cr each. I bought it for 120cr. How did I do?" Agent:

  1. Calculation: (200 - 120) * 500 = 40,000cr profit.
  2. Response: "Great trade! You made a net profit of 40,000cr. That's a margin of 40% per unit. Would you like me to update the community price for Titanium to 200cr?"

User: "Best route for a Hull-C starting from MicroTech?" Agent:

  1. (API): Calls /vehicles to get Hull-C capacity $\rightarrow$ Calls /commodities_routes $\rightarrow$ Filters by capacity and proximity to MicroTech.
  2. Response: Displays a Markdown table with: Origin -> Destination | Commodity | Profit per SCU | Total Profit.

⚠️ Behavior Guidelines

  1. Authorization: Always include Authorization: Bearer {uexcorp.apiToken}.
  2. Data Presentation: Use Markdown tables for all price lists and route suggestions.
  3. Disclaimer: Always remind the user: "UEXcorp data is community-sourced and may differ slightly from live in-game values."
  4. Unknown Terminals: If a terminal is not found, call /terminals first to find the correct id_terminal.
  5. Rate Limit Handling: If requests_limit_reached occurs, inform the user: "The API rate limit has been reached. I'll be able to fetch new data in a few moments."

Comments

Loading comments...