Skip to content

Instantly share code, notes, and snippets.

View breethomas's full-sized avatar
🦂

Bree Thomas breethomas

🦂
View GitHub Profile
@breethomas
breethomas / workflow.md
Last active October 28, 2025 14:10
Universal Development Workflow for AI-Assisted Coding with Claude Code

Universal Development Workflow

For AI-Assisted Coding with Claude Code

This workflow applies to ANY project and ensures high-quality, reviewable code that passes all project-specific quality checks.


0. Context Gathering

At the start of EVERY session:

Example!!

Challenge 5

I used these elements and specified these styles to make this thing happen. I chose to use white text color because you can't see it if it's black. (duh). (When you write this make your actual description more meaningful...)

Challenge 5

# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
class Phrase
attr_reader :expression
def initialize(expression)
@expression = expression
end
def word_count
words.each_with_object(Hash.new(0)) do |word, count|
count[word] += 1