random-user-post-batch

random-user-post-batch is a skill for Claude Code from bobadilla-tech/requiems-api-skills. It costs 33 tokens per session (591 once invoked), scanned A, original, MIT.

A generator that creates multiple fake user profiles in one request, with names, contact details, addresses, and avatar links.

In plain words
What is it for?
Seed development data, test lists and forms, and preview interfaces that show many users.
Why use it?
It supplies test records in bulk without using real personal data or creating each record manually.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the requiems-api-skills plugin — 127 skills shipped together

Good fit Seed development data, test lists and forms, and preview interfaces that show many users.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bobadilla-tech/requiems-api-skills/random-user-post-batch
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add bobadilla-tech/requiems-api-skills --skill random-user-post-batch
Clone the repo
git clone --depth 1 https://github.com/bobadilla-tech/requiems-api-skills

Made for: Claude Code.

Or install requiems-api-skills, the plugin that ships this one along with the rest of its 127 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for random-user-post-batch

README.md
[![agentmods](https://agentmods.dev/badge/skills/bobadilla-tech/requiems-api-skills/random-user-post-batch/github.svg)](https://agentmods.dev/skills/bobadilla-tech/requiems-api-skills/random-user-post-batch)
Your own site
<a href="https://agentmods.dev/skills/bobadilla-tech/requiems-api-skills/random-user-post-batch"><img src="https://agentmods.dev/badge/skills/bobadilla-tech/requiems-api-skills/random-user-post-batch/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for random-user-post-batch

Your own site · 80×15
<a href="https://agentmods.dev/skills/bobadilla-tech/requiems-api-skills/random-user-post-batch"><img src="https://agentmods.dev/badge/skills/bobadilla-tech/requiems-api-skills/random-user-post-batch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 591 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00033 $0.00591
Opus 5 $0.00016 $0.00296
Sonnet 5 $0.00007 $0.00118
Haiku 4.5 $0.00003 $0.00059

Measured 2d ago against content hash 0d657c09ad05, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

random-user-post-batch scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/random-user-post-batch/SKILL.md · 85 lines

What it actually says

Endpoint

POST https://requiems.xyz/v1/technology/random-user/batch

Batch Generate Users

Returns multiple randomly generated fake user profiles in a single request. Each call consumes count units of quota. Maximum 50 users per request.

Parameters

Name Type Required Location Description
count integer yes body Number of users to generate (min: 1, max: 50).

Request Example

{
  "count": 2
}

Response Example

{
  "data": {
    "results": [
      {
        "name": "Grace Lopez",
        "email": "[email protected]",
        "phone": "555-123-4567",
        "address": {
          "street": "4821 Maple Avenue",
          "city": "North Judyton",
          "state": "California",
          "zip": "94103",
          "country": "United States of America"
        },
        "avatar": "https://api.dicebear.com/9.x/identicon/svg?seed=Grace+Lopez"
      },
      {
        "name": "John Smith",
        "email": "[email protected]",
        "phone": "555-987-6543",
        "address": {
          "street": "12 Oak Street",
          "city": "Springfield",
          "state": "Illinois",
          "zip": "62701",
          "country": "United States of America"
        },
        "avatar": "https://api.dicebear.com/9.x/identicon/svg?seed=John+Smith"
      }
    ],
    "total": 2
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}

Response Fields

Field Type Description
results array Ordered list of generated user profiles. Same fields as the single-user endpoint.
total integer Number of users returned. Matches the requested count.

Errors

  • undefined 422 — count is missing, less than 1, or greater than 50
  • undefined 400 — Request body is malformed or not valid JSON
  • undefined 500 — Internal server error
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 85 lines · 33 tokens per session scan A 0d657c09ad05

Subscribe to this mod's changes

random-user-post-batch is a skill published in the GitHub repository bobadilla-tech/requiems-api-skills (2 stars, last pushed 2d ago), licensed MIT. It adds 33 tokens to every session and 591 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-08.

Related

Other skills, from other repositories

archetype-lint

This skill should be used when the user asks to "lint an archetype", "validate an archetype", "check archetype compliance", "check archetype rules compliance", or "run archetype rules". Applies 24 normative lint rules with ERROR/WARNING/INFO severity. Supports STRICT and PERMISSIVE modes. Reports violations only — it…

Cadasto/openehr-assistant-plugin · 130 tokens

speckit.tester

Test Runner & Coverage - Create test plans, write tests, report coverage.

wedabro/bro-skills · 21 tokens

speckit.uat

UAT Analyzer - Analyze manual acceptance results and process gaps from the User.

wedabro/bro-skills · 21 tokens

offensive-fuzzing

Practical offensive fuzzing methodology covering target identification, fuzzer selection (AFL++, libFuzzer, Honggfuzz, Boofuzz, syzkaller), harness writing, corpus curation, mutation strategies, coverage measurement, and crash triage. Use when setting up or running fuzz campaigns against any target: file parsers…

SnailSploit/Claude-Red · 91 tokens

create-test-plan

Analyze what changed and generate a structured test plan at .turbo/test-plans/ .md covering four escalating levels: basic functionality, complex operations, adversarial testing, and cross-cutting scenarios. Use when the user asks to "create a test plan", "plan tests", "what should I test", "generate test scenarios"…

tobihagemann/turbo · 87 tokens

agent-ready-cloudflare

Audit and improve website readiness for AI agents using the Cloudflare "Is It Agent Ready?" scanner (isitagentready.com). Covers scanning via API, interpreting results, generating implementation prompts, and fixing every check. Use when the user mentions "agent ready", "isitagentready", "AI agent scan", "agent…

fabricioctelles/skills · 158 tokens