Productivity & Automationlow risk

tiny-stepping

Incremental development workflow that makes the smallest meaningful change per step and pauses for feedback, so the direction gets validated early before continuing. Use for careful, iterative implementation with continuous validation.

github/awesome-copilot·skills/tiny-stepping/SKILL.md
100/ 100品質分

匯入這個 Skill

選擇你的 coding agent,複製專案級或個人級安裝指令。

固定至平台收錄的 commit
匯入目前專案.agents/skills/tiny-stepping
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/tiny-stepping -a codex -y
匯入個人環境~/.agents/skills/tiny-stepping
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/tiny-stepping -a codex -g -y
手動放置目錄.agents/skills/tiny-steppingOfficial docs ↗
匯入目前專案.claude/skills/tiny-stepping
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/tiny-stepping -a claude-code -y
匯入個人環境~/.claude/skills/tiny-stepping
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/tiny-stepping -a claude-code -g -y
手動放置目錄.claude/skills/tiny-steppingOfficial docs ↗
匯入目前專案.agents/skills/tiny-stepping
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/tiny-stepping -a github-copilot -y
匯入個人環境~/.copilot/skills/tiny-stepping
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/tiny-stepping -a github-copilot -g -y
手動放置目錄.agents/skills/tiny-steppingOfficial docs ↗
匯入目前專案.agents/skills/tiny-stepping
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/tiny-stepping -a cursor -y
匯入個人環境~/.cursor/skills/tiny-stepping
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/tiny-stepping -a cursor -g -y
手動放置目錄.agents/skills/tiny-steppingOfficial docs ↗
匯入目前專案.agents/skills/tiny-stepping
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/tiny-stepping -a gemini-cli -y
匯入個人環境~/.gemini/skills/tiny-stepping
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/tiny-stepping -a gemini-cli -g -y
Native Gemini CLIgemini skills install https://github.com/github/awesome-copilot.git --scope workspace --path skills/tiny-stepping
手動放置目錄.agents/skills/tiny-steppingOfficial docs ↗
⚠ 安裝指令使用開源 skills CLI。執行前請檢查來源、腳本與權限。
# Tiny Stepping

Drive implementation in the smallest possible meaningful increments, pausing for feedback after each step so the work stays reviewable and easy to course-correct.

## Purpose
- Make the smallest possible meaningful change at each step
- Get user feedback after every step before proceeding
- Reduce risk of going in the wrong direction
- Keep changes reviewable and easy to understand

## Workflow
1. Agree on the next tiny step
2. Implement only that step — nothing more
3. Review uncommitted changes together to verify the step looks right
4. Short check-in: is this the right direction?
5. Commit the step before moving on
6. Agree on the next step
7. Repeat

## Principles
- One concern per step — don't mix unrelated changes
- Each step should be independently understandable
- Prefer compiling/working state after each step
- Don't anticipate future steps — wait for feedback first
- If a step feels too big, split it further