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.
git clone --depth 1 https://github.com/nitinjain999/platform-skillsWrote 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/nitinjain999/platform-skills/keda)<a href="https://agentmods.dev/commands/nitinjain999/platform-skills/keda"><img src="https://agentmods.dev/badge/commands/nitinjain999/platform-skills/keda/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.
<a href="https://agentmods.dev/commands/nitinjain999/platform-skills/keda"><img src="https://agentmods.dev/badge/commands/nitinjain999/platform-skills/keda.svg" alt="Reviewed on agentmods" width="80" 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.00099 | $0.01602 |
| Opus 5 | $0.00049 | $0.00801 |
| Sonnet 5 | $0.00020 | $0.00320 |
| Haiku 4.5 | $0.00010 | $0.00160 |
Grade A, and why
keda 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.
How it starts
The opening of the file, as written. The whole thing — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Design, debug, and review KEDA (Kubernetes Event-Driven Autoscaling) ScaledObject and ScaledJob resources.
Mode: generate
Write a production-ready ScaledObject or ScaledJob from a description.
Steps:
- Identify: target workload kind (Deployment / StatefulSet / Job), trigger type, and whether scale-to-zero is acceptable
- Choose the right resource kind:
- Long-running service →
ScaledObject - Batch processing per message →
ScaledJob
- Long-running service →
- Generate with:
apiVersion: keda.sh/v1alpha1scaleTargetRef.namematching the exact Deployment/StatefulSet/Job nameminReplicaCount: 0only if the service can tolerate cold-start latency; otherwiseminReplicaCount: 1
Scale-to-zero warning: Setting
minReplicaCount: 0means the Deployment will have 0 replicas when the queue/metric is empty. Cold-start latency applies — confirm this is acceptable before enabling.
pollingIntervalandcooldownPeriodsized to the workload pattern (see table inreferences/keda.md)- Trigger-specific
metadatawithactivationThreshold/activationQueueLengthset to avoid flapping on sparse events authenticationRefpointing to aTriggerAuthentication— never inline credentials in the ScaledObject- For AWS: prefer IRSA (
podIdentity.provider: aws) over static key/secret pairs
- Generate the companion
TriggerAuthenticationorClusterTriggerAuthentication - Show validation command:
kubectl describe scaledobject <name> -n <ns>and the expectedActive: truecondition
Mode: debug
Diagnose why a ScaledObject or ScaledJob is not scaling as expected.
Steps:
- Collect:
kubectl get scaledobject -n <namespace> kubectl describe scaledobject <name> -n <namespace> kubectl get hpa -n <namespace> kubectl describe hpa keda-hpa-<scaledobject-name> -n <namespace> kubectl logs -n keda -l app.kubernetes.io/name=keda-operator --tail=100 kubectl logs -n keda -l app.kubernetes.io/name=keda-operator-metrics-apiserver --tail=100 - Check the ScaledObject
Conditionsblock:Active: false→ scaler is not detecting events (check trigger config and auth)Ready: false→ KEDA cannot reach the target deployment (checkscaleTargetRef.name)Fallback: true→ metric fetch is failing; KEDA is using fallback replicas
- Check HPA for
<unknown>targets — indicates metrics adapter cannot reach the external source - Work through this checklist in order:
- External source reachable from the KEDA namespace?
- TriggerAuthentication secret exists and has correct keys?
activationThresholdtoo high for current event volume?minReplicaCountpreventing scale-to-zero?- Conflicting HPA on the same Deployment?
cooldownPeriodnot yet elapsed?
- State the most likely root cause with the exact field or resource to fix
- Show the corrected spec section and the command to verify it
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.
- 9d ago First seen · 122 lines · 99 tokens per session scan A be5286412d47
keda is a command published in the GitHub repository nitinjain999/platform-skills (41 stars, last pushed 2d ago), licensed Apache-2.0. It adds 99 tokens to every session and 1,602 once invoked, about $0.0005 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-08-30.
Other commands, from other repositories
announce
Draft X/Twitter announcement post (or thread) for the latest plugin release.
ia-verify
Run pre-PR verification chain -- build, types, lint, tests, security scan, diff review.
release
Generate changelog, bump version, and create git tag.
ia-report-bug
Report a bug in the whetstone plugin.
cccs-guidance
CCCS assessment process and certified cloud provider guidance.
environment-switching-local-cloud-ssh
The environment selector at the bottom of Claude Code switches where work executes: local for fast interactive iteration, cloud (Anthropic servers) for routines that must run with your machine off, SSH for driving a remote box like a VPS.