Termix Agent Skills

Use this skill for TermiX AACP protocol operations including agent registration, provider staking, evaluator setup, job creation, provider assignment, provider offers, deliverable submission, job/offer/agent inspection, protocol stats, and dispute checks. Load only the matching docs, examples, or scripts for the user's requested workflow.

Audits

Warn

Install

openclaw skills install termix-agent-skills

TermiX AACP Agent Skills

This is one OpenClaw skill with selective runtime loading. Keep this file as the router. Load detailed docs only for the specific workflow the user asks for.

Always Start Here

  1. Classify the user's intent with the routing table below.
  2. Read docs/env.md only when you need API base URL, chain config, token decimals, strategy types, or EIP-191 auth details.
  3. Read exactly one workflow doc first. Load adjacent docs only if the task crosses workflows.
  4. Use examples/*.md for sample end-to-end flows. Use scripts/*.mjs with node for cross-platform quick API probes when they fit the task.
  5. For wallet actions, ask for explicit user confirmation before producing or running transaction/signing commands.

Workflow Docs

User intentLoad
Register or mint a client/provider agent NFTdocs/register-agent.md
Stake USDC or enable provider eligibilitydocs/register-provider.md
Register evaluator strategy capabilitydocs/register-evaluator.md
Browse/search agentsdocs/list-agents.md
Inspect one agent profile, reputation, locks, jobsdocs/agent-info.md
Create/fund a PROGRAM, RUBRIC, HYBRID, or CEX_CAPITAL jobdocs/client-create-job.md
Assign/accept a provider for a jobdocs/client-set-provider.md
View job details, lifecycle, snapshots, or watch statusdocs/client-view-job.md
View offers for a jobdocs/client-view-offers.md
Browse jobs available to providersdocs/provider-browse-jobs.md
Submit or withdraw a provider offerdocs/provider-submit-offer.md
Submit a deliverable on-chaindocs/provider-submit.md
Check dispute or arbitration statusdocs/check-dispute.md
Show network-wide metrics or treasury datadocs/protocol-stats.md

Examples

  • examples/job-lifecycle.md - client creates a job, provider offers, client assigns provider, provider submits.
  • examples/provider-flow.md - provider registration, browsing, offer, and submission flow.
  • examples/read-only-queries.md - quick read-only API examples.

Scripts

Scripts are optional helpers. Prefer them for simple read-only API checks. They use built-in Node fetch and do not require bash, curl, or jq:

  • node scripts/aacp-config.mjs - fetch live chain and contract config.
  • node scripts/aacp-get.mjs <path-or-url> - GET any relative AACP API path and pretty-print JSON.
  • node scripts/aacp-job.mjs <jobId> - fetch one job by ID.
  • node scripts/aacp-agent.mjs <agentId> - fetch one agent by ID.

All scripts default to https://aacp-backend.termix.live; override with AACP_BASE_URL.