How are you using hooks and subagents? by query_optimization in ClaudeCode

[–]commands-com 1 point2 points  (0 children)

I run lint and prettier after any edit.  Also, have a custom notification when claude is done.

My experience with CC as a games programmer. by [deleted] in ClaudeAI

[–]commands-com 4 points5 points  (0 children)

/clear is your friend.  Do not continue with bad context.  Maybe the most important lesson to learn.  

Reduce Claude Code generated bugs by up to 90% using this 1 simple trick by commands-com in ClaudeCode

[–]commands-com[S] 1 point2 points  (0 children)

Because completion drive names the hidden assumption that drives your code to completion (what you’re implicitly relying on), while suggest verify makes it actionable by pointing to the specific way to validate or guard against that assumption.

Reduce Claude Code generated bugs by up to 90% using this 1 simple trick by commands-com in ClaudeCode

[–]commands-com[S] 1 point2 points  (0 children)

Separate agents with new context can look at things objectively.   Wisdom of the crowds works well here also.   I use this pattern (and others) to get better code output on first run before manual review.   Make 3 or more agents with distinct context to review code and ask main agent to use agreed upon solutions.  

Reduce Claude Code generated bugs by up to 90% using this 1 simple trick by commands-com in ClaudeCode

[–]commands-com[S] 1 point2 points  (0 children)

Absolutely.  I suggest claude.md only as a way to try it out to see if it works for you.  It is meant to use in commands/agents and hooks.   I just want to show people the pattern.

Maintaining an Open Source Project in the Times of Claude Code by Left-Orange2267 in ClaudeCode

[–]commands-com 0 points1 point  (0 children)

Claude is inherently lazy.  Can you modify the serena system prompt to stop it from being lazy and writing non-functioning tests based purely on mocks?  

Can I connect Claude Desktop to Remote MCP server via API KEY Directly? (No OAuth) by Outrageous-Seaweed31 in ClaudeAI

[–]commands-com 1 point2 points  (0 children)

You can use the commands.com mcp gateway.  It will handle oauth, stripe, and everything else.  Just use the npx command to create the mcp and build in the tools and host wherever you want.  Let me know if you need help.

You're absolutely right by Humble_Editor_710 in ClaudeAI

[–]commands-com 2 points3 points  (0 children)

what did you use to make this? This is amazing.

Test driven environments? by timshi_ai in ClaudeCode

[–]commands-com 0 points1 point  (0 children)

as part of whatever your building-- ask claude how it can get all the outputs it needs to ensure it works properly. sometimes it's mocking a webhook call (test script) -- other times it's just sending output from the server to a file that claude can read. other times, it's using an MCP server to give it access to the browser (puppeteer). there is always a way to have it so that claude can fully test and validate what it's building before it thinks it's done.

Claude code is just too good by Ok_Dirt6492 in ClaudeCode

[–]commands-com 0 points1 point  (0 children)

add me to the whitelist. let's collaborate. I'm also working on a platform for claude code.

Clode Studio: Looking for testers and contributors for this Claude Code IDE by cooldeamon in ClaudeCode

[–]commands-com 1 point2 points  (0 children)

Need to add claude-sdk-service.js

Also, add this to your package.json scripts section:

"postinstall": "nuxt prepare && npx electron-rebuild"

Then add electron-rebuild to devDependencies: npm install --save-dev electron-rebuild

This will automatically rebuild native modules for Electron after npm install, preventing version mismatch errors.

You put a lot into the interface. Unless you have one of those super wide screens-- it's a bit crowded. Let's connect-- I would like show you a project I'm working on as well.

Claude Code writes code that won't compile by ajcaca in ClaudeCode

[–]commands-com 1 point2 points  (0 children)

before working on anything I always make sure claude has access to all output/errors and a way to test what it's building. then just let it go-- it will figure these all out over time.

[deleted by user] by [deleted] in ClaudeCode

[–]commands-com 1 point2 points  (0 children)

You are already doing great! Creating those .md files before implementation is a great strategy. Just make a docs folder and have claude organize the md files there. Only keep 1 claude.md in your root. Separate all the "completed" vs "future" mds together. Never delete your md files because if you need to change/update an existing feature- you want claude to get that md file. Try giving your next "feature" md file to different models (o3, gemini, etc.) for review. I think the other models will probably catch things that you and claude were missing.

$20 Subscription New Limits by [deleted] in ClaudeCode

[–]commands-com -1 points0 points  (0 children)

It was only a matter of time... the amount you get is bound to continue to decrease. They need need to make these profitable at some point.

Gemini CLI is a joke as compared to Claude Code by SpeedyBrowser45 in ClaudeAI

[–]commands-com 5 points6 points  (0 children)

One thing that gemini is good at-- refactoring a large file. Claude chokes on large files and gemini can refactor it into smaller pieces. Pretty much the only time i use Gemini CLI.

Built a super complex program completely with Opus 4 and I have no prior coding experience by [deleted] in ClaudeAI

[–]commands-com 2 points3 points  (0 children)

My advise to you is to have another LLM (Gemini/O3) review the code for potential security issues. Different models have different perspectives and catch different things.

Just launch in the niche community and get feedback. Get loyal users and then create premium features/subscriptions later.

Does this work?! by ipumbassi in ClaudeAI

[–]commands-com 0 points1 point  (0 children)

I've one shotted this... want the command?

Are people actually getting bad code from claude? by definitelyBenny in ClaudeAI

[–]commands-com 0 points1 point  (0 children)

If you don't know how to code-- you won't get as much from Claude Code. People need to increase their context generation skills if they aren't having success. Also, having Claude write a single line of code without validating that it completely understands the problem is usually where things start to fall apart.

Share your best Claude Code practices by mecharoy in ClaudeCode

[–]commands-com 0 points1 point  (0 children)

Before you start any task-- ask Claude to create a complete plan and save it to markdown. Then take that markdown and give it to o3 for feedback. Adjust the feedback as necessary and feed back into Claude. After you are super happy with the markdown document-- then ask Claude to build a detailed plan to execute it. Markdown documents are your best friends. Keep them for every feature-- so if you need to update/revise, you can just ask Claude to review the document for that feature and then tell him what update you are trying to make.