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.
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.
[](https://agentmods.dev/commands/insight-services-apac/ingenious/deploy-ingen-test)<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>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.
| Model | Per session | Once 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 |
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 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, orall(required)
Instructions
-
Determine which application to deploy from
$ARGUMENTS:soca- Deploy SoCa application onlyprompt-tuner- Deploy Prompt Tuner application onlyall- Deploy both applications
-
Resource Group: Always use
ingen-test. Do NOT create or use any other resource group. -
Resource Tagging: Apply appropriate tags to all resources:
- For SoCa:
app=soca - For Prompt Tuner:
app=prompt-tuner
- For SoCa:
-
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
-
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
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.
- yesterday First seen · 96 lines · 0 tokens per session scan A 687190a35a37
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.
Other commands, from other repositories
dashboard-server-tunnel-status
Tunnel status + public URL. Runs locally, no LLM.
estimate-azure-cost
Estimate Azure resource costs and provide optimization recommendations.
estimate-gcp-cost
Estimate GCP resource costs and provide optimization recommendations.
add-api-azure
Create a new Azure Function HTTP endpoint with full integration.
add-upload-railway
Implement file upload functionality using Railway volumes or S3-compatible storage. Create upload component with drag-and-drop interface. Add Express API endpoint for file handling with multer middleware. Implement multipart/form-data parsing. Add upload progress tracking. Validate file types, sizes, and names…
scaffold-railway-nextjs
Scaffold a new Next.js 15 project optimized for Railway deployment.