Project ideas from Hacker News discussions.

Claude Code is being dumbed down?

📝 Discussion Summary (Click to expand)

1. UX vs Power‑User Needs
Many users feel the new “collapsed” output is a dumbing‑down that hides useful information.

“I want to see the files it’s reading so I can interrupt it early.” – steinnes
“The change is a regression for power users.” – trb
“It’s a basic accessibility regression.” – ctoth

2. Business Model & Pricing
Debate over whether the subscription model is worth the cost, and how Anthropic monetises token usage.

“I would pay $200‑$120k per year to keep using it.” – co_king_3
“It’s a drug‑dealer business model.” – co_king_3
“The subscription is cheaper than API tokens for power users.” – nicetryguy

3. Technical Reliability & Agent Design
Users complain about token‑draining loops, diff glitches, and the need to patch the CLI.

“Sometimes the LLM will send you JSON that isn’t valid.” – bradfa
“It keeps burning tokens in the background.” – ninjaTrance
“I have to patch Claude every release to bring back functionality.” – bcherny

4. Open‑Source vs Closed‑Source & User Control
The closed‑source nature of Claude Code and the lack of a toggle for verbose output frustrate developers.

“I can’t patch the binary; it’s closed source.” – bcherny
“You should expose a flag to show file paths inline.” – ctoth
“OpenCode is better because it’s open‑source.” – viking123

5. Anthropic’s Product Management & Hype
Criticism that Anthropic is prioritising “mass‑market” vibe‑coding over engineering depth, and that the team is out of touch.

“Anthropic is making the product for the median developer.” – ninjaTrance
“They’re hiding what the model is doing to squeeze more money.” – bcherny
“It’s a classic product‑management mistake to simplify for non‑dev users.” – idopmstuff

These five themes capture the core of the discussion: how the UI change is perceived, the cost/value debate, technical frustrations, the desire for more openness, and the broader critique of Anthropic’s strategy.


🚀 Project Ideas

OpenSource Claude Code CLI Wrapper

Summary

  • Provides a fully open‑source, patchable CLI that wraps Claude Code’s binary, exposing hidden features (file‑read logs, verbose mode, sandbox flags) and adding token‑usage tracking.
  • Gives developers full control over the agent loop, enabling custom toolchains and debugging without vendor lock‑in.

Details

Key Value
Target Audience Advanced CLI users, open‑source contributors, teams needing custom harnesses
Core Feature Transparent file‑read logging, configurable verbosity, sandbox isolation, token counter
Tech Stack Rust (CLI), Python (wrapper scripts), Docker for sandboxing, SQLite for token logs
Difficulty Medium
Monetization Hobby

Notes

  • HN users complain “Claude Code hides what files it reads” and “I can’t patch the binary.” This tool directly addresses those frustrations.
  • The ability to toggle verbosity and see file paths inline satisfies the “basic human‑machine interface” demand highlighted by commenters.
  • Open‑source nature invites community patches, reducing the “closed‑source” pain point.

VS Code Agent Debugger Extension

Summary

  • A VS Code extension that visualizes agentic tool calls, file edits, and diff previews in a side‑panel, allowing developers to step through the agent’s reasoning and intervene.
  • Integrates with existing agents (Claude, OpenAI, Gemini) via the Agent SDK.

Details

Key Value
Target Audience IDE‑centric developers, teams using agentic coding in VS Code
Core Feature Real‑time agent trace panel, diff preview, manual approval UI
Tech Stack TypeScript, VS Code API, WebSocket for live updates
Difficulty Medium
Monetization Revenue‑ready: $5/month per seat

Notes

  • Commenters like “I want to see what files are being read” and “I need to intervene before the agent runs commands” will find this extension essential.
  • The side‑panel mirrors traditional debugging workflows, easing the learning curve for non‑vibe coders.
  • Provides a visual fallback for screen‑reader users, addressing accessibility concerns.

Token‑Usage Dashboard for Agentic Coding

Summary

  • A web dashboard that aggregates token consumption per file, per session, and per model, with cost estimates and alerts.
  • Helps teams manage budgets and understand hidden token costs that “Claude Code” hides.

Details

Key Value
Target Audience Engineering managers, cost‑aware developers
Core Feature Real‑time token counter, cost projection, exportable reports
Tech Stack Go (backend), React (frontend), PostgreSQL
Difficulty Medium
Monetization Revenue‑ready: $10/month per team

Notes

  • HN users express frustration over “token usage hidden” and “no way to track spend.” This dashboard gives transparency.
  • Enables teams to set token budgets, preventing surprise bills.
  • Can be integrated with existing CI pipelines for continuous cost monitoring.

Local Sandbox Manager for Agentic Coding

Summary

  • A lightweight sandbox that runs agentic coding tools in isolated containers, logs all file accesses, and allows rollback of changes.
  • Provides a “sandbox‑as‑a‑service” for teams that need strict security and audit trails.

Details

Key Value
Target Audience Security‑conscious teams, regulated industries
Core Feature Docker‑based sandbox, file‑access audit log, rollback button
Tech Stack Docker, Go, SQLite
Difficulty High
Monetization Revenue‑ready: $15/month per sandbox instance

Notes

  • Addresses concerns about “Claude Code can send data anywhere” and “sandboxing is weak.”
  • The audit log satisfies the need for “see what the agent is doing” and “intervene before it writes.”
  • Rollback feature mitigates accidental destructive changes, a pain point for many commenters.

Accessibility‑First Agentic CLI

Summary

  • A terminal‑friendly CLI that outputs agent actions in a screen‑reader‑compatible format, with configurable verbosity levels (‑v to ‑vvvvv) and a simple config file for non‑developer users.
  • Ensures that users who rely on audio output can still understand file reads, tool calls, and diffs.

Details

Key Value
Target Audience Visually impaired developers, accessibility advocates
Core Feature Text‑only, screen‑reader‑friendly logs, verbosity tiers, config file
Tech Stack Python, curses, configparser
Difficulty Low
Monetization Hobby

Notes

  • Commenters like “I lost the ability to trust the tool” and “screen‑reader users need inline file paths” highlight a critical accessibility gap.
  • The verbosity tiers mirror classic Unix tools (tcpdump, ssh), making it intuitive for power users.
  • A simple config file lets non‑technical users enable the exact level of detail they need without touching code.

Read Later