agentsclimarketplace

Prepare pr

Skill dor-rondel/agent-skills-mcp/resources/frontend/prepare-pr

mcp server serving coding agent skills with helper tools

Install
npx -y skills add dor-rondel/agent-skills-mcp --skill prepare-pr

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use this skill when the user asks to run local CI verification checks (format, lint, typecheck, unit tests), commit changes, or push to GitHub.

SKILL.md

1.9 KB, as published. Nobody here has run it

Local CI Verification & Git Push Workflow

This skill hooks directly into the project's verification scripts to guarantee zero breaking changes are committed or pushed to GitHub.

🛠️ Environment Constraints

  • Package Manager: pnpm (Engines: >=9.0.0)
  • Node Version: >=20.0.0
  • Operating System: Linux / POSIX

🏃‍♂️ Step 1: Local CI Verification

Execute these checks in order. Stop immediately if any step throws an error or fails.

StepTaskCommandTarget / Standard
1Code Formattingpnpm formatRewrites files matching Prettier rules
2Linting Checkpnpm lintESLint verification (--max-warnings=0)
3Type Safety Checkpnpm typecheckRun tsc --noEmit to validate TypeScript
4Unit Testspnpm test:unitRun Vitest suite natively

🔀 Step 2: Git Workflow Execution

Only proceed to this step if all 4 operations above pass successfully with code 0.

  1. Stage Verified Code:
    git add .
    
  2. Review Diff
    • Read and analyze this diff output carefully. Identify the exact modules, files, or logic changed to write an accurate, technical summary. Check the diff to make sure there are no unintended changes.
    git diff --cached
    
  3. Commit with Context:
    • Craft a concise, descriptive imperative commit message matching the task context.
    git commit -m "<descriptive-message>"
    
  4. Push to Remote:
    git push origin HEAD
    

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.