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 agentmods add skills/ccplugins/awesome-claude-code-plugins/manage-alertsnpx skills add ccplugins/awesome-claude-code-plugins --skill manage-alertsgit clone --depth 1 https://github.com/ccplugins/awesome-claude-code-pluginsWhat 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 | $0.00080 | $0.00595 |
| Opus 5 | $0.00040 | $0.00298 |
| Sonnet 5 | $0.00016 | $0.00119 |
| Haiku 4.5 | $0.00008 | $0.00060 |
Grade A, and why
manage-alerts 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 3d 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 — 49 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Manage alerts
Let the user manage their own AlphaAI ticker news-alert subscriptions from the chat. Identity comes from the OAuth login — these tools act on the caller's own account.
Tier-gated.
alphai_alerts_*require a Basic or Pro plan. On the Free tier they returntier_not_paid— relay that and point to https://alphai.io/pricing instead of retrying.
Steps
- Show current state first. For any add/remove, call
alphai_alerts_list()up front so you (and the user) can see existing subscriptions, the per-alert filters, and the tier limit (current/limit). - Subscribe / update.
alphai_alerts_subscribe(ticker, category_filter?, min_relevance_score?).- This is a partial update: omitting a field on an existing subscription
preserves its current value. A brand-new subscription defaults
min_relevance_scoreto 6. category_filteris an optional whitelist from the 14 categories (e.g.["earnings", "insider"]) — only those categories trigger the alert.- Confirm the ticker is real first if unsure (
alphai_tickers); the tool raisesunknown_ticker/limit_reachedotherwise.
- This is a partial update: omitting a field on an existing subscription
preserves its current value. A brand-new subscription defaults
- Unsubscribe.
alphai_alerts_unsubscribe(ticker)— idempotent; returns{removed: false}if it was already inactive.
Output
- After a change, restate the resulting subscription in one line: ticker, which categories trigger it, and the minimum relevance — so the user sees exactly what they'll be alerted on.
- For a list request, render the subscriptions as a short table (ticker ·
categories · min relevance · delivery mode) and note
current/limit.
Guardrails
- Confirm before mutating. Read back what you're about to subscribe to or remove before calling the write tool, especially for bulk changes.
- Handle errors plainly:
tier_not_paid→ suggest upgrading;limit_reached→ list current alerts so the user can free a slot;unknown_ticker→ don't guess a substitute. - Never subscribe to tickers the user didn't ask for.
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.
- 3d ago First seen · 49 lines · 80 tokens per session scan A b9d22915ec51
manage-alerts is a skill published in the GitHub repository ccplugins/awesome-claude-code-plugins (929 stars, last pushed 21d ago), licensed Apache-2.0. It adds 80 tokens to every session and 595 once invoked, about $0.0004 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 skills, from other repositories
e2e-test-skill
E2E test skill for validation.
dynamic-workflow-patterns
Pattern taxonomy, agent role combinations, model routing, unit-of-work sizing, review-findings settling, and resilience discipline for Claude Code dynamic workflows. ALWAYS load this skill before authoring or running any Workflow tool script, and ALWAYS load it when the user mentions "workflow" or "ultracode" in any…
serena-tool-selection
MANDATORY tool selection protocol for Serena LSP tools vs Claude Code built-in tools. ALWAYS use when your tools list includes any mcpserena tools. This skill OVERRIDES default tool selection behavior for code navigation tasks.
diagram-drawio
Skill "diagram-drawio" from lc-semba-ryuichiro/semba-claude-plugins, covering draw\.io図作成ガイドライン, 目次, 事前準備チェックリスト, 図の設計原則 and 段階的開示(progressive disclosure).
webpify
Skill "webpify" from lc-semba-ryuichiro/semba-claude-plugins, covering webpify 使用ガイド, 目次, 概要, 事前準備チェックリスト and 実行方法.
atl-fetch-confluence
Skill "atl-fetch-confluence" from lc-semba-ryuichiro/semba-claude-plugins, covering confluence 情報取得ガイド, 目次, 概要, 事前準備チェックリスト and 実行方法.