agentsclimarketplace

Tdm daos agent

Skill ToDealMarket/tdm-daos-agent

Handle the current public TDM DaOS payment contract and recovery guidance. Use when a TDM service returns HTTP 402 from POST /authorize, when the user needs help with Session Gas Tank behavior, or when the user should be guided toward tdm connect, tdm fuel, tdm sweep, or tdm cashout.From its SKILL.md

Install
npx -y skills add ToDealMarket/tdm-daos-agent

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 9 stars9 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.
  • runs commandsInstructs the agent to run 8 commands, including `tdm connect` and 7 more.

SKILL.md

4.3 KB, 961 tokens by cl100k_base, as published. Nobody here has run it

TDM DaOS Agent

TDM DaOS Agent is the agent guidance layer inside TDM DaOS. Treat the TDM SDK npm package and Contour Runtime as the canonical product surface; this skill only explains agent-facing payment interpretation, recovery, and safe next actions.

Use this skill for

  • HTTP 402 responses from POST /authorize
  • billingMode, settlementMode, paymentOptions, and retryEndpoint
  • current JS helper names such as makePayable(...), createFetchHookClient(...), createAuthorizeClient(...), createGatewayClients(...), createSessionTanksClient(...), and createCheckoutClient(...)
  • framework-mode charge helpers: charge(...), chargeFetchHandler(...), chargeExpressHandler(...), chargeHonoHandler(...), chargeNextHandler(...), chargeElysiaHandler(...), chargeDenoHandler(...)
  • session recovery using tdm_get_session_state
  • runtime discovery using tdm_capability_list
  • plugin, contour, budget, and gated memory guidance through current MCP tools
  • session_gas_tank guidance
  • sweep vs cashout clarification
  • agent vault command guidance
  • agent-first paid execution guidance for tools, APIs, routes, and runtime actions

Read only what you need

Hard rules

  1. Do not invent undocumented payment fields.
  2. Prefer exact current fields: allowed, authorizationId, charged, balanceMinor, priceMinor, billingMode, settlementMode, paymentOptions, and retryEndpoint.
  3. Use tdm_capability_list to discover the MCP surface when available.
  4. Use tdm_get_session_state before asking the user for money.
  5. If the state is UNINITIALIZED, instruct the user to run tdm connect.
  6. If the state is DEPLETED and dust is available, prefer tdm sweep.
  7. If the state is DEPLETED and no dust is available, suggest tdm fuel.
  8. Do not describe tdm sweep as a cashout.
  9. Do not suggest tdm cashout as a way to satisfy an active payment challenge.

Recommended operator commands

  • tdm vault create <name> [--use]
  • tdm vault use <name|default>
  • tdm connect
  • tdm login --gateway https://tdm.todealmarket.com (advanced/manual only)
  • tdm fuel --amount <usd> --yes
  • tdm sweep --network solana --resume-burner --deposit-address <solana_address>
  • tdm sweep --network solana --resume-burner --target-agent <name>
  • tdm sweep --network base --project-id <walletconnect_project_id> --treasury <base_address>
  • tdm sweep status
  • tdm cashout
  • tdm agent list
  • tdm agent boot <name>
  • tdm agent status <name>
  • tdm mcp
  • tdm mcp serve

Named vault guidance

  • Prefer one named vault per business contour when operators manage many agents.
  • For larger fleets, prefer multiple named vaults over one giant vault.
  • If the operator uses named vaults, respect their active vault or explicit --vault <name> choice.

Product framing guidance

  • Treat TDM as DaOS-first: Contour Runtime + TDM Hub + AgentPay/Gateway.
  • Treat AgentPay as guidance inside DaOS, not as the whole product.
  • Default mental model: price a protected call, authorize it, then continue execution.
  • Mention file, note, or content unlock flows only as an additional layer on top of the core agent/runtime payment surface.

Bundled helpers

What ships with it: 12 files

22.8 KB alongside SKILL.md, 2 of them executable

agents/

scripts/

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.