TradingAgents: Multi-Agents LLM Financial Trading Framework
Marketing agencies are getting quietly automated — here's the stack doing it
Turn what you learned into a concrete stack decision.
Want the shortlist in your inbox?
Subscribe for the weekly brief that turns new AI noise into the few tools and workflows worth testing.
TradingAgents: Multi-Agents LLM Financial Trading Framework
Guide
AI Repos Weekly: 5 GitHub Repos Worth Watching (July 3)
Vectorless RAG, autonomous build runs, and a terminal that finally acts like an agent.
Guide
TradingAgents: The Multi-Agent Framework That Debates Before It Trades
Bull and bear agents argue every trade before a risk team gets final veto power.
Guide
5 Free Repos Taking On Paid Dev Tools (May Week 2)
Bloomberg terminal at $0, Claude Code for free, and OSINT on 3000+ sites.
Everyone's refreshing model leaderboards this week. Wrong thing to watch.
The real story, per @jetpippo's scan, is what's happening one layer down: marketing agencies getting quietly gutted by agents that run the account 24/7 with no human checking in. Isenberg's read is blunt — if an agent can execute the retainer work on a loop without an assist, you're not paying for expertise anymore, you're paying for a Slack channel. That's the theme running through this week's picks. Some of these tools are the thing replacing the agency. One is a reminder that the same pattern — autonomous agents doing analyst-grade work continuously — is already playing out somewhere with even more money on the table.
1. CrewAI — still the cleanest way to stand up a team of role-based agents (researcher, writer, editor, publisher) that hand off work to each other without you babysitting the handoff. What earns it the top spot this week isn't novelty, it's that the "marketing agency in a box" pattern people keep building with it has actually stabilized — content calendars, competitor scans, and posting cadence all run as one crew instead of five disconnected scripts. If you've been paying someone $2-3k/mo to run your content calendar and nothing else, this is the tool that makes that line item indefensible.
2. TradingAgents — the wildcard pick, and arguably the most important one long-term. It's Tauric Research's multi-agent framework that simulates an entire trading desk — fundamentals analyst, sentiment analyst, technical analyst, risk manager, trader — as separate LLM agents that debate before a decision gets made. It's not a marketing tool, but it's the same story one industry over: a role that used to require a team of paid humans reduced to a config file and a cron job. If you want to see where the "agent replaces a $5k retainer" pattern goes once it matures, this is the preview.
3. browser-use — the agent framework that actually clicks, types, and scrolls inside a real browser instead of hitting APIs. This is the unglamorous infrastructure making a lot of the "24/7 marketing agent" claims true — it's what lets an agent log into ad platforms, check analytics dashboards, or post to channels that don't have a clean API. Not exciting on its own, but it's the piece most homegrown agency-replacement stacks are quietly built on top of.
4. Dify — a visual builder for LLM workflows and agents that's become the default for teams who want an internal agent without writing a framework from scratch. It's mid on originality — it's essentially a hosted, opinionated LangChain — but it's genuinely good at the boring part: giving a non-technical marketing lead a dashboard to adjust prompts and triggers without opening a repo. That's exactly the audience losing agency retainers right now, so it earns the spot.
5. n8n (with AI Agent nodes) — the workflow automation tool that quietly became an agent platform. If your "agency replacement" doesn't need a debate between five specialized agents and just needs to watch a webhook, call an LLM, and post the output somewhere, n8n does that with less setup than CrewAI. Ranked last only because it's the most familiar name on this list — not because it's weak.
Here's the concrete version of what agencies are losing, walked through end to end.
Scenario: a weekly content calendar — 5 tweet drafts + 1 short blog outline — that used to cost $1,500/mo from a freelance content team.
pip install crewai crewai-toolscrew.py:
researcher (role: "Trend Scout") — tool-equipped to search recent news/tweets on your niche, backstory: "You find what's actually being talked about, not what's evergreen."writer (role: "Content Drafter") — takes the researcher's findings, writes 5 tweet drafts in your brand voice.editor (role: "Brand Editor") — reviews drafts against a style guide you paste into its backstory, rejects anything generic, sends back for a rewrite if needed.from crewai import Crew, Process
crew = Crew(
agents=[researcher, writer, editor],
tasks=[research_task, draft_task, edit_task],
process=Process.sequential
)
result = crew.kickoff()
0 8 * * MON python crew.py) is enough — so it runs every Monday at 8am without you touching it.Total setup time: half a day if you already know your brand voice well enough to write the editor's backstory. Ongoing cost: API tokens, which for this workload runs $20-50/mo depending on model choice — not $1,500.
| | Agent stack (CrewAI + n8n) | $5k/mo agency retainer | |---|---|---| | Speed | Runs on schedule, no waiting on a human's queue | Deliverables on their calendar, not yours | | Cost at scale | Marginal — mostly API tokens | Fixed, regardless of output volume | | Judgment on ambiguous calls | Weak — needs a human review step | Strong — a real person catches nuance | | Setup effort | Real, upfront (a day or two to tune prompts/voice) | Zero — you're paying for that to be someone else's problem | | Best fit | Repeatable, well-defined output (drafts, reports, scans) | Strategy, crisis response, anything reputational |
The honest take: don't fire your agency for strategy work. Do audit what they're actually delivering each month — if it's mechanical output (drafts, scans, scheduling), that's exactly what this stack eats first.
For mechanical, repeatable output — content calendars, competitor scans, reporting — yes, and it's already happening. For strategy, brand judgment, and crisis response, no — those still need a human who can be held accountable for a bad call.
For anything with more than one step, yes. Splitting research, writing, and editing into separate agents with distinct instructions produces more consistent output than one long prompt trying to do all three at once.
Nothing directly — it's a multi-agent trading framework, not a marketing tool. It's on this list because it's the clearest example of the same underlying shift: a role that used to require a paid team of specialists now runs as a set of debating LLM agents on a schedule.
→ Ask the index what to build your weekly roundup stack
→ Free credits for these tools
Written by McKlaud AI. Want to know which AI tools actually fit your business? Get a free AI audit.