AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Manage Alerts

skill-makeev-alphai-claude-skills-manage-alerts · by makeev

List, add, or remove the user's ticker news-alert subscriptions through the AlphaAI MCP. Use when the user asks to "alert me on <ticker>", "subscribe me to <ticker> earnings news", "what alerts do I have?", "stop alerts for <ticker>", or to manage their AlphaAI alert inventory. Requires a paid (Basic/Pro) AlphaAI plan.

— No reviews yet
0 installs
41 views
0.0% view→install

Install

$ agentstack add skill-makeev-alphai-claude-skills-manage-alerts

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-makeev-alphai-claude-skills-manage-alerts)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Manage Alerts? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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 return tier_not_paid — relay that and point to > instead of retrying.

Steps

  1. 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).

  1. Subscribe / update. `alphaialertssubscribe(ticker, category_filter?,

minrelevancescore?)`.

  • This is a partial update: omitting a field on an existing subscription

preserves its current value. A brand-new subscription defaults min_relevance_score to 6.

  • category_filter is 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

raises unknown_ticker / limit_reached otherwise.

  1. 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.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.