terraform-provider-f5xc: Command for Claude Code

.claude/commands/batch-test-development.md

batch-test-development is a command for Claude Code from robinmordasiewicz/terraform-provider-f5xc. It costs 0 tokens per session (1,084 once invoked), scanned A, original, MIT.

A coordinator for creating tests for Terraform providers, which are tools that let Terraform manage external services. It divides resources into groups and assigns the groups to several test-writing agents.

In plain words
What is it for?
Use it to find Terraform resources that need tests, group them into batches, and develop those tests in parallel.
Why use it?
It reduces the manual work of identifying resources without tests and handling each test task one by one.

Command for Claude Code

Written for Claude Code: installed under .claude/. Also seen: names the TodoWrite tool.

This is robinmordasiewicz/terraform-provider-f5xc's own configuration. It tells Claude Code how to work on terraform-provider-f5xc itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything terraform-provider-f5xc configures →

Reuse

Borrowing it

Nothing to install: this file belongs to robinmordasiewicz/terraform-provider-f5xc. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/robinmordasiewicz/terraform-provider-f5xc/main/.claude/commands/batch-test-development.md
Clone the repo
git clone --depth 1 https://github.com/robinmordasiewicz/terraform-provider-f5xc

Made for: Claude Code.

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 batch-test-development

README.md
[![agentmods](https://agentmods.dev/badge/commands/robinmordasiewicz/terraform-provider-f5xc/batch-test-development/github.svg)](https://agentmods.dev/commands/robinmordasiewicz/terraform-provider-f5xc/batch-test-development)
Your own site
<a href="https://agentmods.dev/commands/robinmordasiewicz/terraform-provider-f5xc/batch-test-development"><img src="https://agentmods.dev/badge/commands/robinmordasiewicz/terraform-provider-f5xc/batch-test-development/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 batch-test-development

Your own site · 80×15
<a href="https://agentmods.dev/commands/robinmordasiewicz/terraform-provider-f5xc/batch-test-development"><img src="https://agentmods.dev/badge/commands/robinmordasiewicz/terraform-provider-f5xc/batch-test-development.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,084 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.00000 $0.01084
Opus 5 $0.00000 $0.00542
Sonnet 5 $0.00000 $0.00217
Haiku 4.5 $0.00000 $0.00108

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

Security

Grade A, and why

batch-test-development 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 9d 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.

.claude/commands/batch-test-development.md · 147 lines

How it starts

The opening of the file, as written. The whole thing — 147 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Batch Test Development Orchestrator

You are a batch orchestrator for Terraform provider test development. Your job is to delegate test development work to multiple terraform-test-developer agents running in parallel.

Input Format

The user will provide either:

  1. A list of resource names to develop tests for
  2. A pattern to match resources (e.g., "all resources without tests")
  3. A category of resources (e.g., "security resources", "load balancer resources")

Orchestration Process

Step 1: Identify Target Resources

If given a pattern or category, first identify the specific resources:

# Find resources without test files
ls internal/provider/*_resource.go | while read f; do
  base=$(basename "$f" .go)
  test_file="internal/provider/${base}_test.go"
  if [ ! -f "$test_file" ]; then
    echo "$base"
  fi
done

Step 2: Group Resources into Batches

Group resources into batches of 3-5 for parallel processing. Consider:

  • Resource complexity (simple resources can be batched more)
  • Dependencies (related resources in same batch)
  • API rate limits (spread load across batches)

Step 3: Spawn Parallel Agents

For each batch, spawn multiple terraform-test-developer agents in a SINGLE message using multiple Task tool calls:

Task(terraform-test-developer): "Develop comprehensive acceptance tests for the namespace_resource..."
Task(terraform-test-developer): "Develop comprehensive acceptance tests for the healthcheck_resource..."
Task(terraform-test-developer): "Develop comprehensive acceptance tests for the origin_pool_resource..."

CRITICAL: All Task calls for a batch MUST be in the same message to run in parallel.

Step 4: Monitor and Report

After each batch completes:

  1. Collect results from each agent
  2. Report successes and failures
  3. Document any issues requiring manual intervention
  4. Proceed to next batch

Agent Task Template

When spawning each agent, use this prompt template:

Develop comprehensive acceptance tests for the {resource_name} resource.

MANDATORY FIRST STEP: Invoke Skill(terraform-provider-testing) to load testing patterns.

Tasks:
1. Read the resource implementation: internal/provider/{resource_name}.go
2. Analyze the schema and identify all attributes
3. Create test file: internal/provider/{resource_name}_test.go
4. Implement tests following the skill patterns:
   - TestAcc{ResourceName}_basic (create, read, import)
   - TestAcc{ResourceName}_update (if mutable attributes exist)
   - TestAcc{ResourceName}_disappears (external deletion handling)
5. Use custom namespace (create f5xc_namespace.test)
6. Use modern assertions (ConfigPlanChecks, ConfigStateChecks, knownvalue)
7. Run the test locally and report results

Return a summary including:
- Test file created (path)
- Test functions implemented
- Test execution results (pass/fail)
- Any issues encountered
- Recommendations for follow-up

Read the full file on GitHub · 147 lines

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. 9d ago First seen · 147 lines · 0 tokens per session scan A 6f01684641a3

Subscribe to this mod's changes

batch-test-development is a command published in the GitHub repository robinmordasiewicz/terraform-provider-f5xc (2 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,084 tokens. 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-08-31.