- Home
- /
- Categories
- /
- Debugging
Debugging
Find and fix bugs, error analysis
ecmascript-over-typescript-features
by marius-townhouse
Use when choosing between TypeScript and ECMAScript features. Use when writing portable code. Use when considering enum or namespace. Use when targeting multiple JavaScript environments. Use when writing library code.
iterate-objects-safely
by marius-townhouse
Use when iterating over object keys and values. Use when for...in loops produce type errors. Use when Object.entries returns any types. Use when dealing with prototype pollution concerns. Use when considering Map vs object.
ios-dev
by AlphaSquadTech
iOS development workflow for building, running, testing, debugging, and fixing iOS apps using Xcode, Simulator, screenshots, and Maestro UI automation. Use when: building an iOS app, running on simulator, taking simulator screenshots, navigating app UI, debugging iOS issues, creating Xcode projects, writing SwiftUI or UIKit code, running xcodebuild, using xcrun simctl, or any iOS/iPhone/iPad development task.
norrix-cli
by norrixnet
Use this skill for Norrix CLI command selection, sequencing, and troubleshooting for build/update/submit workflows.
requirements-specification
by pluginagentmarketplace
Master requirements gathering, user story writing, acceptance criteria definition, and scope management. Transform insights into clear, actionable specifications.
patronum
by aiko-atami
Select and apply Patronum operators for Effector code with minimal, practical v2.x examples. Use when tasks involve choosing between Patronum operators, composing reactive state flows, replacing manual sample/combine boilerplate with Patronum utilities, explaining operator signatures and return types, or adapting legacy Patronum usage to modern v2 shorthand and import patterns.
task-decomposition
by mindmorass
Break down complex tasks into actionable, atomic steps that can be executed by individual agents.
git-history-analyzer
by carmandale
Performs archaeological analysis of git history to trace code evolution, identify contributors, and understand why code patterns exist. Use when you need historical context for code changes.
review-bugs
by doodledood
"Audit code for bugs, logic errors, race conditions, and edge cases. Read-only analysis producing actionable report. Use before PR, after implementation, or when debugging. Triggers: review bugs, find bugs, check for errors, code review."
narrow-any-scope
by marius-townhouse
Use when any is unavoidable. Use when working with untyped libraries. Use when silencing specific type errors.
create-issue
by jforksy
Quickly capture bugs, features, or improvements as complete issues during development
atomic-design
by iButters
Atomic Design methodology for React component architecture. Use for structuring component libraries, organizing UI hierarchies, and creating scalable design systems. Triggers on requests for component organization, design system structure, UI hierarchy, or questions about Atoms/Molecules/Organisms/Templates/Pages.
create-objects-all-at-once
by marius-townhouse
Use when building objects incrementally. Use when adding properties after creation. Use when TypeScript errors on dynamic object construction.
sentry-setup-logging
by getsentry
Setup Sentry Logging in any project. Use this when asked to add Sentry logs, enable structured logging, setup console log capture, or integrate logging with Sentry. Supports JavaScript, TypeScript, Python, Ruby, React, Next.js, and other frameworks.
critical-biblical-listener
by williacj
You MUST use this when reviewing completed sermons, Bible teachings, or theological content. Use when users ask you to evaluate, critique, or assess biblical faithfulness of teaching material. Acts as a skeptical reviewer testing claims against Scripture.
error-diagnostics-smart-debug
by liuchiawei
"Use when working with error diagnostics smart debug"
unity-debug-log
by cuozg
Generate copy-paste Debug.Log snippets — [DBG] prefix, color tags, string interpolation, wrapped in UNITY_EDITOR guard. Read-only, never writes to project files. Triggers — 'debug log', 'add logging', 'trace log', 'log snippet', 'debug output'.
php-fundamentals
by pluginagentmarketplace
Modern PHP programming skill - master PHP 8.x syntax, OOP, type system, and Composer
LNO Time Management Framework
by Coowoolf
Categorize tasks into Leverage (10x), Neutral (1x), and Overhead (<1x) to escape the trap of treating all tasks as equally important. Apply perfectionism only to L tasks.
ai-model-cascade
by vishalsachdev
A production-ready pattern for integrating AI models (specifically Google Gemini) with automatic fallback, retry logic, structured output via Zod schemas, and comprehensive error handling. Use when integrating AI/LLM APIs, need automatic fallback when models are overloaded, want type-safe structured responses, or building features requiring reliable AI generation.
Repository Context Checker
by violetio
Verify developers are working in the right repository type (brain vs code)
spring-reactive
by pluginagentmarketplace
Build reactive applications - WebFlux, Mono/Flux, R2DBC, backpressure, reactive streams
page-cro
by liuchiawei
Analyze and optimize individual pages for conversion performance. Use when the user wants to improve conversion rates, diagnose why a page is underperforming, or increase the effectiveness of marketing pages (homepage, landing pages, pricing, feature pages, or blog posts). This skill focuses on diagnosis, prioritization, and testable recommendations— not blind optimization.
conditional-types-over-overloads
by marius-townhouse
Use when typing functions with multiple return types. Use when function behavior depends on input type. Use when dealing with union type inputs. Use when considering function overloads.