Codex agentic payment signal
Skill Stablehunter/agentic-payment-signal/assets/skills/codex-agentic-payment-signal
Retrieve Stablehunter AI Agentic Payment Daily Signal and route it into an agent workflow.From its SKILL.md
npx -y skills add Stablehunter/agentic-payment-signal --skill codex-agentic-payment-signalAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.7 KB, 630 tokens by cl100k_base, as published. Nobody here has run it
Agentic Payment Signal Skill
Use this skill when a user asks to retrieve, summarize, or route the latest Stablehunter AI Agentic Payment Daily Signal.
What This Skill Does
- Fetches the latest available Agentic Payment Daily Signal.
- Normalizes the result into a short workflow brief.
- Preserves the Stablehunter AI canonical URL and original source links.
- Routes the brief into a user-specified agent workflow, bot, workspace, or report.
Do not use this skill for generic crypto market news, price alerts, trading advice, airdrop tracking, or unsupported investment claims.
Public Data Surface
Primary page:
https://stablehunter.ai/agentic-payment-signal.html#daily-signals
Daily Signal API pattern:
GET https://cms.stablehunter.com/api/daily-digests/{digestDate}?category=information_signal&locale={locale}
Example:
GET https://cms.stablehunter.com/api/daily-digests/2026-05-11?category=information_signal&locale=en
Locale values:
en | zh-Hans
Authentication:
None required for v1.
If today's digest is unavailable, use the latest available date shown on the Agentic Payment Signal page. State the digest date clearly.
Output Schema
Normalize the response before routing it downstream:
{
"signal_name": "Agentic Payment Signal",
"digest_date": "YYYY-MM-DD",
"title": "string",
"item_count": 0,
"items": [
{
"title": "string",
"summary": "string",
"why_it_matters": "string",
"audience": "string",
"source_url": "https://example.com",
"source_name": "string"
}
],
"canonical_url": "https://stablehunter.ai/agentic-payment-signal.html?date=YYYY-MM-DD#daily-signals"
}
Recommended Agent Flow
- Determine today's date in the user's preferred timezone.
- Fetch the Daily Signal API for that date.
- If unavailable, open the primary page and use the latest available digest.
- Normalize the result using the output schema.
- Keep each item concise: title, why it matters, source link.
- Route the brief to the configured destination.
- Include the canonical Stablehunter AI URL.
Short Routing Format
Agentic Payment Signal · {digest_date}
{title}
1. {item.title}
Why it matters: {item.why_it_matters}
Source: {item.source_url}
Read the full Daily Signal:
{canonical_url}
Source Boundary
Focus on curated updates related to payment APIs, stablecoin rails, agentic commerce, programmable payments, identity, fraud, compliance, KYB, KYC, AML, treasury, merchant payment, card, bank, settlement infrastructure, and AI agent payment workflows.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.