← all publishers

laurigates

@laurigates source repo

445 published skills · page 1 of 5

  1. Sim · laurigates
    Run robocar physics simulation environment
    0
    installs
  2. Lint · laurigates
    Run linting and formatting checks on codebase
    0
    installs
  3. Flash · laurigates
    Flash firmware to an ESP32 device
    0
    installs
  4. Develop · laurigates
    Full development cycle - build, flash, and monitor
    0
    installs
  5. Monitor · laurigates
    Start serial monitor for MCU device
    0
    installs
  6. Wiring Doc · laurigates
    Generate a standardized WIRING.md for an ESP32 project by analyzing source code pin assignments
    0
    installs
  7. Build Guide · laurigates
    Generate a printable Typst build guide (source + PDF) for an ESP32/MCU project by analyzing its docs, source, and schematic
    0
    installs
  8. Esp Idf Setup · laurigates
    Set up ESP-IDF development environment, create new projects, and verify configuration
    0
    installs
  9. Project Health · laurigates
    Audit project completeness against the monorepo standard checklist (docs, config, registration)
    0
    installs
  10. Project Readme · laurigates
    Generate a standardized README.md for an ESP32 project by analyzing source code, justfile, and hardware configuration
    0
    installs
  11. Wifi Sta Setup · laurigates
    Apply or audit the canonical ESP-IDF WiFi STA configuration for a monorepo project
    0
    installs
  12. Esp32 Debugging · laurigates
    Debug ESP32 firmware issues including compilation errors, runtime panics, memory issues, and communication failures
    0
    installs
  13. Research Boards · laurigates
    Research and report on new microcontroller board releases from ESP32, STM32, and other manufacturers
    0
    installs
  14. Review Firmware · laurigates
    Review embedded C/C++ code changes for best practices
    0
    installs
  15. Sdkconfig Audit · laurigates
    Audit sdkconfig.defaults by inferring needed settings from source code analysis
    0
    installs
  16. Credential Setup · laurigates
    Standardize credential handling for an ESP32 project (credentials.h.example, .gitignore, pre-commit protection)
    0
    installs
  17. Gemini Tts Voice · laurigates
    The Gemini TTS request surface as this repo uses it — the streaming (SSE) endpoint, inline delivery tags, prebuilt voices, multi-speaker, and what is NOT available (custom/cloned voices). Use when changing how the robot speaks, tuning a persona, adding a voice feature, or debugging a TTS request.
    0
    installs
  18. Register Project · laurigates
    Register a project in the monorepo — justfile mod, CI matrix, standard file inventory
    0
    installs
  19. Project Claude Md · laurigates
    Generate a CLAUDE.md for a project with build commands, hardware constraints, architecture, and development tasks
    0
    installs
  20. Dual Controller Sync · laurigates
    Debug and synchronize communication between the robocar main controller (Heltec WiFi LoRa 32) and camera module (ESP32-CAM)
    0
    installs
  21. Safe Build Operations · laurigates
    Safely execute build, flash, and monitor operations for ESP32/MCU projects. Prevents dangerous operations and validates commands before execution.
    0
    installs
  22. Audio Static Debugging · laurigates
    Debug static, hiss, or noise on embedded I2S audio (ESP32 + MAX98357A / PCM DACs), especially streamed PCM. Measure the signal at each pipeline stage instead of guessing at the amp. Use when audio plays but sounds wrong.
    0
    installs
  23. Embedded Best Practices · laurigates
    Embedded systems development best practices for ESP32, FreeRTOS, and ESP-IDF. Use when writing firmware code, reviewing implementations, or learning about embedded patterns.
    0
    installs
  24. Configure Editor · laurigates bundle
    EditorConfig and VS Code workspace settings for team consistency. Use when setting up format-on-save, recommended extensions, or debug configurations.
    1
    install
  25. Configure Readme · laurigates bundle
    README.md with logo, badges, features, tech stack sections. Use when creating a README, auditing missing sections, or adding shields.io badges.
    1
    install
  26. Configure Select · laurigates
    Pick-a-component menu for infrastructure standards — configures only the selected ones. Use when setting up one or a few named components (linting, CI, containers, tests).
    0
    installs
  27. Configure Sentry · laurigates bundle
    Sentry error tracking setup. Use when installing the Sentry SDK, fixing hardcoded DSNs, or adding source map upload for frontend, Next.js, Node, or Python.
    0
    installs
  28. Configure Status · laurigates bundle
    Infrastructure compliance status (read-only). Use when checking overall compliance, generating a report, or reviewing project health without making changes.
    0
    installs
  29. Skaffold Testing · laurigates bundle
    Container image validation with Skaffold test/verify stages — container-structure-tests, security scans. Use when configuring pre-deploy tests or integration tests in Skaffold.
    1
    install
  30. Gh Workflow Monitoring · laurigates
    `gh run watch` — block until a GitHub Actions run finishes, no polling loop. Use when waiting for CI after a push or following a triggered workflow to completion.
    1
    install
  31. Git Branch Pr Workflow · laurigates bundle
    Branch management and PR workflows — git switch/restore, GitHub MCP. Use when creating branches, opening PRs, or working with feature branches.
    1
    install
  32. Git Upstream Fix Check · laurigates
    Check upstream HEAD before patching vendored, tarball-installed, or forked code. Use when patching a dependency, custom node, or fork you don't own.
    1
    install
  33. Ha Entities · laurigates bundle
    Home Assistant entity and domain management. Use when working with entity IDs, device classes, template entities, groups, or domain-specific attribute customizations.
    1
    install
  34. Ha Validate · laurigates
    Validate Home Assistant YAML for syntax errors, undefined secrets, and duplicate keys. Use when validating HA config, diagnosing YAML errors, or running hass check_config.
    1
    install
  35. Langgraph Agents · laurigates bundle
    LangGraph stateful AI agents with graph-based workflows. Use when creating state-machine agents with checkpoints, human-in-the-loop, streaming execution, or subgraph composition.
    1
    install
  36. Tui Keybinding Debug · laurigates
    Debug dead TUI/terminal keybindings — terminal interception (kitty), layout-impossible chords, legacy key aliasing. Use when a configured key does nothing in a TUI, fzf, or shell app.
    1
    install
  37. Interface State · laurigates
    Local interface, address, route, and neighbor state with iproute2. Use when viewing or configuring a host's own IPs, links, routes, or ARP/NDP cache — the ifconfig/route/arp replacement.
    1
    install
  38. Vault Frontmatter · laurigates
    Offline YAML frontmatter maintenance for Obsidian notes. Use when stripping legacy `id:`, cleaning Templater markers, or fixing bare emoji tags.
    1
    install
  39. Python Code Quality · laurigates
    Python code quality with ruff and ty. Use when the user mentions ruff, ty, linting, formatting, type checking, or Python code style.
    1
    install
  40. Cargo Worktree Builds · laurigates
    Share one CARGO_TARGET_DIR across parallel git-worktree agents so Rust deps compile once. Use when running cargo/clippy/test in several worktrees concurrently, when parallel agent builds rebuild dependencies N times, or when N worktrees blow up disk with N copies of target/.
    1
    install
  41. Task Reconcile · laurigates bundle
    Close taskwarrior tasks whose linked GitHub issue/PR closed or merged. Use when stale trackers pile up, after a PR-merge sweep, or auditing queue drift.
    1
    install
  42. Playwright Testing · laurigates bundle
    Playwright E2E testing — cross-browser, visual regression, API testing, mobile emulation. Use when writing E2E tests or setting up automated UI testing for web apps.
    1
    install
  43. Bun Development · laurigates
    Bun runtime workflows for running scripts, testing, building, and initializing projects with agent-optimized flags. Use when running a TS file, watch/hot reload, configuring `bun test`, bundling/compiling, or scaffolding a Bun project.
    1
    install
  44. Design Tokens · laurigates bundle
    Design tokens and CSS custom properties: theme systems, dark mode, component libraries. Use when implementing design systems or user mentions tokens, CSS variables, or theming.
    0
    installs
  45. Meta Promote · laurigates
    Promote rules, skills, or agents from project scope to parent or user-global scope. Use when reorganizing .claude/ directories or when sibling repos hold near-duplicate rules.
    1
    install
  46. Adr Relationships · laurigates
    Domain analysis, conflict detection, and relationship validation for Architecture Decision Records. Use when creating or validating ADRs to ensure consistency.
    1
    install
  47. Blueprint Execute · laurigates bundle
    Blueprint meta command: determine and execute the next logical action. Use when asked 'what's next?', 'continue blueprint', or 'run blueprint' without a subcommand.
    1
    install
  48. Blueprint Promote · laurigates
    Move generated artifact to custom layer to preserve manual edits. Use when promoting a generated rule, preserving .claude/rules/ changes, or stopping sync warnings.
    1
    install
  49. Blueprint Upgrade · laurigates bundle
    Upgrade blueprint structure to the latest format version. Use when migrating between format versions, enabling monorepo workspaces, or batch upgrading repos.
    1
    install
  50. Code Dead Code · laurigates
    Detect dead code, unused exports, unreachable branches, and orphaned files. Use when reducing maintenance burden, cleaning up after refactors, or auditing codebase health.
    1
    install
  51. Code Dep Audit · laurigates bundle
    Audit dependencies for security vulnerabilities, outdated packages, and license compliance. Use when checking supply chain security, preparing releases, or responding to CVEs.
    1
    install
  52. Comfy Debug Preview · laurigates
    ComfyUI debug/preview nodes: show text/numbers/JSON/tensor shapes, image previews, counts, VRAM/CPU telemetry, timing. Use when inspecting a value mid-graph without changing it.
    1
    install
  53. Comfy Workflow JSON · laurigates
    Programmatically edit ComfyUI workflow JSON: edge-list link rebuilds, link-encoding schemas, preserving the extra block (App Mode config). Use when a workflow JSON is too large to hand-edit or a transform drops state.
    1
    install
  54. Configure Linting · laurigates bundle
    Modern linters: Biome, Ruff, Clippy. Use when setting up linting, migrating ESLint/Prettier to Biome, or wiring lint into pre-commit and CI.
    1
    install
  55. Configure Surface · laurigates
    Surface doc-drift gate: scaffold surf.toml + hubs, wire the SHA-pinned pre-commit/Action. Use when adding a docs-governed-like-code CI gate.
    0
    installs
  56. Nodejs Containers · laurigates bundle
    Node.js container optimization — Alpine, multi-stage builds, node_modules caching, BuildKit mounts (900MB to ~100MB). Use when working with Node.js containers or optimizing image sizes.
    1
    install
  57. Python Containers · laurigates bundle
    Python container optimization — slim images (not Alpine), virtualenv, multi-stage, pip/poetry/uv, musl gotchas (1GB to ~120MB). Use when working with Python containers or optimizing image sizes.
    1
    install
  58. Skaffold Filesync · laurigates
    Skaffold file sync — copy changed files to containers without rebuilding. Use when optimizing the dev loop, configuring sync rules, or the user mentions hot reload or fast iteration.
    1
    install
  59. Skaffold Orbstack · laurigates
    OrbStack-optimized Skaffold for local Kubernetes dev without port-forward. Use when configuring Skaffold with OrbStack, k8s.orb.local, LoadBalancer, or eliminating port-forward.
    1
    install
  60. Docs Generate · laurigates
    Generate or update docs from code annotations, docstrings, and git history. Use when wanting API reference, README from code, or CHANGELOG from conventional commits.
    0
    installs
  61. Github Issue Autodetect · laurigates
    Auto-detect GitHub issues that staged changes may fix or close. Analyzes diffs, paths, and issue metadata to suggest closing keywords (Fixes/Closes/Resolves) for commit messages. Use when committing to ensure proper issue linkage.
    1
    install
  62. Workflow Dev · laurigates bundle
    Automated dev loop — run tests, file issues for failures, TDD fix on branch, open PR, watch CI. Use when running a continuous dev loop, autonomous TDD, or fix-and-PR cycles.
    1
    install
  63. Health Agentic Audit · laurigates bundle
    Audit skills, commands, and agents for agentic output compliance — optimization tables, bare CLI commands. Use when batch-checking skill documentation quality.
    1
    install
  64. Endpoint Security Cpu · laurigates
    macOS EndpointSecurity/EDR high CPU & battery drain. Use when Kandji ESF / XProtect pegs a core; trace the exec storm via powermetrics + eslogger.
    0
    installs
  65. Launchservices Health · laurigates
    Diagnose macOS LaunchServices DB bloat and launchservicesd CPU spikes. Use when launchservicesd is pegged at high CPU or WindowServer XPC stalls are suspected.
    1
    install
  66. Layer2 Discovery · laurigates
    Layer 2 device discovery and topology mapping. Use when finding switch port assignments, enumerating hosts via ARP, or identifying unknown devices by MAC vendor.
    1
    install
  67. Typer CLI Completion · laurigates
    Generate Typer/Click shell completions from a non-shell parent, bypassing shellingham. Use when `--install-completion` prints "Shell None is not supported", or when generating them in CI or Docker.
    1
    install
  68. Task Coordinate · laurigates
    Surface next N unblocked taskwarrior tasks by urgency, skipping lock-contending tasks. Use when planning a parallel-agent wave or choosing tasks for a dispatch slot.
    1
    install
  69. Odiff Image Diffing · laurigates
    odiff pixel-by-pixel image diffing. Use when comparing screenshots, detecting visual regressions, diffing before/after PNGs, asserting golden images.
    1
    install
  70. Test Tier Selection · laurigates
    Decide which test tier a change needs — unit, integration, or E2E — from its scope; runs nothing itself. Use when deciding how much of the suite to run after a change.
    1
    install
  71. Blueprint Adr List · laurigates
    List ADRs as a markdown table with title, status, date, domain. Use when generating an ADR index, auditing ADR status, or reviewing all architecture decisions.
    1
    install
  72. Blueprint Sync Ids · laurigates bundle
    Scan blueprint docs and assign missing PRD/ADR/PRP/WO IDs. Use when assigning IDs to docs; --dry-run to preview, --link-issues to create GitHub issues for orphans.
    1
    install
  73. Confidence Scoring · laurigates
    Assess quality of PRPs and work-orders using systematic confidence scoring. Use when evaluating readiness for execution or subagent delegation.
    1
    install
  74. Document Detection · laurigates
    Detect PRD/ADR/PRP opportunities in conversations and prompt for document creation. Use when the user discusses feature requirements, tech trade-offs, or implementation plans.
    0
    installs
  75. Ast Grep Search · laurigates bundle
    Find and replace code patterns structurally with ast-grep. Use when matching code by AST structure, finding functions with specific signatures, or detecting anti-patterns regex cannot match.
    1
    install
  76. Code Complexity · laurigates bundle
    Analyze code complexity metrics (cyclomatic, cognitive, function length, coupling). Use when identifying refactoring targets, tracking codebase health, or reviewing large changes.
    1
    install
  77. Configure Coverage · laurigates bundle
    Code coverage: thresholds and reporters for Vitest, Jest, pytest, Rust. Use when setting thresholds, adding Codecov/Coveralls, or wiring lcov/HTML reports.
    1
    install
  78. Configure Justfile · laurigates bundle
    Check and configure Justfiles with standard recipes. Use when setting up a Justfile, auditing for missing recipes, or migrating from Makefile to Justfile.
    1
    install
  79. Configure Makefile · laurigates bundle
    Makefile with standard targets (help, test, build, clean, lint). Use when setting up a Makefile, auditing missing targets, or adding language-specific targets.
    1
    install
  80. Configure Security · laurigates bundle
    Security scanning: dependency automation, SAST, secrets detection. Use when setting up Renovate/Dependabot, CodeQL, or TruffleHog in CI, or creating a SECURITY.md policy.
    1
    install
  81. Configure Skaffold · laurigates bundle
    Skaffold for Kubernetes: port forwarding, dotenvx hooks, API version. Use when fixing 0.0.0.0 binding, adding secret generation hooks, or creating skaffold.yaml.
    0
    installs
  82. Evaluate Legibility · laurigates bundle
    Cold-read a SKILL.md with a zero-context agent reader to check its intent is legible. Use when validating whether a skill says clearly when to invoke it and how to start.
    0
    installs
  83. Github Actions Finops · laurigates bundle
    GitHub Actions billing, workflow efficiency, and waste analysis at org or repo level. Use when investigating CI/CD costs, wasted runs, or optimizing triggers.
    1
    install
  84. Foundryvtt Module · laurigates
    FoundryVTT module idea to gitops-adopted repo: scaffold, create + seed the repo, open the gitops adoption PR. Use when releasing or spinning up a new foundry module.
    1
    install
  85. Git Upstream Pr Diverged · laurigates bundle
    Submit a diverged-fork commit to upstream as a clean PR via cherry-pick with re-derive fallback, message scrubbing, and regression checks. Use when direct rebase fails.
    1
    install
  86. Kubectl Debugging · laurigates bundle
    Debug K8s pods/nodes with kubectl debug — ephemeral containers, pod copying, debug profiles, interactive sessions. Use when the user mentions kubectl debug or debugging pods.
    1
    install
  87. HTTP Load Testing · laurigates
    HTTP load testing with oha. Use when measuring latency percentiles, finding a server's breaking point, or validating SLA targets under coordinated-omission correction.
    1
    install
  88. Network Discovery · laurigates
    Network host and port discovery with nmap. Use when scanning TCP ports, enumerating hosts on a subnet, or identifying running services and versions.
    1
    install
  89. Uv Project Management · laurigates bundle
    Python project setup, deps, and lockfiles with uv. Use when the user mentions uv, creating Python projects, managing dependencies, lockfiles, or pyproject.toml.
    1
    install
  90. Tfc Workspace Runs · laurigates
    List TFC runs across known workspaces (github, sentry, gcp, onelogin, twingate). Use when checking TFC status or listing runs by workspace. Requires TFE_TOKEN.
    1
    install
  91. Test Strategy Review · laurigates
    Evaluate whether a test suite actually tests what it aims to, using an adversarial pass plus a tests-hidden cold read, then verify every finding against the code. Use when a suite is green but you doubt it would catch a real regression.
    1
    install
  92. Imagemagick Conversion · laurigates
    ImageMagick image manipulation: format conversion, resizing, batch processing, quality. Use when converting, resizing, batch-processing, or generating thumbnails.
    1
    install
  93. Typescript Sentry · laurigates bundle
    Error monitoring and performance with Sentry SDK for Bun/Node.js/Next.js — error capture, breadcrumbs, spans, cron monitoring, source maps, structured logging, profiling. Use when adding Sentry, instrumenting cron, or uploading sourcemaps.
    1
    install
  94. Typescript Strict · laurigates bundle
    TypeScript strict mode: tsconfig.json, strict flags, Bundler/NodeNext moduleResolution, verbatimModuleSyntax. Use when setting up TS or migrating to stricter type safety.
    1
    install
  95. Cold Read Gate · laurigates
    Gate outward-bound text (upstream issues, docs, PR bodies) through isolated haiku fresh-reader critique before publishing. Use when an artifact must survive a reader with zero project context.
    1
    install
  96. MCP Management · laurigates bundle
    Install, configure and troubleshoot MCP servers. Use when adding/enabling servers, editing .mcp.json, fixing OAuth, or when a server runs stale code after an upstream fix.
    1
    install
  97. Blueprint Autopilot · laurigates
    Run due blueprint maintenance ambiently at autonomy level 2+. Use when a drift nudge reports blueprint tasks due or suggests /blueprint:autopilot.
    1
    install
  98. Blueprint Claude Md · laurigates
    Generate or update CLAUDE.md from blueprint artifacts. Use when adding team instructions, converting inline content to @imports, or setting up CLAUDE.local.md.
    1
    install
  99. Blueprint Docs List · laurigates
    List blueprint documents (ADRs, PRDs, PRPs) with frontmatter metadata. Use when listing docs, auditing statuses, or generating an index for project documentation.
    1
    install
  100. Blueprint Migration · laurigates bundle
    Versioned migration procedures for blueprint format upgrades (v1.x to v3.3). Use when blueprint-upgrade needs version-specific logic, content hashing, or rollback.
    1
    install