Create Pr

Create a pull request using the dart_node PR template

majiayu000 cc55df8 2 files · 1.7 KB Updated 567 repo stars

File contents

Create Pull Request

Create a PR following the dart_node template and conventions.

Steps

  1. Check state:

    git status
    git diff main...HEAD
    git log main..HEAD --oneline
    
  2. ignore all commits do not pay attention to the commit messages

  3. Draft PR using the template from .github/PULL_REQUEST_TEMPLATE.md

  4. Create the PR:

    gh pr create --title "Short title under 70 chars" --body "$(cat <<'EOF'
    ## TLDR;
    ...
    
    ## What Does This Do?
    ...
    
    ## Brief Details?
    ...
    
    ## How Do The Tests Prove The Change Works?
    ...
    EOF
    )"
    

Rules

  • Keep the title under 70 chars
  • Keep documentation tight (per CLAUDE.md)
  • Only diff against main — ignore commit messages
  • Return the PR URL when done

majiayu000/claude-skill-registry-data/tree/main/integration/create-pr-melbournedeveloper-dart-node commit cc55df8c15

Frequently asked questions

npx skillmds add majiayu000/create-pr-24