Run test suite and report results. Use when running unit tests, integration tests, or verifying code changes pass all tests.
لغة النص الأصلي: الإنجليزية
القائمة
جمع SkillsMP عدد ٢٥ من skills من FastLED/FastLED. افتح أي skill لمراجعة مصدره وتفاصيله.
عرض ٢٥ من أصل ٢٥ skills مجمعة.
Run test suite and report results. Use when running unit tests, integration tests, or verifying code changes pass all tests.
لغة النص الأصلي: الإنجليزية
Guide porting FastLED to new MCU platforms, including int.h types, clockless drivers, SPI implementations, and platform detection. Use when adding support for a new microcontroller family or board.
لغة النص الأصلي: الإنجليزية
Create a new C++ lint rule, test it, run it across the codebase, and selectively apply fixes. Usage - /new-cpp-lint <rule description>
لغة النص الأصلي: الإنجليزية
Review staged and unstaged code changes for FastLED coding standards violations, span usage mandates, and example quality. Use after making code changes to ensure compliance.
لغة النص الأصلي: الإنجليزية
Fetch CodeRabbit review comments on the current PR, classify each finding, apply fixes for valid issues, and reply to each thread. Use before attempting gh pr merge when CodeRabbit has posted a review. Blocks merge on unresolved threads. Routes…
لغة النص الأصلي: الإنجليزية
Generate a structured multi-layer test plan for FastLED changes targeting ESP32. Covers host unit tests, WASM compile checks, platform compile checks, and hardware validation. Use after defining an implementation contract, before writing any code.
لغة النص الأصلي: الإنجليزية
Generate a structured implementation contract before making any code changes to FastLED. Defines scope, affected files, API changes, platform impact, risk assessment, and test plan. Use before implementing any feature, bug fix, driver addition, or refactoring.
لغة النص الأصلي: الإنجليزية
Review and implement hardware driver code — DMA safety, interrupt correctness, timing constraints, peripheral register usage, channel drivers, and peripheral mock implementations. Use when writing, modifying, or reviewing LED drivers,…
لغة النص الأصلي: الإنجليزية
Scan all CI builds and tests, find failures, fetch error logs, and fix the code. Prioritizes unit tests, example tests, then uno, attiny85, esp32s3, esp32c6, teensy41. Use when CI is red and you need to diagnose and repair build/test failures.
لغة النص الأصلي: الإنجليزية
Debug GitHub Actions build failures by fetching and analyzing workflow logs. Use when CI/CD pipelines fail and you need to identify the root cause.
لغة النص الأصلي: الإنجليزية
Firmware crash analysis, stack trace decoder, and register dump interpreter for ESP32/ARM/AVR platforms. Use when debugging device crashes, panics, guru meditation errors, hard faults, or analyzing core dumps.
لغة النص الأصلي: الإنجليزية
Review ESP32 FastLED firmware architecture for RTOS safety, DMA correctness, LED driver patterns, memory management, and peripheral safety. Use before merging significant driver changes, new platform ports, or when auditing existing ESP32 FastLED code.
لغة النص الأصلي: الإنجليزية
Parse and classify ESP32 serial log output to identify FastLED-related errors, RMT/I2S/SPI driver faults, timing violations, RTOS issues, and crash signatures. Use when debugging unexpected device behavior, boot failures, or LED output problems on ESP32.
لغة النص الأصلي: الإنجليزية
Review Xtensa assembly code for ESP32 platforms. Checks for critical errors in inline assembly, ABI compliance, and optimization opportunities. Use after modifying ESP32 assembly or inline asm code.
لغة النص الأصلي: الإنجليزية
Review RISC-V assembly code for correctness, ABI compliance, and best practices. Use after modifying RISC-V assembly or inline asm code.
لغة النص الأصلي: الإنجليزية
ESP-IDF v5.x RMT5 API expert for LED protocols, encoders, and multi-channel control. Use when working with RMT peripheral programming, LED strip control, or migrating from RMT4 to RMT5.
لغة النص الأصلي: الإنجليزية
Automatically diagnose and fix PlatformIO board upload/monitor issues. Runs three-phase device workflow (Compile, Upload, Monitor) and applies fixes.
لغة النص الأصلي: الإنجليزية
Fix integer type definitions for specified platform. Researches correct primitive type mappings and applies fixes to platform-specific int headers.
لغة النص الأصلي: الإنجليزية
Run health check on GitHub Actions workflow with root cause analysis and recommendations. Use for quick CI status overview and pattern analysis.
لغة النص الأصلي: الإنجليزية
Search codebase and git history for keywords. Use when investigating code changes, finding where features were added, or tracking down when bugs were introduced.
لغة النص الأصلي: الإنجليزية
Run code linting and formatting checks across the codebase. Use after modifying source files to ensure coding standards are met.
لغة النص الأصلي: الإنجليزية
Audit embedded code for stack overflow risks, heap fragmentation, static allocation patterns, and memory leaks. Use when investigating OOM crashes, optimizing memory usage, or reviewing memory-critical code on constrained devices.
لغة النص الأصلي: الإنجليزية
Implement a feature or fix a bug using strict TDD. Analyzes the requirement, creates tests first, implements minimal code, then refactors. Use for feature requests, bug fixes, or enhancements that need test coverage.
لغة النص الأصلي: الإنجليزية
Guide Test-Driven Development workflow for FastLED. Use when implementing new features or fixing bugs with a test-first approach. Enforces Red-Green-Refactor discipline with FastLED test conventions.
لغة النص الأصلي: الإنجليزية
Analyze real-time constraints, ISR latency, DMA transfer times, and LED protocol timing for embedded systems. Use when debugging timing-sensitive code, optimizing frame rates, or verifying protocol compliance.
لغة النص الأصلي: الإنجليزية