Added a full skill-flow for features/bugs/etc in an existing project#1
Open
graviaDaemon wants to merge 1 commit into
Open
Added a full skill-flow for features/bugs/etc in an existing project#1graviaDaemon wants to merge 1 commit into
graviaDaemon wants to merge 1 commit into
Conversation
…, based off off this blog by Boris Tane: https://boristane.com/blog/how-i-use-claude-code/
Owner
|
@graviaDaemon Really appreciate you contributing, these skills are seriously impressive, loved going through them. The core goal of this repo is to minimize token usage, and I’m noticing Claude Code’s plan mode seems to align pretty closely with that philosophy. I’m going to take some time to dive deeper and give this PR a proper review soon ! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I've based this skill flow off of the blog by Boris Tane: https://boristane.com/blog/how-i-use-claude-code/
The skill-flow works by letting claude write to
$CLAUDE_PROJECT_DIR/.claude/agents/*.mdfiles (adjust the folder path as you prefer in your own projects)/researchto allow Claude to read everything deeply, or add a feature argument to let it read only the relevant files, or explain a bug, or that there are bugs, and claude will find all bugs./plan-itwhich steps into a planning and annotation cycle to allow claude to plan the implementation, giving you time to read the plan, and write annotations**note** note-descriptioninto the markdown file directly. Then when you're satisfied with the plan, you write**APPROVED**at the top of the file./implement, which has claude write a detailed todo list in the plan document, which you can annotate to as well, and finally when you write**APPROVED**at the todo list, claude will implement all changes as planned.I've been testing this flow in all of my projects, and it is an amazing way of running. If I have constraints for specific tech-stacks, it's quite easy to add more.
For me this is a much stronger means of using claude, since you retain control on what is being changed and how.