price-threshold-alert

Detect token price events and trigger one-time alerts on ATH, ±20% 1h moves, or USD targets.

626|225|Updated Mar 4, 2026
One-click install
npx skills add https://github.com/aaronjmars/aeon --skill price-threshold-alert-aaronjmars
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: price-threshold-alert
Source: https://github.com/aaronjmars/aeon/tree/main/skills/price-threshold-alert
Command: npx skills add https://github.com/aaronjmars/aeon --skill price-threshold-alert-aaronjmars

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires curl, jq, webfetch, and includes assets (resource) components.

What problem does it solve?

Prevents you from missing important token price events that a daily report would only surface hours later, by generating real-time alerts when the price meaningfully changes.

Core Features & Use Cases

  • New ATH detection: Fires only on strict new all-time highs after the initial baseline run to avoid false “first alert” noise.
  • Sharp 1h move alerts: Detects ±20% (or more) moves over the last hour and notifies outside the 4-hour dedup window.
  • Operator-set USD target crossings: Lets you define absolute USD levels and alerts exactly once per target per direction when the level is crossed.
  • Stateful deduping and idempotency: Maintains a topics state file to ensure one alert per event type per 4-hour window and avoids duplicate notifications on reruns.

Quick Start

Run the price-threshold-alert skill with no var to check for ATH and sharp 1h moves using the tracked token configured in memory/MEMORY.md.

Frequently Asked Questions about price-threshold-alert

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get real-time crypto price alerts for major token moves?▼

Real-time crypto price alerts trigger one-time notifications when a tracked token hits all-time highs, makes sharp ±20% 1h moves, or crosses operator-defined absolute USD targets, preventing delays found in periodic daily digests.

How do I track custom USD price levels for a specific crypto token?▼

Tracking custom USD price levels involves defining absolute target values that alert exactly once per target per direction when crossed. The skill maintains a state file to ensure idempotency and prevent duplicate notifications on reruns.

Do I need curl and jq to set up autonomous crypto monitoring workflows?▼

Yes, autonomous crypto monitoring workflows require curl, jq, and webfetch as dependencies. You must also configure the tracked token contract and chain in memory/MEMORY.md before fetching current prices via DexScreener.

Why am I getting duplicate notifications for the same token price event?▼

Duplicate token price event notifications are prevented by a stateful deduplication mechanism. The skill maintains a topics state file to ensure only one alert fires per event type within a 4-hour window.

What is the best way to detect new all-time highs without false alert noise?▼

New all-time high detection fires only on strict ATHs established after the initial baseline run. This avoids false first-alert noise by establishing a price baseline before triggering subsequent event notifications.

Can I use DexScreener for fetching token prices with a fallback mechanism?▼

DexScreener is used to fetch current token prices with a WebFetch fallback mechanism. If the primary DexScreener data retrieval fails, the WebFetch component ensures continuous price tracking for autonomous monitoring.