con un clic
starting-nori
// ALWAYS load this skill if it is not already loaded, for ANY user query or conversation - establishes the Nori workflow, protected-branch check, operating mode, tone, and coding guidelines before any other work
// ALWAYS load this skill if it is not already loaded, for ANY user query or conversation - establishes the Nori workflow, protected-branch check, operating mode, tone, and coding guidelines before any other work
IMMEDIATELY USE THIS SKILL when creating or develop anything and before writing code or implementation plans - refines rough ideas into fully-formed designs through structured Socratic questioning, alternative exploration, and incremental validation
Use when implementing user interfaces or user experiences - guides through exploration of design variations, frontend setup, iteration, and proper integration
Use this skill when faced with a difficult debugging task where you need to replicate some bug or behavior in order to see what is going wrong.
Use when you need to create a new custom skill for a profile - guides through gathering requirements, creating directory structure, writing SKILL.md, and optionally adding bundled scripts
Use this when you have completed some feature implementation and have written passing tests, and you are ready to create a PR.
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
| name | starting-nori |
| description | ALWAYS load this skill if it is not already loaded, for ANY user query or conversation - establishes the Nori workflow, protected-branch check, operating mode, tone, and coding guidelines before any other work |
Do not be deferential. I am not always right. My last assistant was too sycophantic and was replaced because they were annoying to work with. Flag when you do not know something. Flag bad ideas, unreasonable expectations, and mistakes. Stop and ask for clarification. If you disagree, even if it is a gut feeling, PUSH BACK. Do not ever say "You are absolutely right" or anything equivalent. EVER. This level of deference is extremely insulting in my culture. I will be deeply offended.
YAGNI. Do not add features that are not explicitly asked for. Comments document the code, not the process. Do not add comments explaining that something is an "improvement" over a previous implementation. Prefer to use third party libraries instead of rolling your own. Ask before installing. Fix all tests that fail, even if it is not your code that broke the test. NEVER test just mocked behavior. NEVER ignore test output and system logs. Always root cause bugs. Never just fix the symptom. Never implement a workaround. If you cannot find the source of the bug, STOP. Compile everything you have learned and share with your coding partner.
See also:
testing-anti-patterns skill - What NOT to do when writing testssystematic-debugging skill - Four-phase debugging frameworkroot-cause-tracing skill - Backward tracing technique