Reddit logo

Reddit power-user workflow

Claude Code Power User Playbook (from Reddit post)

If you're looking to up-level your Claude Code workflow, this distills a top-rated Reddit post where a power user shares their skills, hooks, subagents, and full setup – plus a GitHub repo with working examples.

Reddit post

Claude Code is a Beast – Tips from 6 Months of Hardcore Use

r/ClaudeAI • by JokeGold5455

Long-form writeup covering skills, hooks, subagents, and real-world workflows used daily in a production codebase.

🔗View the full Reddit post

📁Linked repo:github.com/diet103/claude-code-infrastructure-showcase

Key insights

  1. Plan everything — use planning mode and/or a specialized strategy-plan-architect subagent to help you plan and document tasks.
  2. Skills + hooks — use hooks to make sure your agent activates skills. This will ensure that the skills actually get called by your agent.
  3. Dev docs system — create a system to document codebase and tasks, and update as the agent performs its tasks.
  4. Code reviews — always have Claude review its work
  5. Pm2 for backend — use this tool to accelerate debugging

What the linked repo contains:

Skills, modular skill pattern, specialized agents, dev docs system, comprehensive examples

🔗github.com/diet103/claude-code-infrastructure-showcase

About planning (strategic-plan architect subagent)

The strategic-plan architect runs before deep coding. It gathers context, analyzes project structure, and designs the plan.

  1. Gathers context and analyzes project structure.
  2. Creates a comprehensive plan with exec summary, phases, tasks, risks, success metrics, and timelines.
  3. Use /dev-docs custom command to generate the three files: plan, context, and tasks-checklist.
  4. Uses a clarifying-questions loop until Claude is confident in the architecture and implementation.
Context Management Tip: Create an /update-dev-docs custom command that updates the dev docs and updates all commpleted tasks. Use this when context is running low + before you clear context.

About skills

Skills are activated by the agent, but often it won't call them on its own. Add a hook that forces Claude to think through which skills are relevant and explicitly trigger them.

Example skills

Skill namePurpose
backend-dev-guidelinesRoutes → Controllers → Services → Repositories
frontend-dev-guidelinesReact 19, MUI v7, TanStack Query/Router patterns
workflow-developerComplex workflow engine patterns
notification-developerEmail / notification system
database-verificationPrevent column name errors (guardrail that can block edits)

claude.md vs Skills

What stays in claude.mdWhat becomes skills
Global conventions and coding styleDeep, stack-specific guidelines
High-level repo structure and naming rulesMulti-step workflows (e.g. "ship a feature")
Top-level workflow expectationsLarge playbooks that deserve their own files

Other useful tips

TipDetails
pm2 logsUse pm2 to run and debug backend services so Claude can read individual service logs more easily.
Utility scriptsAttach small utility scripts to skills, such as a Node command to test an authenticated route. Claude can run it, inspect the output, then iterate.
Working repoThe linked repo includes working examples of these skills, hooks, and subagents – clone it and gradually swap in your own conventions.

Example hooks

HookWhat it doesNotes
file-edit trackerLogs which files were edited, which repo they belong to, and timestamps.Great for reconstructing the story of a session or writing a summary later.
build checkerReads and edits logs, runs build scripts, checks TypeScript errors.Either fixes issues directly in Claude or delegates to a subagent, and logs everything.
prettier formatterAutomatically formats code using Prettier.Deprecated – used too much context for the value it provided.

Example subagents

Quality control

code-architecture-reviewerbuild-error-resolverrefactor-planner

Testing + debugging

auth-route-testerauth-route-debuggerfrontend-error-fixer

Planning + strategy

strategic-plan-architectplan-reviewerdocumentation-architect

Specialized

frontend-ux-designerweb-research-specialistreactour-walkthrough-designer