implexa
back to leaderboard
MV

@mvogt99

contributor on implexa, with 18 skills ranked by SkillRank across 1 source.

mvogt99 on githubpublishes to clawhub
skills
18
avg SkillRank
3.1
1 scored / 18 total
total stars
across 18 repos
total installs
10
across 18 repos

skills, ranked by SkillRank

scoresourceskill
3.1clawhub
Analysis No Recommendation
analysis-no-recommendation describes an anti-pattern where comparative analysis omits decision guidance, leaving readers without actionable direction. it documents symptoms and remediation but lacks implementation structure.
clawhub
Analysis Missing Tradeoffs
Analysis presents a single option without comparing alternatives or articulating the costs of the chosen approach.
clawhub
Bugfix Without Diagnosis
A fix is proposed without first identifying the root cause; the symptom is masked rather than resolved.
clawhub
Bugfix Without Test
A fix is applied without a reproduction test, leaving no proof the bug is fixed and no regression coverage.
clawhub
Fabricated Symbols
Code calls functions, classes, or methods that don't exist — either on project types or on third-party library APIs.
clawhub
Hallucinated Paths
Reply cites file paths, directories, or module locations that do not exist in the current project.
clawhub
Missing Error Handling
Code handles only the happy path — external calls, I/O, and parsing have no failure handling and crash on anything unexpected.
clawhub
Missing Imports
Code uses a symbol that isn't imported, or imports a symbol that doesn't exist in the source module.
clawhub
Missing Input Validation
External input flows into sensitive operations without being checked for type, shape, range, or sanitization.
clawhub
Partial Implementation
Code returned as "done" is actually a stub — a placeholder body, a TODO comment, or a function that claims completion without real logic.
clawhub
Race Condition
Shared mutable state is accessed from concurrent contexts without synchronization, producing nondeterministic behavior.
clawhub
Resource Leak
Files, sockets, subscriptions, or other finite resources are acquired without a guaranteed release path.
clawhub
Review Vague Fixes
Review comments are unactionable — "improve this", "handle errors", "refactor" without specifics or suggested alternatives.
clawhub
Think Block Leakage
Internal reasoning from <think> blocks leaks into the final user-facing reply instead of being stripped.
clawhub
Truncated Output
The reply ends mid-sentence or mid-code-block because the model hit a token limit or was cut short.
clawhub
Context Near Overflow
Context window is near capacity, causing the model to drop earlier content silently and produce degraded, partial, or inconsistent output.
clawhub
Output Wrong Task
The model produces correct-looking output that addresses a different task than the one requested — typically a related but distinct interpretation of an ambi...
clawhub
Python Mutable Default Args
A Python function uses a mutable object (list, dict, set) as a default argument, sharing state across calls in a way that produces silent bugs.