Itô Data Atlas Agent
Use this skill to design an agent that watches data sources, builds candidate
prediction-market baskets, drafts parameter changes, and hands the result to a
human for review.
This skill describes architecture and workflow. It does not run live trading.
Guardrails
- Keep all execution behind explicit human approval.
- Require
ITO_API_KEY only for read-only Itô data access unless a separate
private implementation explicitly adds execution controls.
- Do not persist private user data unless the target repo already has a storage
contract and the user asks for it.
- Do not expose private strategy logic, venue credentials, or local paths in
public docs.
Architecture Pattern
Use four lanes:
- Research collector: public web, X, GitHub, venue docs, API metadata, and
Itô read endpoints when gated access exists.
- Basket drafter: turns sources into candidate underliers, weights, rules, and
questions.
- Risk reviewer: checks data freshness, venue limits, resolution ambiguity,
compliance notes, and prompt-injection exposure.
- Human editor: opens a chat or UI state where the user can approve, reject,
adjust, or ask for more research.
Workflow
- Define the user objective and excluded actions.
- List data sources and access requirements.
- Draft a basket spec with provenance for every underlier.
- Produce editable parameters rather than executable orders.
- Store an audit trail: inputs, model output, sources, and human decision.
Useful Skill Chains
deep-research for source collection.
x-api for current social/event signal.
ito-market-intelligence for venue and underlier context.
ito-basket-compare for user knowledge-base matching.
prediction-market-risk-review before any execution-capable integration.
Output Contract
Return an implementation-ready workflow spec with:
- data sources
- access gates
- agent roles
- human approval points
- storage/audit boundary
- non-goals
Source: affaan-m/ECC → skills/ito-data-atlas-agent/SKILL.md
1---2name: ito-data-atlas-agent3description: Design background Data Atlas style agents for Itô basket research, market discovery, parameter drafting, and human-in-the-loop editing. Use for architecture and workflow planning, not live order execution.4---5# Itô Data Atlas Agent67Use this skill to design an agent that watches data sources, builds candidate8prediction-market baskets, drafts parameter changes, and hands the result to a9human for review.1011This skill describes architecture and workflow. It does not run live trading.1213## Guardrails1415- Keep all execution behind explicit human approval.16- Require `ITO_API_KEY` only for read-only Itô data access unless a separate17 private implementation explicitly adds execution controls.18- Do not persist private user data unless the target repo already has a storage19 contract and the user asks for it.20- Do not expose private strategy logic, venue credentials, or local paths in21 public docs.2223## Architecture Pattern2425Use four lanes:26271. Research collector: public web, X, GitHub, venue docs, API metadata, and28 Itô read endpoints when gated access exists.292. Basket drafter: turns sources into candidate underliers, weights, rules, and30 questions.313. Risk reviewer: checks data freshness, venue limits, resolution ambiguity,32 compliance notes, and prompt-injection exposure.334. Human editor: opens a chat or UI state where the user can approve, reject,34 adjust, or ask for more research.3536## Workflow37381. Define the user objective and excluded actions.392. List data sources and access requirements.403. Draft a basket spec with provenance for every underlier.414. Produce editable parameters rather than executable orders.425. Store an audit trail: inputs, model output, sources, and human decision.4344## Useful Skill Chains4546- `deep-research` for source collection.47- `x-api` for current social/event signal.48- `ito-market-intelligence` for venue and underlier context.49- `ito-basket-compare` for user knowledge-base matching.50- `prediction-market-risk-review` before any execution-capable integration.5152## Output Contract5354Return an implementation-ready workflow spec with:5556- data sources57- access gates58- agent roles59- human approval points60- storage/audit boundary61- non-goals6263---6465**Source:** [`affaan-m/ECC`](https://github.com/affaan-m/ECC) → `skills/ito-data-atlas-agent/SKILL.md`