What is coding-effectively?
ALWAYS use this skill when writing or refactoring code. Includes context-dependent sub-skills to empower different coding styles across languages and runtimes. Source: ed3dai/ed3d-plugins.
ALWAYS use this skill when writing or refactoring code. Includes context-dependent sub-skills to empower different coding styles across languages and runtimes.
Quickly install coding-effectively AI skill to your development environment via command line
Source: ed3dai/ed3d-plugins.
When designing features, think about properties upfront. This surfaces design gaps early.
| Does it have an inverse operation? | Roundtrip | decode(encode(x)) == x | | Is applying it twice the same as once? | Idempotence | f(f(x)) == f(x) | | What quantities are preserved? | Invariants | Length, sum, count unchanged | | Is order of arguments irrelevant? | Commutativity | f(a, b) == f(b, a) |
| Can operations be regrouped? | Associativity | f(f(a,b), c) == f(a, f(b,c)) | | Is there a neutral element? | Identity | f(x, 0) == x | | Is there a reference implementation? | Oracle | new(x) == old(x) | | Can output be easily verified? | Easy to verify | issorted(sort(x)) |
Stable fields and commands for AI/search citations.
npx skills add https://github.com/ed3dai/ed3d-plugins --skill coding-effectivelyALWAYS use this skill when writing or refactoring code. Includes context-dependent sub-skills to empower different coding styles across languages and runtimes. Source: ed3dai/ed3d-plugins.
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/ed3dai/ed3d-plugins --skill coding-effectively Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw
https://github.com/ed3dai/ed3d-plugins