agentsclimarketplace

Number base conversion post batch

Skill bobadilla-tech/requiems-api-skills/skills/number-base-conversion-post-batch

Convert up to 50 numbers between bases in a single request. Results are returned in input order. Per-item errors are reported inline.From its SKILL.md

Install
npx -y skills add bobadilla-tech/requiems-api-skills --skill number-base-conversion-post-batch

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

One thing to look at

  • 2 stars2 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

2.2 KB, 567 tokens by cl100k_base, as published. Nobody here has run it

Endpoint

POST https://api.requiems.xyz/v1/technology/base/batch

Batch Convert Base

Convert up to 50 numbers between bases in a single request. Results are returned in input order. Per-item errors are reported inline.

Parameters

NameTypeRequiredLocationDescription
itemsarray of objectsyesbodyList of conversion requests (1–50 items).
items[].fromintegeryesbodySource base (2, 8, 10, or 16).
items[].tointegeryesbodyTarget base (2, 8, 10, or 16).
items[].valuestringyesbodyThe number as a string. Accepts optional prefixes: 0x (hex), 0b (binary), 0o (octal).

Request Example

{
  "items": [
    { "from": 10, "to": 16, "value": "255" },
    { "from": 2,  "to": 10, "value": "1111" }
  ]
}

Response Example

{
  "data": {
    "results": [
      { "from": 10, "to": 16, "input": "255",  "result": "ff" },
      { "from": 2,  "to": 10, "input": "1111", "result": "15" }
    ],
    "total": 2
  },
  "metadata": { "timestamp": "2026-01-01T00:00:00Z" }
}

Response Fields

FieldTypeDescription
resultsarrayPer-item results in input order.
results[].fromintegerThe source base used for conversion.
results[].tointegerThe target base used for conversion.
results[].inputstringThe original value as provided in the request.
results[].resultstringThe converted value in the target base (omitted on error).
results[].errorstringError message if this item failed (omitted on success).
totalintegerTotal number of items processed.

Errors

  • 422 validation_failed — The items array is missing, empty, or exceeds 50 items.
  • 400 bad_request — The request body is missing or malformed.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,629. 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.