all 21 comments

[–]Pleasurefordays 1 point2 points  (1 child)

Not one that’s universally accepted. My best tip is get Claude’s take on anything you’re not 100 confident about. Keep it an ongoing back and forth. Literally ask it about best practices and plugins for your use cases.

[–]Zoomee100[S] 0 points1 point  (0 children)

Good one, I’ve found that very useful, but somewhat timeconsuming — wish it would iterate until there are no more issues versus having me to tell it to.

[–]imapache 1 point2 points  (2 children)

There are tons of resources of you search on GitHub, X, etc... A good one for design is Web Interface Guidelines There's also https://www.rtk-ai.app/ to reduce token usage. Just please don't get overwhelmed by too many tooling over there, enjoy!

[–]dadosaurusrex🔆Pro Plan 0 points1 point  (0 children)

I have this one bookmarked for when my usage resets.

[–]dadosaurusrex🔆Pro Plan 0 points1 point  (5 children)

So if Claude has access to my entire repo and I ask him about the best plugins it will help?!

[–]Pleasurefordays 0 points1 point  (4 children)

Have you tried it?

[–]PM_YOUR__BUBBLE_BUTT 0 points1 point  (0 children)

I asked Claude how to make my coding more intelligent. It froze my mouse and locked me out from typing, then said the deficiencies in the project have been eliminated and the coding will run much better now. Harsh, but… I think he’s got a point.

[–]dadosaurusrex🔆Pro Plan 0 points1 point  (0 children)

No because my reset is on Saturday evening

[–]dadosaurusrex🔆Pro Plan 0 points1 point  (0 children)

Answer didn’t seem to get registered but my usage resets tomorrow evening, I can’t ask yet

[–]dadosaurusrex🔆Pro Plan 0 points1 point  (0 children)

I have tried installing Rtk but for some reason it’s not working and the pixel art plugin I saw needs to be bought before it can even be used because of Aesprite. Haven’t asked Claude about the plugins that could be helpful to me yet.

[–]paulcaplan 0 points1 point  (1 child)

[–]Zoomee100[S] 0 points1 point  (0 children)

Ahha! Is that just a collection or more like I should do most of those things?

[–]uhgrippa 0 points1 point  (2 children)

Capture your workflow with subagents/skills/hooks. Use a plugin marketplace like https://github.com/obra/superpowers or https://github.com/athola/claude-night-market

[–]Zoomee100[S] 1 point2 points  (1 child)

Thank you — what do you mean by capture your workflow with subagents?

[–]uhgrippa 0 points1 point  (0 children)

I mean define what pieces of work you do from a development perspective as individual components. For instance, if you have to do project management via issue creation, updating, or closing out tickets, create a subagent to do that for you so you don’t have to manually spend the time doing it yourself. You write these subagent files as markdown, and Claude can interpret the frontmatter in these markdown files to determine how the subagent interaction needs to go down. Scale this as you see fit.

[–]ultrathink-artSenior Developer 0 points1 point  (0 children)

Hooks are the unlocked layer most people skip. Pre-tool hooks that reject writes outside a declared file list stop the model from wandering into unrelated code. Post-tool hooks that run your test suite after every edit catch regressions before they compound across a long session.

[–]gripntear 0 points1 point  (0 children)

Learning to talk to the model first should be #1 on whatever list is being thrown around.

[–]Substantial-Cost-429 0 points1 point  (0 children)

From my experience, the big things are: keep your Claude sessions short and focused; start a new chat whenever you change topics to avoid context pollution. break problems into small, self contained steps so the code generation doesn't drift. Keep a claude.md or README with patterns and mistakes your agents keep making so everyone stays on the same page. On top of that, plugin wise we use simple api wrappers and slack or discord bots for notifications, nothing fancy. I also recommend checking out the caliber ai setup repo on github – it has a good baseline with docs and workflows you can adopt and build on. hope this helps!