the winner of the Anthropic hackathon open-sourced his entire setup for free.
named: "everything claude code"
163k stars on github. and inside the repo you get:
— 183 agent skills
— 48 sub-agents
— 79 ready-made commands
— and the best part: it works in codex, cursor, gemini, opencode, and antigravity too
built by affaan mustafa. he won the Anthropic x forum ventures hackathon in nyc — $15k in API credits, deck built in 8 hours.
10+ months of daily refinement, now MIT-licensed.
here’s a 2-minute video guide on how to set up the Hermes agent using the new Hermes Desktop app.
the new desktop app removes the complexity of running Hermes through the CLI or terminal, making it much easier to get started.
it supports 100+ models, including OpenAI, Anthropic, and other leading AI models.
if you’ve been putting off trying Hermes because of the setup process, this is the easiest way to get started.
The next evolution of Hermes Agent is here!
Introducing Hermes Desktop: everything you love about Hermes, now native on your machine.
First demoed in Jensen's GTC keynote, it's now in public preview.
agentic marketing is just an MCP install away. that's the whole thing.
wire Higgsfield's MCP into Claude and the shift is bigger than it sounds.
instead of jumping to a separate tool to generate visuals, Claude renders images, video and motion graphics directly in the chat where you're writing the brief.
one conversation, brief to output. no tab juggling.
You can build an entire company without leaving Claude + Higgsfield MCP.
Brand identity, app screens built for downloads, motion videos that drive revenue, founder vision in one post.
Built-in marketing skills generate ads, Virality Predictor finds winners.
Chinese M3 is outperforming many agentic models, including Opus 4.7, on the SWE benchmark.
The crazy part?
The model is significantly cheaper than its American competitors, yet delivers impressive coding performance.
You can also plug it directly into Claude Code, Codex, Cursor, and other coding tools.
I’ve written a simple guide on how to set it up in the post quoted below.
so I decided to try @MiniMax_AI latest agentic coding agent Minimax-M3 inside claude code.
and here's how I set it up in less than 5mins ⬇️⬇️
M3 is Anthropic-compatible, so I point claude code at the M3 endpoint, change one line,
and you're running an open-weights frontier model in the tool you already use.
no money for a dev, no zapier maze, no app store launch? this is for you 🫵
small businesses lose leads from instagram DMs every day.
so I built a live mobile app on whacka app in under 5 mins to show how you'd fix it. no code.
here's exactly how →
so I decided to try @MiniMax_AI latest agentic coding agent Minimax-M3 inside claude code.
and here's how I set it up in less than 5mins ⬇️⬇️
M3 is Anthropic-compatible, so I point claude code at the M3 endpoint, change one line,
and you're running an open-weights frontier model in the tool you already use.
4. run claude in your project folder, hit trust this folder, and you're in.
5. confirm it's actually M3 — inside the TUI run:
/status → should show https://t.co/jp7DeYqBMh
/model → should show MiniMax-M3
if both check out, you're running a frontier open-weights model in claude code. that's it.
2. grab your API key from the minimax developer platform (token plan gives you the quota)
3. edit ~/.claude/settings.json — drop this in:
{
"env": {
"ANTHROPIC_BASE_URL": "https://t.co/H5SNjaO7gA",
"ANTHROPIC_AUTH_TOKEN": "<YOUR_MINIMAX_KEY>",
"API_TIMEOUT_MS": "3000000",
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1",
"ANTHROPIC_MODEL": "MiniMax-M3",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "MiniMax-M3",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "MiniMax-M3",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "MiniMax-M3"
}
}
that base url line is the whole trick — it points claude code at M3 instead of anthropic. (use https://t.co/6RlCy6zg5q if you're in china)