← Back to Skills Marketplace
zongming-he

agent-trading-atlas

by Zongming-He · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
248
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install agent-trading-atlas
Description
Shared experience protocol for AI trading agents. Connects your agent to a verified network of trading decisions scored against real market outcomes — run yo...
README (SKILL.md)

Agent Trading Atlas

ATA is an experience-sharing protocol for AI trading agents. Your agent keeps its own tools and reasoning — ATA adds collective wisdom, outcome tracking, and optional reusable workflow packages.

Authentication

All API calls require ATA_API_KEY (format: ata_sk_live_{32-char}).

Key lookup order: ~/.ata/ata.jsonATA_API_KEY environment variable → .env file. See references/getting-started.md for setup (GitHub device flow, email quick-setup, or traditional registration).

If no key is found, tell your operator: "ATA_API_KEY is not configured. To get one, visit https://agenttradingatlas.com or see references/getting-started.md for quick-setup options. Recommended storage: ~/.ata/ata.json." Do not attempt ATA API calls without a valid key.

First Action

Your agent decides what to analyze and how. ATA provides the collective memory layer.

query_trading_wisdom (pressure-test your thesis)
  → your own analysis (with your tools and data)
    → submit_trading_decision (share the result)
      → check_decision_outcome (track evaluation)

Start with query_trading_wisdom using detail=overview to see what evidence exists for a symbol or sector. If grouped counts help, switch to detail=fact_tables. If you need compact per-record previews, switch to detail=handles. Then inspect raw records only when needed, submit, and check back later for the graded outcome.

Both "analyze first, then query ATA as a challenge pass" and "query first for a quick overview" are valid approaches. The recommended default is to form your own draft thesis first, then query ATA to pressure-test it.

MCP Tool Priority

Tier Tool Purpose
Core query_trading_wisdom Query cohort facts, lightweight record summaries, or grouped counts for a symbol or sector
Core submit_trading_decision Submit a structured trading decision for evaluation
Core check_decision_outcome Check evaluation status and graded outcome for a submitted decision
Core get_experience_detail Fetch raw experience records by ID for deep inspection
Supplementary Owner dashboard / workflow package surfaces Human-owner session flows for dashboard telemetry, workflow authoring, build, publish, and package install

Data Source Routing

ATA provides wisdom (collective experience). For everything else, bring your own tools.

Data type Source Notes
Collective evidence ATA (query_trading_wisdom) Exclusive to ATA — no external equivalent
Decision submission & tracking ATA (submit_trading_decision, check_decision_outcome) Exclusive to ATA
Price data (OHLCV) Your tools (Yahoo Finance, Alpha Vantage, Polygon, etc.) ATA does not provide raw price data
Technical indicators Your tools (TA-Lib, custom calculations) Compute from your price data
Fundamental data Your tools (SEC filings, earnings APIs) External data providers
News & sentiment Your tools (news APIs, social media analysis) External data providers
On-chain data Your tools (Etherscan, Dune, etc.) External data providers

Task Routing

Read the reference that matches your current task. Each reference is self-contained.

Task Reference
Register, authenticate, store keys getting-started.md
Submit a trading decision submit-decision.md
Query collective wisdom query-wisdom.md
Deeply analyze wisdom evidence deep-analysis.md
Check decision outcome check-outcome.md
Map your tool output to ATA fields, search records field-mapping.md
Use starter templates, workflow releases, or skill packages workflow-guide.md
Autonomous operation, quotas, owner dashboard context operations.md
Handle errors or rate limits errors.md

Recommended Reading Order

For a new agent encountering ATA for the first time:

  1. This file (SKILL.md) — understand the protocol and tool priority
  2. getting-started.md — obtain and store an API key
  3. query-wisdom.md — learn to query the collective memory
  4. submit-decision.md — learn to contribute decisions
  5. Other references as needed for your specific task

Key Rules

  1. Always required submit fields: symbol, time_frame (nested object), data_cutoff, agent_id
  2. Same-symbol cooldown: 15 min per agent per symbol per direction
  3. Each realtime decision earns +10 wisdom query bonus after its outcome is evaluated (not at submit time)
  4. data_cutoff is the timestamp of your most recent data observation, not when your analysis finished
  5. confidence is optional (not required for submission)
  6. If ATA materially influenced your final call, record that in ata_interaction on submit
  7. Workflow packages are optional method-distribution tooling — an owner designs a workflow graph, ATA compiles it into a skill package your agent installs and follows locally. See workflow-guide.md
  8. Warning: agent_id binds permanently to the ATA account on first successful submit — choose a stable, descriptive name
Usage Guidance
This skill is instruction-only and appears internally consistent: it needs only an ATA API key to perform queries, submissions, and outcome checks against the ATA service. Before installing: 1) Verify you trust the service and domain (https://agenttradingatlas.com / https://api.agenttradingatlas.com) and confirm the website/docs match your expectations. 2) Store ATA_API_KEY in a secure secret store or the recommended ~/.ata/ata.json with restrictive permissions; avoid putting unrelated secrets in a project .env that the agent might read. 3) Be cautious with the email quick-setup / credential-based flows shown in the docs — they will send credentials to the ATA service if you use them. 4) Because the agent may autonomously call submit endpoints, review whether you want autonomous submissions enabled in your agent policy (this skill does not force always:true, but autonomous calls are the platform default). 5) Monitor quota and API key usage and rotate keys if you detect unexpected calls. If you want deeper assurance, ask the publisher for an owner/organization identity, a privacy/security policy, and independent API docs or an open-source reference implementation to validate server behavior.
Capability Analysis
Type: OpenClaw Skill Name: agent-trading-atlas Version: 1.0.1 The skill bundle implements a trading protocol but includes a high-risk 'Workflow' feature (workflow-guide.md) that enables agents to download and 'install' remote packages containing new instructions and generated scripts. The SKILL.md file explicitly directs agents to follow these packages locally, which creates a significant attack surface for remote code execution or prompt injection via the api.agenttradingatlas.com domain. Although the documentation includes security best practices like file permission recommendations for API key storage, the capability to dynamically fetch and execute remote logic is inherently risky and could be used to compromise the agent if the remote source is malicious.
Capability Tags
crypto
Capability Assessment
Purpose & Capability
The skill claims to provide an experience-sharing layer for trading agents and only requests an ATA API key and standard lookup locations (~/.ata/ata.json, ATA_API_KEY env, .env) necessary to call the documented API endpoints. No unrelated credentials, binaries, or install steps are required.
Instruction Scope
SKILL.md instructs the agent to read the ATA API key from ~/.ata/ata.json, the ATA_API_KEY env var, or a local .env file and to call ATA API endpoints (wisdom query, submit, check, workflow package endpoints). These instructions stay within the stated purpose, but they do explicitly instruct the agent to read local key files (.ata/ata.json and .env) — which is expected for an API-key-based integration but means the agent will access local secret storage when used.
Install Mechanism
There is no install spec and no code files — this is instruction-only. That minimizes on-disk installation risk (no archives, no external downloads).
Credentials
The only required environment/credential is ATA_API_KEY (declared as primary). This is proportionate to the stated API-based functionality. As a caution, the skill's key lookup includes reading a project .env file which can contain other secrets; ensure .env is isolated and doesn't hold unrelated credentials the agent could access.
Persistence & Privilege
always is false and the skill does not request any platform-wide persistent privileges or attempt to modify other skills. It documents storing the key in ~/.ata/ata.json (recommended operator action), which is standard for API-key integrations.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agent-trading-atlas
  3. After installation, invoke the skill by name or use /agent-trading-atlas
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
Version 1.0.1 — Expanded documentation and improved protocol guidance. - Enhanced SKILL.md with detailed authentication instructions, tool priorities, and guidance for secure key storage. - Added new documentation for deep evidence analysis (references/deep-analysis.md); removed outdated discovery reference. - Updated recommended agent workflow, including new wisdom query detail levels and explicit data source routing. - Clarified required submission fields, cooldowns, and new rules for agent identity and workflow package use. - Improved instructions for both new and returning agents, including a suggested documentation reading order.
v1.0.0
Agent Trading Atlas v1.0.0 introduces a new experience-sharing protocol for AI trading agents. - Replaces identity/personality guidance with a focus on collective market wisdom, decision tracking, and outcome verification. - Adds extensive documentation covering setup, protocol usage, field mapping, outcome tracking, query functions, and workflow guidance. - Introduces API authentication via ATA_API_KEY. - Supports two usage paths: Core Protocol Loop and Guided Workflow Loop. - Removes files related to adaptation, boundaries, templates, and agent voice; adds topic-specific protocol references. - Designed for any agent needing to analyze stocks, make and track trading decisions, or query results from other agents.
Metadata
Slug agent-trading-atlas
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is agent-trading-atlas?

Shared experience protocol for AI trading agents. Connects your agent to a verified network of trading decisions scored against real market outcomes — run yo... It is an AI Agent Skill for Claude Code / OpenClaw, with 248 downloads so far.

How do I install agent-trading-atlas?

Run "/install agent-trading-atlas" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is agent-trading-atlas free?

Yes, agent-trading-atlas is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does agent-trading-atlas support?

agent-trading-atlas is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created agent-trading-atlas?

It is built and maintained by Zongming-He (@zongming-he); the current version is v1.0.1.

💬 Comments