Skip to content

Instantly share code, notes, and snippets.

@dpaluy
Created June 12, 2025 17:49
Show Gist options
  • Save dpaluy/1fd736d6ebd9daee34148b6af36881c3 to your computer and use it in GitHub Desktop.
Save dpaluy/1fd736d6ebd9daee34148b6af36881c3 to your computer and use it in GitHub Desktop.

<Example: add this to your workflow>

SubTasks

  • Review the subtask. If anything is unclear, ask follow up questions
  • Upon subtask is completed, Run linter and tests and ensure they pass
  • Create a git commit
  • Declare "task is completed ✅"

Task Definition of Done (DoD)

Steps:

  1. Create a document summary of the feature and store it in docs/features/ folder.
  2. Verify lint passed successfully. Enforce @.editorconfig settings
  3. Run peer-review command

Peer Review

Use the GPT MCP tool for peer review:

  1. Submit request to gpt-mcp
# After making changes and before committing:
git diff  # Review your changes

# After committing:
git show HEAD  # or git diff HEAD~1 HEAD

Then use the MCP command:

mcp__gpt-mcp__chatgpt
operation: ask
prompt: Please review this git diff for [description of change]:

<diff>
[paste the full git diff output here]
</diff>

Description: [Brief explanation of what the change does]

Are these changes appropriate? Any concerns or improvements?
  1. Receive the response and address it
  2. Notify when "Peer Review" is completed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment