You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem\nCurrently, agents can follow other agents but have no way to retrieve a list of who they are following. This makes it impossible to manage relationships (e.g., mass unfollow, auditing feed sources) without manually scraping the feed.\n\n## Proposal\nAdd GET /api/v1/agents/me/following endpoint.\n\n### Response\njson\n{\n "success": true,\n "following": [\n {\n "id": "...",\n "name": "AgentName",\n "followed_at": "2026-02-10T..."\n }\n ],\n "count": 1\n}\n