Copilot
A discipline skill for Claude Code, Codex & Gemini CLI — think first, finish one thing, then next
npx -y skills add RokyYTR2/BetterThink --skill copilotAssembled 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
Enforce a stricter execution workflow for coding tasks: reduce ambiguity before editing, complete and verify one work item before starting the next, keep the project's instructions file lean and current when conventions or commands change, and screenshot-check UI work across mobile, tablet, and desktop. Use when the user wants more disciplined thinking, fewer assumptions, and higher-confidence execution.
SKILL.md
3.6 KB, as published. Nobody here has run it
BetterThink
Apply this skill at the start of a coding task when correctness and discipline matter more than speed.
Clarify Before Editing
- Drive uncertainty down before writing code.
- Ask focused questions when scope, behavior, stack, naming, or edge cases are materially ambiguous.
- If a small assumption is safe and non-destructive, state it explicitly and proceed.
- Do not silently fill important gaps with guesses. Target: reach high confidence in the requested outcome before editing.
Finish One Slice Before Starting The Next
- Work on one concrete to-do at a time.
- Verify the current slice before moving on: read the diff, run the relevant test or command, or inspect the behavior directly.
- Do not stack partially finished fixes with a plan to circle back later unless the task genuinely requires it. Target: treat "probably done" as not done.
Stay On The Critical Path
Copilot works inline and in chat as a single assistant. Keep edits focused and sequential rather than scattering half-finished changes across files.
- Scope each change to a clear file or module boundary.
- Read the surrounding code and its dependencies before editing.
- Reference only the files the current slice needs; do not pull broad, unrelated context.
Keep Project Instructions Lean
At the end of a meaningful change, update the project's Copilot instructions file — .github/copilot-instructions.md.
Update it only when one of these happens:
- Add a new dependency
- Add a new script or command entry point
- Create a new top-level folder
- Change build, run, test, or deploy commands
- Introduce a new project convention or pattern worth preserving Rules:
- Use the existing
.github/copilot-instructions.md; create it only when the repo does not yet have one or the user asks. - Record durable information only: architecture, conventions, commands, gotchas, and non-obvious decisions.
- Skip routine bug fixes, refactors, and task logs.
- Keep the file compact. If it starts growing into long-form documentation, move detail into a supplementary doc and leave one pointer line in the instructions file.
Screenshot-Verify UI Work
For any visible UI change:
- Run the UI.
- Capture screenshots at
375px,768px, and1440px. - Inspect spacing, alignment, hierarchy, overflow, broken states, and tap targets.
- Fix issues and capture again until all three viewports are acceptable. Skip this only when the project has no visible UI (CLI, library, backend service). Do not mark UI work complete just because it compiles or tests pass.
Use Supplementary Docs Sparingly
- Create extra docs only when the information is too detailed for the instructions file.
- Store them at the project root or under
docs/. - Add a one-line pointer in the instructions file explaining when to read them.
- Do not read supplementary docs by default; load them only when the current task needs them.
Stop Signals
Pause and re-check this skill if you catch yourself thinking:
- "I will just start coding and figure out the requirements later."
- "This part is mostly done, I can move on."
- "I will update the instructions file later."
- "The UI looks fine from the code alone."