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.
npx skills add cinience/alicloud-skills --skill aliyun-alb-managegit clone --depth 1 https://github.com/cinience/alicloud-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/skills/cinience/alicloud-skills/aliyun-alb-manage)<a href="https://agentmods.dev/skills/cinience/alicloud-skills/aliyun-alb-manage"><img src="https://agentmods.dev/badge/skills/cinience/alicloud-skills/aliyun-alb-manage/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/skills/cinience/alicloud-skills/aliyun-alb-manage"><img src="https://agentmods.dev/badge/skills/cinience/alicloud-skills/aliyun-alb-manage.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Rogue Agent · line 16 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.00061 | $0.01019 |
| Opus 5 | $0.00030 | $0.00509 |
| Sonnet 5 | $0.00012 | $0.00204 |
| Haiku 4.5 | $0.00006 | $0.00102 |
Grade A, and why
aliyun-alb-manage 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 — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Category: service
Application Load Balancer (ALB)
Use this skill for end-to-end ALB operations via local Python scripts and OpenAPI-compatible workflows.
Validation
mkdir -p output/aliyun-alb-manage
for f in skills/network/slb/aliyun-alb-manage/scripts/*.py; do
python3 -m py_compile "$f"
done
echo "py_compile_ok" > output/aliyun-alb-manage/validate.txt
Pass criteria: command exits 0 and output/aliyun-alb-manage/validate.txt is generated.
Output And Evidence
- Save all command outputs, request parameters, and API responses under
output/aliyun-alb-manage/. - For change operations, keep before/after snapshots plus health-check results.
Prerequisites
pip install alibabacloud_alb20200616 alibabacloud_tea_openapi alibabacloud_credentials
Credential priority:
ALIBABACLOUD_ACCESS_KEY_ID/ALIBABACLOUD_ACCESS_KEY_SECRET- Optional STS token:
ALIBABACLOUD_SECURITY_TOKEN - Shared config:
~/.alibabacloud/credentials
Workflow
- Confirm region, VPC context, target ALB resource IDs, and expected change window.
- Run inventory scripts first (
list_*,get_*) and save baseline outputs. - Apply one change at a time (listener/server-group/rule/lb lifecycle).
- Wait for async completion when needed (
scripts/wait_for_job.py). - Validate final state with health checks and state re-query.
Top task playbooks
1) Read-only inventory and quick diagnosis
python3 scripts/list_instances.py --region cn-hangzhou --json --output output/aliyun-alb-manage/instances.json
python3 scripts/list_server_groups.py --region cn-hangzhou --json --output output/aliyun-alb-manage/server-groups.json
python3 scripts/list_acls.py --region cn-hangzhou --json --output output/aliyun-alb-manage/acls.json
2) Inspect one ALB and listener details
python3 scripts/get_instance_status.py --region cn-hangzhou --lb-id alb-xxx --view detail --output output/aliyun-alb-manage/lb-detail.json
python3 scripts/list_listeners.py --region cn-hangzhou --lb-id alb-xxx --json --output output/aliyun-alb-manage/listeners.json
python3 scripts/get_listener_attribute.py --region cn-hangzhou --listener-id lsn-xxx --output output/aliyun-alb-manage/listener-attr.json
What ships with it
35 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agents/openai.yaml 247 B
- references/api_quick_map.md 5.5 KB
- references/log-analysis.md 5.0 KB
- references/resource-dependencies.md 5.8 KB
- references/scripts_catalog.md 1.8 KB
- references/sources.md 375 B
- references/troubleshooting.md 10.0 KB
- scripts/add_servers.py 6.5 KB runs code
- scripts/check_health_status.py 8.2 KB runs code
- scripts/create_listener.py 9.1 KB runs code
- scripts/create_load_balancer.py 7.4 KB runs code
- scripts/create_rule.py 17 KB runs code
- scripts/create_server_group.py 8.7 KB runs code
- scripts/delete_listener.py 3.0 KB runs code
- scripts/delete_load_balancer.py 3.6 KB runs code
- scripts/delete_rule.py 2.8 KB runs code
- scripts/delete_server_group.py 3.1 KB runs code
- scripts/deletion_protection.py 3.4 KB runs code
- scripts/get_instance_status.py 11 KB runs code
- scripts/get_listener_attribute.py 2.2 KB runs code
- scripts/list_acl_entries.py 3.1 KB runs code
- scripts/list_acls.py 3.4 KB runs code
- scripts/list_instances.py 4.1 KB runs code
- scripts/list_listener_certificates.py 3.2 KB runs code
- scripts/list_listeners.py 3.8 KB runs code
- scripts/list_rules.py 6.7 KB runs code
- scripts/list_security_policies.py 4.8 KB runs code
- scripts/list_server_group_servers.py 3.5 KB runs code
- scripts/list_server_groups.py 3.7 KB runs code
- scripts/remove_servers.py 5.7 KB runs code
- scripts/start_listener.py 2.6 KB runs code
- scripts/stop_listener.py 2.6 KB runs code
- scripts/update_listener.py 9.3 KB runs code
- scripts/update_rule.py 16 KB runs code
- scripts/wait_for_job.py 5.4 KB runs code
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 · 97 lines · 61 tokens per session scan A a97ad0faf1bf
aliyun-alb-manage is a skill published in the GitHub repository cinience/alicloud-skills (396 stars, last pushed 1mo ago), licensed MIT. It adds 61 tokens to every session and 1,019 once invoked, about $0.0003 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-03.
Other skills, from other repositories
stripe-projects
Provision SaaS services + sync creds via Stripe Projects.
azure-eventhub-dotnet
Azure Event Hubs SDK for .NET. Use for high-throughput event streaming: sending events (EventHubProducerClient, EventHubBufferedProducerClient), receiving events (EventProcessorClient with checkpointing), partition management, and real-time data ingestion. Triggers: "Event Hubs", "event streaming"…
azure-mgmt-botservice-dotnet
Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".
wikipedia
Search and read Wikipedia via x wkp — MediaWiki API, no API key, zero install; query, extract, suggest, and DDG route in one module. Load for wiki, wikipedia, encyclopedia lookup, article summary.
cve
Look up CVE records via x cve — cached, zero-API-key, daily xz TSV. Load for cve, vulnerability id, kev, epss, nvd, cvelist, or security advisory.
django-storages-s3
Use when configuring Django to store static and media files on AWS S3 with django-storages. Invoke when working with the STORAGES setting, S3 buckets, presigned URLs, CloudFront, or boto3-backed file storage in settings.py. Configures the Django 4.2+ STORAGES dict, public/private custom backends, presigned GET/POST…