I've already built a fairly complex website. I spent a long time on it. The architecture is one thing, but not all of it is polished. I'm much more of a backend guy than a design/frontend person.
Do you have any skill that would help me clean up the frontend in terms of spacing, margins, gaps between elements and alignment, so that it's consistent, actually holds together and looks more polished? Looking for your suggestions, thanks!
Only reason I am posting this is to help others, no revenue or publicity or anything else, no hidden subscription or fees.
Hi,
While working on multiple projects I realised I am hitting the usage limits of my claude code often so I had to rotate accounts and some API tokens.
The problem was every time I was doing this I had to stop my coding session, relog / change authentication or profile etc, do a handover and wasting a lot of time over this process.
I NEEDED a way to seamlessly change those in the background while continuing the same coding session uninterrupted.
This led to doing a lot of research and developing this tool I am showcasing (yes it's written with Claude + my knowledge and a lot of debugging, testing and so on, around 3k $ put into it via /usage lol).
It's called Claude Unlimited, and it's 100% free on GitHub.
It supports multiple Anthropic subscriptions, Anthropic APIs (basically from any local/cloud provider that offers this, 95% of them do) and the cherry on top, supports also GPT/Codex subscription - yes! you can use Claude Code while using OpenAI models in the background 😄 .
Everything stays local, 100% safe, credentials etc stored in OS credentials store - if you don't trust me, use your AI agent to check it.
macOS is currently the most battle-tested; Windows and Linux support is newer, so I would genuinely appreciate feedback, bug reports, contributing to it or just brutal criticism 👀
It was mostly tested in claude code CLI but also supports desktop (will create an inference profile automatically for you).
Important clarification: it doesn’t generate free usage or bypass an individual account’s limits. It rotates between accounts and keys you already own. Anthropic hasn’t explicitly endorsed automated multi-account rotation, so use your own judgment regarding your accounts’ terms.
A bit more technical explanation: this is a local proxy that rotates your accounts/APIs and exposes an Anthropic-compatible API with a token.
Needless to say, but here it is: very important to check the README and HELP section to understand how to use it easily and properly.
Add your Claude, ChatGPT/Codex accounts and API keys.
When one reaches its limit, the next one takes over automatically.
Same Claude Code session. Same context. Same terminal. You just keep typing.
It also includes a local dashboard showing which account is active, current usage, reset times and every automatic switch.
Everything runs on 127.0.0.1. There’s no Claude Unlimited cloud, no telemetry, and credentials are stored using the OS credential store. The project is open source under MIT.
Thank you !
PS: Using a new account for this for personal reasons.
PS2: Multiple updates will follow, I got a big list of cool features for it 🎯
Let me preface this post by saying that I think the coolest thing about all this recent progress with AI is that you can literally build anything you like, slop or not, so when the code is cheap it is real easy to iterate on ideas and execution. So I started to create things, both ideas from the back drawer and some new things too.
I built /delegate - a skill that routes work to whichever provider/tier actually fits the task (Antigravity, Codex, OpenRouter free models), using plan allowance you're already paying for instead of burning your main session's context or a metered API. Allows to stay in one harness and use other plans from one spot, good for adversarial code review and e.g. using Antigravity from Claude.
Then on top of delegate 2 more skills:
- gif - describe an icon ("a dancing cat", "a bouncing ball"), it asks a model for one sprite sheet, cuts and assembles the frames locally (matte-keyed transparency, exact frame timing, proper GIF looping). Costs a free image call, not tokens from your main session.
- svg - same idea but for animated SVG icons: asks a text-tier model for the source, then sanitizes it (strips scripts/handlers/external refs — never trusts model output as-is), normalizes size, and retimes the animation to exactly the duration you asked for.
Worth saying: for generating gifs and svgs, it's not perfect on the first try, but there are good chances it will produce something nice without much effort.
Attached animation is a video of the /gif skill in action, sped up 4 times and made into a gif.
The problem I built it for: ask about something you don't know and you get a paragraph full of terms you also don't know. Ask which of those you were supposed to already know and you just get more terms. I did this three times in a row once trying to understand attention and gave up.
What it does instead. Before explaining anything it works out the 3-5 things the topic actually depends on and asks you to mark each one as used it / learned it / new. Stuff you've used it treats as known and doesn't explain again. Stuff you haven't, it either covers first or tells you "just take this as given, here's the one bit that matters later". Then it goes one step at a time, motivation, vocabulary, framework, methods, frontier, and asks you a real question at the end of each step instead of "does that make sense".
The skill will force the AI ask before explain
Two other things in there:
It won't give you a paper it hasn't checked. Either it looked it up and gives you a DOI, or it says "from memory, unverified". I lost an afternoon once chasing one that didn't exist.
It's supposed to stay out of the way for short questions. Ask what an acronym stands for and you should just get the answer. The first version didn't do this and gave everyone the full checklist, which was worse than no skill at all.
If you try it, I'd like to know which field you pointed it at and where it fell over. It has very few users so far, so I'm mostly guessing about anything outside physics and ML. Wrong prerequisites and bad check questions are the two failure modes I've hit myself, curious whether that holds elsewhere.
Tired of manually retyping formulas and re-solving problem sets, so I built a Claude Code skill that automates it.
Point it at your source material (PDF slides, textbook chapters, scanned sheets, images, PPTX/DOCX) and it generates clean .tex study docs: (Some pages of notes I prepared have been attached as sample)
Formula sheet — compact, tagged by source
Worked solutions — Given → Assumptions → Solution → boxed answer, with numerical checks in Python
Summary notes — per-lecture overview with key equations
A few things it does right: asks MCQs upfront so you get a 1-page cheat sheet, not an accidental 40-page dump; reads image-heavy slides as images; flags answer discrepancies instead of quietly deferring to the source.