agentsclimarketplace

Unit conversion post batch

Skill bobadilla-tech/requiems-api-skills/skills/unit-conversion-post-batch

convert up to 50 unit conversion operations in a single request.From its SKILL.md

Install
npx -y skills add bobadilla-tech/requiems-api-skills --skill unit-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.6 KB, 653 tokens by cl100k_base, as published. Nobody here has run it

Endpoint

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

Batch Convert Units

convert up to 50 unit conversion operations in a single request.

Parameters

NameTypeRequiredLocationDescription
operationsarrayyesbodyArray of operations to convert (min: 1, max: 50).

Request Example

{
  "operations": [
    {
      "from": "kg",
      "to": "lb",
      "value": 10
    },
    {
      "from": "c",
      "to": "f",
      "value": 5
    }
 ]
}

Response Example

{
  "data": {
    "results": [
      {
        "from": "kg",
        "to": "lb",
        "success": true,
        "data": {
          "from": "kg",
          "to": "lb",
          "input": 10,
          "result": 22.046244,
          "formula": "kg × 2.204624"
        }
      },
      {
        "from": "c",
        "to": "f",
        "success": true,
        "data": {
          "from": "c",
          "to": "f",
          "input": 5,
          "result": 41,
          "formula": "°C × 9/5 + 32"
        }
      }
    ],
    "total": 2
  },
  "metadata": {
    "timestamp": "2026-05-15T21:52:05Z"
  }
}

Response Fields

FieldTypeDescription
resultsarrayList of unit conversion results returned in the same order as the input operations.
results[].fromstringSource unit used for the conversion.
results[].tostringTarget unit used for the conversion.
results[].successbooleanIndicates whether the conversion operation was successful.
results[].errorstringError message if the conversion failed. Empty when success is true.
results[].dataobjectConversion result details. Contains empty values when the conversion fails.
results[].data.fromstringSource unit.
results[].data.tostringTarget unit.
results[].data.inputnumberOriginal numeric value provided for conversion.
results[].data.resultnumberConverted numeric result.
results[].data.formulastringFormula or conversion factor used to calculate the result.
totalintegerTotal number of conversion results returned.

Errors

  • 422 validation_failed — The operations array is missing, empty, or contains more than 50 items.
  • 400 bad_request — Invalid JSON, malformed request body, or unexpected field types.

What ships with it

Read from the repository

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

Gives 0 of the 12 instructions most product growth skills give in 653 tokens

Counted across 728 of the 1,010 authors here whose files we hold, read 2026-08-07

  • Read product marketing context before asking questionsin 24 of 728, across 18 files
  • Define the ideal customer profilein 21 of 728, across 3 files
  • Document a rollback plan before deploymentin 21 of 728, across 12 files
  • Analyze the codebase to understand the productin 19 of 728, across 1 file
  • Ask clarifying questions about the value propositionin 19 of 728, across 1 file
  • Search for companies matching the criteriain 19 of 728, across 1 file
  • Look for signals of immediate needin 19 of 728, across 1 file
  • Assign a fit score from one to tenin 19 of 728, across 1 file
  • Identify the target decision-maker rolein 19 of 728, across 1 file
  • Suggest a personalized contact strategyin 19 of 728, across 1 file
  • Provide conversation starters for outreachin 19 of 728, across 1 file
  • Format results in a scannable markdown templatein 19 of 728, across 1 file

Said here and by no other author read

  • convert up to 50 unit operations per request
  • send operations array in request body
  • include from, to and value per operation

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

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.