Back to Blog

10 New Open-Source Claude Code Tools Worth Your Time

9 min read

10 New Open-Source Claude Code Tools Worth Your Time

Hundreds of new open-source AI projects hit GitHub every day. Almost none are worth installing. I went through the last month of releases and pulled the 10 that actually move the needle for Claude Code users — token savers, knowledge graphs, browser agents, front-end design tools, and a few you probably haven't heard of. Here's what to install and why.

What Is the Caveman Skill and Why Use It?

Caveman is a Claude Code skill that forces your agent to talk like a caveman — short, fragmented, no filler. The repo hit over 50,000 stars in its first month and it's the one tool on this list I use literally every day.

The premise is simple: Claude Code is verbose by default. Caveman codifies the "why use many word when few do trick" idea into a drop-in skill that strips articles, hedging, and corporate fluff out of your responses.

It ships with intensity levels — lite, full, and ultra. I sit at lite. The repo claims you'll save up to 75% on output tokens. Be honest with the math: Caveman only changes the response text, not the thinking or the input ingestion. Real-world savings land closer to 5% when you weight the full token bill.

The bigger win is buried in the README. A March 2026 paper called Brevity Constraints Reverse Performance Hierarchies in Language Models shows that powerful models tend to give more correct answers when forced to be concise. They literally talk themselves into wrong answers when allowed to ramble. Caveman is a brevity constraint with a side effect of making your model smarter.

Install is trivial — copy the repo URL, paste it into Claude Code, say "let's start running Caveman." Lightweight upside with no real downside.

How Does Graphify Build a Knowledge Graph for Claude Code?

Graphify reads your files and builds a knowledge graph that Claude Code can query. The repo claims 71.5x fewer tokens per query versus reading raw files because the graph gives Claude a clear structure instead of forcing it to re-read everything.

When most people think "knowledge graph" they think Obsidian. Obsidian shows you a graph, but it's really just a markdown viewer with a graph visualization on top. Graphify is closer to a true RAG system — somewhere between Obsidian and embedding-based tools like LightRAG or RAG-Anything.

A few things that set Graphify apart:

  • Multimodal ingestion — handles PDFs, screenshots, diagrams, and uses Whisper to pull audio out of video
  • No embeddings required — sits in the middle of the spectrum, lighter than a full RAG system
  • Layers on top of Obsidian — if you already live in Obsidian and want more horsepower without committing to a full RAG pipeline, Graphify slots in cleanly

If you're an Obsidian user who's hitting the limits of plain markdown but isn't ready for embeddings, this is the next step.

What Does Claude Video Do?

Claude Video gives Claude Code the ability to watch video. Sonnet and Opus can't ingest video natively, so this tool builds a workaround using FFmpeg and Whisper.

It works by extracting frames at a duration-based rate. A 30-second clip gets 30 frames. A 10-minute video caps at 100 frames. The tool feeds those screenshots to Claude alongside the audio transcript pulled by Whisper, and Claude reasons across both.

The repo is at around 400 stars after launching last week. Until now, the only paths for video in agent workflows were "send it to Notebook LM" or "make a Gemini API call." Claude Video keeps the work inside Claude Code and avoids the Gemini hop. For longer videos you'll hit usefulness limits fast — but for short clips it's a clean primitive.

How Is Open Design Different from Claude Design?

Open Design is an open-source clone of Claude Design that runs with any coding agent — locally and free. It copies the layout for prototyping, slide decks, and design exploration, and adds image and video API calls on top.

Open Design is built on top of four other open-source projects:

  • Huashu Design — terminal-only Claude Design clone
  • Guzheng PowerPoint skill — generates and properly extracts PowerPoints
  • Open Code Design — design tooling for code agents
  • Multika — multimodal design layer

Stack those four together, add a package of 31 skills, and you get a local Claude Design replacement. The pitch is straightforward: if you've already burned through your weekly Claude Design usage, switch to this and keep building.

What Is Codeburn and How Does It Track AI Coding Costs?

Codeburn tracks token usage, costs, and performance across 16 AI coding tools. It goes well past what /usage shows you inside Claude Code.

The dashboard breaks spend down by:

  • Activity
  • Project
  • Model
  • Core tool
  • Shell commands
  • MCP servers

You see actual dollar amounts, which matters if you're on the API and watching your bill. The part that makes Codeburn worth installing is that it doesn't just show you where the tokens are going — it tells you how to fix the leaks. It's a token observability tool with optimization recommendations baked in.

If you've ever opened an Anthropic invoice and had no idea where the spend went, this is the answer. Pure upside, low overhead — same category as Caveman.

How Does Impeccable Improve Front-End Design?

Impeccable is a Claude Code skill for front-end design that ships 23 commands inside a single skill. Version 3.0 dropped last week and added live in-browser editing — you can click on components in your actual webpage and cycle through variations directly.

What makes Impeccable different from generic "make my UI prettier" prompts:

  • Every command has a public before/after on the Impeccable site, so you can see exactly what each one does before running it
  • Live mode renders your page in the browser and lets you click into components to test variants
  • The single-skill, many-commands pattern means one install gets you the full suite

The site itself is half the value. Scroll through the commands and you get a visual grammar for what your AI-slop UI actually looks like versus what it should look like. Worth a visit even if you never install.

What Does Design Extract Do That Awesomedesign.md Doesn't?

Design Extract pulls a complete design system out of any website you point it at. Think of it as Awesomedesign.md but unlimited.

Awesomedesign.md is a curated repo of design teardowns for popular sites. It's at around 70,000 stars and gives you a full breakdown — colors, spacing, fonts, cards, components — for sites like 11 Labs. The catch: you can only use the sites in the repo.

Design Extract removes the constraint. Point it at any site and it uses a headless browser to extract:

  • Layout system
  • Responsiveness rules
  • Interaction states
  • Motion language
  • Component anatomy
  • Brand voice

You drop the output into Claude Code as a foundation to build on with your own brand. The headless-browser approach means it captures real interaction states, not just screenshots — substantially deeper than "copy this image."

How Does Career Ops Use Claude Code for Job Search?

Career Ops turns any AI coding CLI into a job search command center. It's not a mass-application spam tool — it's a scalpel.

Here's the flow:

  1. Paste a job URL or description
  2. Career Ops classifies the listing
  3. It evaluates fit against your CV
  4. If you match, it generates a tailored PDF resume for that listing
  5. It updates a tracker so you know what's out and what's pending

Under the hood it uses Playwright to navigate job portals. The point is not to apply to every job under the sun — it's to make sure the jobs you do apply to actually fit, and that the resume you send is tuned per listing.

If you or someone you know is grinding through a job search, this is the kind of tool that turns a brutal process into something tractable.

What Is Browser Harness and How Is It Self-Improving?

Browser Harness is Playwright if Playwright wrote its own playbook every time it ran. Every time the agent completes a task on a site, it updates its own skill file with what worked and what didn't.

Run it on Amazon once. The next time you hand it an Amazon task, it reads its prior notes, knows which selectors broke, knows which flows worked, and tries again with that context. Almost a mini Ralph loop — task, execute, log lessons, update agent file, next run reads the updated file.

The repo is just under 10,000 stars after a few weeks. This self-healing pattern is going to define the next wave of browser agents — anyone shipping a "headless browser tool" without a learning loop is already behind.

Why Is the n8n MCP Server Worth Looking At?

The n8n MCP server lets Claude Code build n8n automations in TypeScript instead of generating raw JSON. That difference matters more than it sounds.

n8n itself isn't strictly open source — it's fair use, runs locally — but there have been a few community MCP servers in the past that all did the same thing: spit out a JSON file and pray the nodes line up. They didn't.

The new n8n MCP server uses TypeScript as the intermediate format. You give Claude a command like "build me a workflow that does X." It writes the workflow in TypeScript. The MCP validates the nodes — do these exist, will this actually run — before converting to JSON and pushing into your instance.

It's the difference between "here's a JSON file, good luck" and "here's a validated workflow that will actually fire." The death of n8n has been exaggerated; the platform is repositioning as a tool Claude Code can drive, and this MCP is the bridge.

Frequently Asked Questions

Which of these tools should I install first?

Start with Caveman and Codeburn. They're both lightweight, install in under a minute, and have almost no downside. Caveman cuts noise out of your responses (and may improve answer quality). Codeburn shows you exactly where your tokens are going. Together they form a "save money + see your spend" pair.

Are these tools all free?

Most are fully open-source on GitHub. The n8n MCP server is the lone exception — n8n itself runs under a fair-use license, but you can self-host for free. Career Ops and Browser Harness use Playwright, which is also free.

Will Caveman actually save me 75% on tokens?

No. Caveman only changes the agent's output text, not its thinking or input ingestion. Realistic savings are around 5% on the total token bill. The real win is the brevity-induced quality improvement, not raw token reduction.

Do I need Claude Code to use these?

Most assume Claude Code or Codex as the host agent. A few — Open Design, Career Ops, Browser Harness — work with any coding CLI. Check each repo for compatibility.

How do I keep up with new open-source tools like these?

The space moves weekly. Subscribe to my channel, join the Chase AI community, or check GitHub trending pages tagged with claude-code and coding-agent regularly.


If you want to go deeper into open-source Claude Code tooling, join the free Chase AI community for templates, prompts, and live breakdowns. And if you're serious about building with AI, check out the paid community, Chase AI+, for hands-on guidance on how to make money with AI.