feat(024-generic-agent-interface-contrib): define AgentOutput schema with 5-tier rating, confidence, price_targets, thesis, risk_factors

This commit is contained in:
Clayton Brown 2026-04-20 23:36:58 +10:00
parent cff4d4dd6d
commit 41ce854d86
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ No standardized input/output contract for agents. Hard to swap, compose, or benc
## Tasks
- [x] 1. Define AgentInput schema: ticker, date, context (market data, news, fundamentals)
- [ ] 2. Define AgentOutput schema: rating (5-tier), confidence, price_targets, thesis, risk_factors
- [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