chore(024): mark tasks 1-2 complete

This commit is contained in:
Clayton Brown 2026-04-20 23:29:18 +10:00
parent a53784344d
commit 7081ab7b20
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generic AI Trading Agent Interface
# Upstream: TauricResearch/TradingAgents#264
# Branch: contrib/024-generic-agent-interface (based on source/main)
# Push: git push upstream contrib/024-generic-agent-interface
# PR: claytonbrown/TradingAgents → TauricResearch/TradingAgents
# Priority: P1
## Problem
No standardized input/output contract for agents. Hard to swap, compose, or benchmark agents.
## Tasks
- [x] 1. Define AgentInput schema: ticker, date, context (market data, news, fundamentals)
- [x] 2. Define AgentOutput schema: rating (5-tier), confidence, price_targets, thesis, risk_factors
- [ ] 3. Create BaseAgent abstract class with analyze(input) -> output contract
- [ ] 4. Refactor existing agents (fundamentals, sentiment, news, technical) to implement BaseAgent
- [ ] 5. Create AgentRegistry for pluggable agent discovery
- [ ] 6. Add agent benchmarking: compare outputs across different LLM backends
- [ ] 7. Document interface for third-party agent contributions