Dang, not even Spotify care enough to not write AI slop articles. We’re fucked.
They are in the business of selling audio slop streams, why are you surprised?
Portal by Spotify cut my Claude Code token usage by 90%
41–50 of 183 posts
Re: Portal by Spotify cut my Claude Code token usage by 90%
#42Dang, not even Spotify care enough to not write AI slop articles. We’re fucked.
Re: Portal by Spotify cut my Claude Code token usage by 90%
#43Re: Portal by Spotify cut my Claude Code token usage by 90%
#44So this is just delegating certain work to dumber models? I certainly wouldn't use Gemini 2.5 Flash (!!?) for code writing as suggested. I've never had an issue with Codex or Claude reading massive files, they're really good at precise greps.
> I've never had an issue with Codex or Claude reading massive files Reading files isn't a problem they want to solve. The idea seems to be using a cheaper model to "scout" for the intended code, instead of an expensive one that reads all the things (and spends more tokens / thinks about them). I think this might be useful because Opus 5 especially tends to over-read. So this looks like an "LLM Bloom filter", telling…
very good way to put it.
Re: Portal by Spotify cut my Claude Code token usage by 90%
#45So this is just delegating certain work to dumber models? I certainly wouldn't use Gemini 2.5 Flash (!!?) for code writing as suggested. I've never had an issue with Codex or Claude reading massive files, they're really good at precise greps.
> I've never had an issue with Codex or Claude reading massive files Reading files isn't a problem they want to solve. The idea seems to be using a cheaper model to "scout" for the intended code, instead of an expensive one that reads all the things (and spends more tokens / thinks about them). I think this might be useful because Opus 5 especially tends to over-read. So this looks like an "LLM Bloom filter", telling…
Re: Portal by Spotify cut my Claude Code token usage by 90%
#46Earlier quoted context omitted.
> I've never had an issue with Codex or Claude reading massive files Reading files isn't a problem they want to solve. The idea seems to be using a cheaper model to "scout" for the intended code, instead of an expensive one that reads all the things (and spends more tokens / thinks about them). I think this might be useful because Opus 5 especially tends to over-read. So this looks like an "LLM Bloom filter", telling…
Pretty sure claude code already delegates reading a large codebase to haiku subagents.
So fable and opus use opus to explore. Sonnet uses sonnet.
I replaced my built in explore agent with one hardcoded to sonnet low effort.
Re: Portal by Spotify cut my Claude Code token usage by 90%
#47Re: Portal by Spotify cut my Claude Code token usage by 90%
#48It cuts token usage because they are using a different service with a different token budget for the reader/code writer tasks. You can also just delegate this to subagents with Claude Code (though you have a more limited choice of models unless you swap the cheaper models via OpenRouter). I'm OK using a dumb model as a smart grep, but the whole point of using the frontier models is using their intelligence for the ha…
You can also use hooks to force the use of subagents for this. The stack here is entirely unnecessary
Basically I run in luna high or extra high continuously with a terra subworker dedicated to planning and difficult research questions. Then I end with a final review in Terra or Sol depending how big the feature is.
Re: Portal by Spotify cut my Claude Code token usage by 90%
#49Isn't this a somewhat standard multi-model setup? there's nothing ground breaking here, just delegate claude to plan -> smaller model for implementation.
Very standard in all coding harnesses/models I've worked with, with the bonus that everything listed in the "What doesn't work in Portal by Spotify" section still works. I've been watching Opus spin off work to Fable and Sonnet as appropriate all day.
In codex I don’t see this behaviour despite having added the instructions to do so to my agents file. I also let that agents file be reviewed by Sol to come up with the right phrasing but no luck so far.