code-simplification
Reduces code complexity while preserving exact behavior. Applies Chesterton's Fence principle — understand before removing. Use after implementing features, or on request via /code-simplify.
Tests in real browsers via Chrome DevTools MCP. Use when building or debugging anything that renders in a browser — DOM inspection, console errors, network analysis, performance profiling, accessibility verification.
This listing is imported from SkillsMP metadata and should be treated as untrusted until upstream source review is completed.
Install skill "browser-testing-with-devtools" with this command: npx skills add Bokazan/skillsmp-bokazan-bokazan-browser-testing-with-devtools
This source entry does not include full markdown content beyond metadata.
This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.
Related by shared tags or category signals.
Reduces code complexity while preserving exact behavior. Applies Chesterton's Fence principle — understand before removing. Use after implementing features, or on request via /code-simplify.
Safely removes code that no longer justifies its maintenance cost and migrates users to replacements. Use when sunsetting APIs, removing features, or transitioning to new implementations.
Document decisions, not just code. Write Architecture Decision Records for significant technical choices. Use when making architectural decisions, choosing between approaches, or when the same thing needs explaining repeatedly.
Disciplined version control — trunk-based development, atomic commits, descriptive messages, pre-commit hygiene. Use on every code change.