Skip to main content
mthines
GitHub-Creator-Profil

mthines

Repository-Ansicht von 59 gesammelten Skills in 5 GitHub-Repositories.

gesammelte Skills
59
Repositories
5
aktualisiert
2026-08-01
Repository-Explorer

Repositories und repräsentative Skills

ideate
Projektmanagementspezialisten

Generates, stress-tests, and iteratively evolves ideas for a stated problem — product concepts, features, solution options, strategies — using research-grounded divergent/convergent agent loops: parallel persona generators (nominal-group simulation), independent judges scoring novelty, feasibility, impact, and fit on separate axes, and bounded recombination rounds gated by /confidence. Auto-triages run depth (quick in-context vs deep multi-agent; override with quick|deep). Use when brainstorming, exploring solution options, or pressure-testing a concept. Triggers on "brainstorm", "give me ideas", "help me come up with", "ideate on", "what could we build", "/ideate".

2026-08-01
optimize-approach
Softwareentwickler

Reviews whether a change takes the most optimal approach for its stated intent and, when it does not, researches the code, validates a concretely better approach via holistic analysis, and either proposes it (report mode) or applies it behind a confidence gate (apply mode). Judges four axes — codebase-fit, simplicity, performance, robustness — at the approach level, deferring line-level and failure-mode findings to code-quality, critical, and holistic-review. Stays silent when the approach is already optimal (quiet early-exit). A `plan` mode reviews a drafted plan's approach at plan time (aw-planner Phase 1) — the cheapest moment to switch. Called by the reviewer and pr-reviewer agents, the polish skill, and aw-planner as a default-on lens; also runnable standalone. Triggers on "is this the best approach", "better way to do this", "is this optimal", "optimize this approach", "rethink the approach", "/optimize-approach".

2026-07-31
autonomous-workflow
Softwareentwickler

Execute complete feature development cycles autonomously — from task intake through tested PR delivery — using isolated Git worktrees. Phase-based workflow (0–7) with optional companion skills for planning, quality gates, TDD, UX, code quality, docs, and CI verification. Companions skip silently if not installed. Triggers on "implement autonomously", "end-to-end", "in isolation", "in a worktree", or independent feature work. Invoke with /autonomous-workflow.

2026-07-31
aw-create-plan
Softwareentwickler

Create the plan artifact (plan.md + checks.yaml executable acceptance checks) in `.agent/{branch}/` from the current conversation context. Captures all Phase 0-1 discussion into a structured, self-contained document that enables context recovery and session handoff. On every invocation, writes plan.md and re-derives checks.yaml from the Acceptance Criteria; an immutable plan.vN.md snapshot is written only in opt-in snapshot mode (`Skill("aw-create-plan", "snapshot")`). Use after planning is complete and confidence gate passes — and again on every plan iteration (user-requested refinement or Phase 4 auto-replan). Triggers on create plan, generate plan, write plan artifact, regenerate plan, iterate on plan.

2026-07-31
fix-bug
Softwareentwickler

Resolves a single bug from any starting evidence — Dash0 telemetry (span / log / web event / RUM error link), raw stack trace, error message, code pointer (file:line), screen recording, Linear ticket URL, or free-text symptom. Classifies the input, **triages complexity** (Phase 0.5) to pick between a fast lane and a full holistic-analysis lane, runs a pre-flight sweep, locks a failing reproduction (delegating to /tdd, /e2e-testing, or /e2e-testing-mobile by layer), delegates root-cause analysis to the isolated rca-investigator agent (holistic-analysis + confidence) on complex bugs (or runs a lightweight in-skill analysis on simple ones), gates on confidence(analysis), and on >= 92 % hands off **without human confirmation**: simple bugs take the fast lane (/fix-bug → aw-create-plan → aw-executor, no aw-planner) and complex bugs take the standard lane (aw-planner → aw-executor), both with a CEGIS refinement contract. Fast-lane round-3 CEGIS failure falls back to standard-lane via aw-planner. An independent bug-

2026-07-31
holistic-analysis
Softwareentwickler

Forces a full holistic re-analysis when a fix or refactor isn't working. Instead of continuing to patch in isolation, this skill triggers a structured step-back analysis that traces the entire execution path end-to-end — from entry point to exit — analyzing each block, every contract boundary, and the full data flow. Three modes: "fix" (default) for bugs and broken behavior, "refactor" for restructuring/improvement, and "review" for PR validation (returns structured intent-match + system-fit findings for the reviewer / pr-reviewer agents to consume — never run on its own for routine review work). Trigger ONLY when at least one isolated fix attempt has already failed, or the user explicitly requests a full execution-path analysis — phrases like "step back", "think holistically", "analyze the whole thing", "zoom out", "look at the bigger picture", or "rethink this" qualify only in that context. Never trigger for trivial one-line fixes or first-attempt debugging. Also triggers on "/holistic", "/step-back", "/ret

2026-07-31
github-actions-author
Softwareentwickler

Authors fast, cheap, maintainable GitHub Actions workflows applying 2026 best practices: caching with `hashFiles` + `restore-keys`, parallelization via matrix + artifacts, reusability (composite actions for steps, reusable workflows for jobs), security (SHA-pinned actions, least-privilege `GITHUB_TOKEN`, concurrency), and trackable errors (named steps, step summaries, annotations, and stdout/stderr that always reaches the run log so agents can act on failures). Two modes: `scaffold` (default) generates workflow YAML; `review` audits an existing workflow against the same rules. Use when creating CI/CD pipelines, optimizing slow workflows, deduping copy-pasted YAML across repos, or auditing workflow security. Triggers on "github action", "github workflow", "ci pipeline", "create workflow", "speed up ci", "review my workflow", "/github-actions-author".

2026-07-31
implement-suggestion
Softwarequalitätssicherungsanalysten und -tester

Implements review-comment suggestions across one or more PRs. Multi-PR mode (default when $ARGUMENTS contains PR URLs; empty $ARGUMENTS auto-detects the active PR) per PR: resolves a worktree, fetches every actionable comment from both human teammates AND AI code-review bots (claude[bot], coderabbitai[bot], …), validates each through /critical + /confidence, builds a structured suggestion-pack, and dispatches a worker subagent that applies each approved change as its own commit, pushes to the existing branch, and resolves the addressed review thread — so every handled comment ends up resolved and the PR is left clean. Fast-lane for mechanical edits, standard-lane via aw-planner for architectural changes. Free-text mode applies a single pasted suggestion in the current directory. Triggers on "implement suggestion", "apply review comments", "address PR feedback", "implement reviewer feedback", "fix PR comments", "/implement-suggestion". With --watch, loops the apply on a single PR — waiting for new review-bot c

2026-07-29
Zeigt die Top 8 von 45 gesammelten Skills in diesem Repository.
reaper-jsfx-audio
Softwareentwickler

Audio effects patterns for JSFX plugins. Use when implementing filters, EQs, compressors, limiters, delays, reverbs, distortion, or modulation effects. Triggers on requests for audio effect DSP, equalizer, dynamics processing, or time-based effects in JSFX.

2026-03-13
reaper-jsfx-core
Softwareentwickler

Foundation for REAPER JSFX plugin development. Use when writing any JSFX plugin - covers EEL2 language syntax, code sections, special variables, performance optimization, and reusable library patterns. Triggers on requests for JSFX, JS effects, EEL2, or Reaper plugin development.

2026-03-13
reaper-jsfx-midi
Softwareentwickler

MIDI processing patterns for JSFX plugins. Use when building MIDI utilities, arpeggiators, chord generators, note filters, or CC processors. Triggers on requests for MIDI effects, arpeggiator, chord, transpose, or MIDI routing in JSFX.

2026-03-13
reaper-jsfx-synth
Softwareentwickler

Synthesis and instrument patterns for JSFX plugins. Use when building synthesizers, samplers, or virtual instruments. Covers oscillators, envelopes, voice management, and MIDI instrument handling. Triggers on requests for synth, oscillator, ADSR, polyphony, or instrument development in JSFX.

2026-03-13
reaper-jsfx-ui
Softwareentwickler

Graphics and UI patterns for JSFX plugins. Use when building custom interfaces with knobs, sliders, meters, waveform displays, or spectrum analyzers. Triggers on requests for JSFX graphics, custom UI, visualization, or @gfx implementation.

2026-03-13
critique
Audio- und Videotechniker

Analyzes a live REAPER mix and produces a measured, actionable critique — gain staging, frequency balance, dynamics, loudness, and stereo image — backing every claim with a meter, spectrum, or LUFS reading. Read-only: makes no changes. Use when the user asks to roast, review, analyze, or find problems in a mix. Triggers on "roast my mix", "what's wrong with my mix", "analyze my mix", "review my mix", "/critique".

2026-06-29
learn-plugin
Audio- und Videotechniker

Interview the user about a plugin and write it to their personal plugin memory for the mixing skills

2026-06-29
mastering
Audio- und Videotechniker

Masters the mix bus in a live REAPER session — gentle corrective EQ, glue compression, and a true-peak limiter targeting a platform LUFS standard — while verifying against metering and preserving the mix's character. Use when the user asks to master, finalize, or prepare a track for Spotify/Apple/streaming or a specific loudness target. Triggers on "master this", "prepare for Spotify", "final master", "hit -14 LUFS", "/mastering".

2026-06-29
mix-memory
Audio- und Videotechniker

Recall and maintain the mixing skills' memory in the versioned knowledge base (~/.claude/knowledge/) — plugin knowledge (facts + settings) and self-healing process lessons. Modes — recall (load what's relevant before work), consolidate (merge + prune), promote (turn a recurring lesson into a hard rule), status (what's stored). Triggers on "what have you learned", "recall mixing memory", "consolidate memory", "promote that lesson", "/mix-memory".

2026-06-29
mixer
Audio- und Videotechniker

Mixes a live REAPER session — gain staging, FX chains, EQ, compression, and problem-solving — executing changes in real time via the reaper MCP tools and verifying with meters. Reads and writes personal plugin + process memory so it improves each session. Use when the user asks to mix, balance, gain stage, build a vocal or drum chain, fix the low end, or make something cut through. Triggers on "mix this", "gain stage", "fix the low end", "build a vocal chain", "/mixer".

2026-06-29
lorekit-memory
Sonstige Computerberufe

Shared persistent memory for coding agents, backed by LoreKit's MCP server. Reads scoped lessons at the start of a task or when navigating into unfamiliar code (narrow-to-broad scope resolution across branch, repo, project, and global), and writes a lesson when something goes wrong — a stuck loop, a repeated command failure, a surprising gotcha, a near-miss, or a wrong assumption that cost time. Lessons are phrased as observations (never rigid rules), scoped to the narrowest namespace that fits, and deduplicated on write. Use at task start, before risky operations, and after any failure or retrospective. Triggers on "read lessons", "check memory", "what do we know about", "remember this", "save a lesson", "record this gotcha", "capture this lesson", "/lorekit-memory".

2026-07-27
lorekit-setup
Sonstige Computerberufe

Sets up a self-improvement loop for a skill, workflow, or agent using LoreKit, so a host gets better across runs by reading its own accumulated lessons at the start of every run and hardening the proven ones into permanent rules. Designs the two tiers (a fast episodic tier of LoreKit lessons, advisory-only; a slow procedural tier that promotes a recurring lesson into a host rule), chooses the lesson bucket (tag + key namespace) and scopes, and installs the entrenchment guards that stop a learning loop from reinforcing its own mistakes. Runtime reading and writing of lessons is the lorekit-memory skill; this is the authoring counterpart. Use when giving a host durable cross-run memory or wiring a lessons loop. Triggers on "set up memory for my skill", "add a self-improvement loop", "give my workflow memory", "make this learn from its mistakes", "self-improving memory", "/lorekit-setup".

2026-07-27
5 von 5 Repositories angezeigt
Alle Repositories angezeigt