The original repo presented everything as equal rules. In reality, the workflow has two tiers: core practices (used in every project) and advanced rules (only in complex projects like Mortdecai). Core tier adds: - backup-before-edit (global CLAUDE.md rule) - superpowers-workflow (the actual workflow engine) - memory-system (persistent feedback and project memories) - document-hierarchy (CLAUDE.md/SESSION.md/CONTEXT.md/IDEA.md) - commit-and-push discipline - feedback-driven behaviors Updated README, docs, and dynamic-methodology to reflect the two-tier reality instead of presenting advanced rules as universal. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
4.5 KiB
Seth-Workflow-April-2026
A battle-tested AI-assisted development workflow distilled from 26+ projects across infrastructure, game servers, ML training, web apps, hardware control, and research papers.
This isn't a theoretical framework. Every rule here exists because something broke without it.
Two Tiers: Core + Advanced
This workflow has two tiers that reflect how it's actually used:
Core (used in every project)
The core/ directory contains what actually runs across all 26+ projects. No .claude/rules/ files needed — these behaviors come from the document hierarchy, the Superpowers plugin, the memory system, and accumulated feedback.
| Practice | File | What it does |
|---|---|---|
| Document hierarchy | core/document-hierarchy.md |
CLAUDE.md + SESSION.md + CONTEXT.md + IDEA.md |
| Superpowers plugin | core/superpowers-workflow.md |
Brainstorming, TDD, debugging, verification, code review |
| Memory system | core/memory-system.md |
Persistent feedback and project memories across sessions |
| Backup before edit | core/backup-before-edit.md |
.backup/ directory before any file modification |
| Commit & push | core/commit-and-push.md |
Commit every change, push immediately, conventional commits |
| Feedback behaviors | core/feedback-driven-behaviors.md |
Learned corrections and confirmed approaches |
Advanced (for complex, multi-domain projects)
The rules/ directory contains formalized governance rules from the most mature project implementation. These are .claude/rules/ files that auto-load at session start and provide explicit, enforceable conventions.
Most projects don't need these. Use them when a project is complex enough that implicit conventions aren't sufficient — when multiple people work on it, when it spans multiple domains, or when mistakes are expensive.
Quick Start
Minimum viable workflow (Core only)
-
Install the Superpowers plugin:
claude plugin install superpowers -
Set up your project documents:
cp templates/CLAUDE.md ./CLAUDE.md # Project instructions (fill in) cp templates/SESSION.md ./SESSION.md # AI memory (grows over time) -
Add backup-before-edit to your global instructions: Add to
~/.claude/CLAUDE.md:Before editing any file, back up the original to a .backup/ directory in the same parent folder. -
Install the pre-push hook:
cp hooks/check-secrets-before-push.sh ~/.config/git/check-secrets-before-push.sh chmod +x ~/.config/git/check-secrets-before-push.shThen add it to your Claude Code settings (see
settings/settings.example.json).
That's it. The Superpowers plugin handles workflow enforcement (brainstorming, TDD, debugging, verification). The document hierarchy provides session continuity. The memory system learns your preferences over time.
Full workflow (Core + Advanced rules)
Add the rules for projects that need explicit governance:
mkdir -p .claude/rules
cp rules/*.md .claude/rules/
These auto-load at session start and provide: session discipline, authority hierarchy, git workflow, proactive steering, reasoning patterns, context management, security hardening, code quality standards, and documentation maintenance rules.
What's Inside
| Directory | Purpose |
|---|---|
core/ |
Universal practices — what actually runs in every project |
rules/ |
Advanced governance — .claude/rules/ files for complex projects |
templates/ |
File templates for bootstrapping new projects |
hooks/ |
Claude Code hooks (pre-push secret scanning) |
settings/ |
Example Claude Code configuration |
workflows/ |
Human-readable methodology guides |
docs/ |
Philosophy and customization guides |
Methodology Guides
workflows/dynamic-methodology.md— How core practices and advanced rules compose based on task typeworkflows/project-scaffold.md— New project bootstrap recipeworkflows/paper-writing.md— Human-AI collaborative research
Origin
Distilled from real-world usage across:
- Multi-agent AI systems (50+ tools, multi-provider routing)
- Homelab infrastructure (70+ services, 4-node cluster, 500TB+ storage)
- Game server operations and plugin development
- ML model training and evaluation pipelines
- Hardware control systems (3D printers, IoT devices)
- Human-AI collaborative research papers
- Web applications and API servers
Every practice earned its place by preventing a real problem.
License
MIT. Use it, adapt it, share it.