🦀 ClawHub
Partial Implementation
by @mvogt99
Code returned as "done" is actually a stub — a placeholder body, a TODO comment, or a function that claims completion without real logic.
TERMINAL
clawhub install partial-implementation📖 About This Skill
name: partial-implementation description: Code returned as "done" is actually a stub — a placeholder body, a TODO comment, or a function that claims completion without real logic. emoji: 🚧 metadata: clawdis: os: [macos, linux, windows]
partial-implementation
A function or module is declared complete, but the body is a stub. The most common form is a function with pass, return None, throw NotImplementedError, or a single TODO: comment in place of real logic.
Symptoms
pass, return, throw new Error("not implemented"), or similar.return 0, return {}, return null) where real computation was requested.What to do
TODO, FIXME, XXX, NotImplementedError, unimplemented!, pass, lone return or return null. Investigate each hit.