dtsong/my-claude-setup · Archived

workflow

Use when planning implementation steps, deciding commit format, or structuring development approach. Provides brainstorm-plan-implement flow with conventional commits. Triggers on 'how should I approach this', 'commit format'.

First seen Mar 10, 2026

Installation

$ npx skills add dtsong/my-claude-setup --skill workflow

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dtsong/my-claude-setup · top by installs.

npx skills add dtsong/my-claude-setup

Browse all from dtsong/my-claude-setup

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 5
License LICENSE
Default branch main
Open issues 5
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,989 B
  • docs SUMMARY.md 242 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Workflow

Scope Constraints

  • Advisory skill defining development process, commit format, and coding discipline
  • Does not execute commands, modify files, or interact with git directly
  • Boundaries: delegates git operations to git-status, git-workflows, and github-workflow skills

Input Sanitization

  • Commit messages: free text, reject null bytes
  • Plan content: free text, reject null bytes

Development Flow

  1. Brainstorm → plan → implement (for non-trivial features)
  2. Write failing test first, then implementation
  3. Verify with actual command output before marking done

Commits

Format: <type>: <description> Types: feat, fix, refactor, test, docs, chore

Plans

  • Make extremely concise. Sacrifice grammar for concision.
  • End with list of unresolved questions, if any.

Output Format

Plan: add email validation to signup form

1. Write test for valid/invalid emails
2. Add validateEmail() to src/lib/validators.ts
3. Wire into SignupForm.tsx onSubmit
4. Run tests, verify build

Commit: feat: add email validation to signup form

Open questions: none

Gotchas

  • Amending (--amend) after a pre-commit hook failure destroys the previous commit — hook failure means commit didn't happen, so --amend modifies the WRONG commit. Always create a new commit after fixing hook issues.
  • git add . or git add -A stages secrets (.env, credentials) — always add specific files by name
  • Skipping verification ("it works, I'll just commit") leads to broken builds — always run the actual test/build command and check output before committing

Don'ts

  • Don't refactor unrelated code
  • Don't add dependencies without asking
  • Don't skip verification step