deploy-ingen-test

deploy-ingen-test is a command for Claude Code from Insight-Services-APAC/ingenious. It costs 0 tokens per session (940 once invoked), scanned A, original, MIT.

A deployment command for sending the SoCa or Prompt Tuner applications to Microsoft Azure, a cloud hosting platform, in the ingen-test resource group.

In plain words
What is it for?
Use it to deploy either application or both, create only missing Azure resources, and configure the specified Static Web Apps, Container Apps, and registry resources.
Why use it?
It standardizes which cloud resources, tags, and low-cost service tiers are used for these test deployments.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: positional $N argument.

Not installable on its own: it reads a path above its own folder, which only exists inside its repository. The line is cd ../backend.

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

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 deploy-ingen-test

README.md
[![agentmods](https://agentmods.dev/badge/commands/insight-services-apac/ingenious/deploy-ingen-test.svg)](https://agentmods.dev/commands/insight-services-apac/ingenious/deploy-ingen-test)
Your own site
<a href="https://agentmods.dev/commands/insight-services-apac/ingenious/deploy-ingen-test"><img src="https://agentmods.dev/badge/commands/insight-services-apac/ingenious/deploy-ingen-test.svg" alt="Measured on agentmods" 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 940 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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.00940
Opus 5 $0.00000 $0.00470
Sonnet 5 $0.00000 $0.00188
Haiku 4.5 $0.00000 $0.00094

Measured yesterday against content hash 687190a35a37, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

deploy-ingen-test scanned grade A with 1 finding 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 yesterday.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl https://soca-backend.kindsea-9799773a.australiaeast.azurecontainerapps.io/health
.claude/commands/infra/deploy-ingen-test.md · 96 lines

How it starts

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

Deploy to ingen-test Resource Group

Deploy SoCa or Prompt Tuner applications to Azure using the ingen-test resource group.

Arguments

  • $ARGUMENTS - Application to deploy: soca, prompt-tuner, or all (required)

Instructions

  1. Determine which application to deploy from $ARGUMENTS:

    • soca - Deploy SoCa application only
    • prompt-tuner - Deploy Prompt Tuner application only
    • all - Deploy both applications
  2. Resource Group: Always use ingen-test. Do NOT create or use any other resource group.

  3. Resource Tagging: Apply appropriate tags to all resources:

    • For SoCa: app=soca
    • For Prompt Tuner: app=prompt-tuner
  4. Provisioning Rules:

    • Only provision resources if they don't already exist
    • Use the CHEAPEST tier available for all resources:
      • Static Web Apps: Free tier
      • Container Apps: Consumption plan (minReplicas=1, maxReplicas=3)
      • Container Apps Environment: Consumption workload profile
      • Container Registry: Basic tier
  5. Deployment Steps:

For SoCa:

# Check if resources exist
az staticwebapp show --name soca-frontend --resource-group ingen-test 2>/dev/null || \
  az staticwebapp create --name soca-frontend --resource-group ingen-test --location "Australia East" --sku Free --tags app=soca

# Build and deploy frontend
cd soca/frontend
npm run build
SOCA_TOKEN=$(az staticwebapp secrets list --name soca-frontend --resource-group ingen-test --query "properties.apiKey" -o tsv)
npx @azure/static-web-apps-cli deploy ./dist --deployment-token "$SOCA_TOKEN" --env production

# Deploy backend to Container Apps
cd ../backend
az containerapp up --name soca-backend --resource-group ingen-test --environment soca-env --source . --tags app=soca
az containerapp update --name soca-backend --resource-group ingen-test --min-replicas 1 --max-replicas 3

For Prompt Tuner:

# Check if resources exist
az staticwebapp show --name prompt-tuner-frontend --resource-group ingen-test 2>/dev/null || \
  az staticwebapp create --name prompt-tuner-frontend --resource-group ingen-test --location "Australia East" --sku Free --tags app=prompt-tuner

# Build and deploy frontend
cd prompt-tuner/frontend
npm run build
PT_TOKEN=$(az staticwebapp secrets list --name prompt-tuner-frontend --resource-group ingen-test --query "properties.apiKey" -o tsv)
npx @azure/static-web-apps-cli deploy ./dist --deployment-token "$PT_TOKEN" --env production

# Deploy backend to Container Apps
cd ../backend
az containerapp up --name prompttuner-backend --resource-group ingen-test --environment soca-env --source . --tags app=prompt-tuner
az containerapp update --name prompttuner-backend --resource-group ingen-test --min-replicas 1 --max-replicas 3

Read the full file on GitHub · 96 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. yesterday First seen · 96 lines · 0 tokens per session scan A 687190a35a37

Subscribe to this mod's changes

deploy-ingen-test is a command published in the GitHub repository Insight-Services-APAC/ingenious (24 stars, last pushed 7mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 940 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.