android-bug-hunting-dispatcher — for Claude Code android-bug-hunting-dispatcher, game-deals-android-app, community, for Claude Code, ide skills, functions exist, references, OkHttp, source set or, actual

v1.0.0

Acerca de este Skill

Escenario recomendado: Ideal for AI agents that need android bug hunt — dispatcher. Resumen localizado: A repository for an Android app showing game deals from CheakShark API # Android Bug Hunt — Dispatcher Purpose This is a bug-finding skill, not a code-review skill. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Características

Android Bug Hunt — Dispatcher
This is a bug-finding skill, not a code-review skill. The goal is to surface concrete,
runtime-affecting defects with high signal-to-noise — crashes, leaks, races, ANRs,
broken behaviour — not stylistic or architectural commentary.
The dispatcher fans out to specialist skills, each of which knows one class of bug deeply.

# Core Topics

Mithrandir21 Mithrandir21
[0]
[0]
Updated: 5/1/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
64
Canonical Locale
en
Detected Body Locale
en

Escenario recomendado: Ideal for AI agents that need android bug hunt — dispatcher. Resumen localizado: A repository for an Android app showing game deals from CheakShark API # Android Bug Hunt — Dispatcher Purpose This is a bug-finding skill, not a code-review skill. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

¿Por qué usar esta habilidad?

Recomendacion: android-bug-hunting-dispatcher helps agents android bug hunt — dispatcher. A repository for an Android app showing game deals from CheakShark API # Android Bug Hunt — Dispatcher Purpose This is a

Mejor para

Escenario recomendado: Ideal for AI agents that need android bug hunt — dispatcher.

Casos de uso accionables for android-bug-hunting-dispatcher

Caso de uso: Applying Android Bug Hunt — Dispatcher
Caso de uso: Applying This is a bug-finding skill, not a code-review skill. The goal is to surface concrete,
Caso de uso: Applying runtime-affecting defects with high signal-to-noise — crashes, leaks, races, ANRs,

! Seguridad y limitaciones

  • Limitacion: If the user has narrowed the scope ("just look for memory leaks", "compose only"), dispatch
  • Limitacion: only those specialists.
  • Limitacion: Requires repository-specific context from the skill documentation

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is android-bug-hunting-dispatcher?

Escenario recomendado: Ideal for AI agents that need android bug hunt — dispatcher. Resumen localizado: A repository for an Android app showing game deals from CheakShark API # Android Bug Hunt — Dispatcher Purpose This is a bug-finding skill, not a code-review skill. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install android-bug-hunting-dispatcher?

Run the command: npx killer-skills add Mithrandir21/game-deals-android-app/android-bug-hunting-dispatcher. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for android-bug-hunting-dispatcher?

Key use cases include: Caso de uso: Applying Android Bug Hunt — Dispatcher, Caso de uso: Applying This is a bug-finding skill, not a code-review skill. The goal is to surface concrete,, Caso de uso: Applying runtime-affecting defects with high signal-to-noise — crashes, leaks, races, ANRs,.

Which IDEs are compatible with android-bug-hunting-dispatcher?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for android-bug-hunting-dispatcher?

Limitacion: If the user has narrowed the scope ("just look for memory leaks", "compose only"), dispatch. Limitacion: only those specialists.. Limitacion: Requires repository-specific context from the skill documentation.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Mithrandir21/game-deals-android-app/android-bug-hunting-dispatcher. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use android-bug-hunting-dispatcher immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

android-bug-hunting-dispatcher

Install android-bug-hunting-dispatcher, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before...

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Android Bug Hunt — Dispatcher

Purpose

This is a bug-finding skill, not a code-review skill. The goal is to surface concrete, runtime-affecting defects with high signal-to-noise — crashes, leaks, races, ANRs, broken behaviour — not stylistic or architectural commentary.

The dispatcher fans out to specialist skills, each of which knows one class of bug deeply. The dispatcher's job is to:

  1. Scope the hunt to what's relevant for this codebase.
  2. Run the right specialists in parallel.
  3. Aggregate, deduplicate, and rank findings.
  4. Produce a single report ordered by severity.

Step 0 — Locate and characterize the project

Identify the project root and what's in it. The result of this step decides which specialists to dispatch.

bash
1# Module list and build config 2find . -name "build.gradle.kts" -o -name "build.gradle" | sort 3cat settings.gradle.kts 2>/dev/null || cat settings.gradle 2>/dev/null 4cat gradle/libs.versions.toml 2>/dev/null 5 6# Source tree shape 7find . -path "*/src/*/kotlin/*" -o -path "*/src/*/java/*" \ 8 | sed 's|.*/src/\([^/]*\)/.*|\1|' | sort -u 9 10# Key signals for which specialists to dispatch 11grep -rE "@Composable" --include="*.kt" -l | head -5 # Compose in use? 12grep -rE "kotlinx\.coroutines|Flow<|StateFlow|SharedFlow" \ 13 --include="*.kt" -l | head -5 # Coroutines/Flow in use? 14grep -rE "expect (class|fun|object|interface|val|var)" \ 15 --include="*.kt" -l | head -5 # KMP in use? 16ls -d */src/commonMain 2>/dev/null # KMP source sets? 17grep -rE "Room|@Dao|@Entity|@Database" --include="*.kt" -l | head -5 18grep -rE "Retrofit|OkHttp|HttpClient" --include="*.kt" -l | head -5

Build a small profile of the project:

SignalDispatch
Coroutines/Flow used anywhereandroid-bug-hunting-coroutine-and-flow-defects (almost always)
Activities/Fragments/Services existandroid-bug-hunting-lifecycle-leak-hunter
@Composable functions existandroid-bug-hunting-compose-correctness
Room, Retrofit, file I/O, or SharedPreferences.commit referencesandroid-bug-hunting-main-thread-violations
Cursor, InputStream, OutputStream, OkHttp Response, TypedArray referencesandroid-bug-hunting-resource-leaks
commonMain source set or expect/actual declarationsandroid-bug-hunting-kmp-defects

If the user has narrowed the scope ("just look for memory leaks", "compose only"), dispatch only those specialists.


Step 1 — Dispatch specialists in parallel

Spawn each relevant specialist in the same turn. Each receives:

  1. The shared project profile from Step 0.
  2. The path to its dedicated SKILL.md.
  3. A workspace path for findings: <workspace>/findings-<specialist-slug>.md.
  4. The shared Bug Report Format below.

Specialist prompt template

You are a specialist bug hunter focused exclusively on **{SPECIALIST_FOCUS}**.

Read your detailed playbook at {SPECIALIST_SKILL_PATH}/SKILL.md and follow it.

## Shared project profile
{PROJECT_PROFILE_FROM_STEP_0}

## Output format
Use the shared Bug Report Format. Every finding must include all fields:
Severity, Category, Location, Effort, Confidence, Description, Impact,
Evidence, Recommended Fix, Confidence Rationale.

Write findings to: {WORKSPACE}/findings-{SPECIALIST_SLUG}.md

## Discipline
- Only report things you can point to with concrete file:line evidence.
- Do not pad with stylistic suggestions or architectural opinions.
- If you are not sure something is a real defect, mark Confidence Low and
  explain what context could make it a false positive — do not omit it,
  but do not inflate it either.
- Prefer fewer high-confidence findings to many speculative ones.

Step 2 — Shared Bug Report Format

Every specialist uses this exact format. The dispatcher relies on it for aggregation.

markdown
1### BUG-{NNN}: {Short title} 2 3| Field | Value | 4|---|---| 5| **Severity** | Critical / High / Medium / Low | 6| **Category** | e.g. "Memory leak", "Race condition", "Lifecycle violation" | 7| **Location** | `path/to/File.kt:LINE` (or `Class.method`) | 8| **Effort** | Trivial / Small / Medium / Large | 9| **Confidence** | High / Medium / Low | 10 11**Description.** One to three sentences stating exactly what is wrong. 12 13**Impact.** What happens at runtime. Be concrete: "Activity is retained after rotation, 14leaking ~4MB per rotation"; "Crashes with `IllegalStateException` when user backgrounds 15the app during checkout"; "ANR after ~3s when network is slow on cold start". 16 17**Evidence.** 18```kotlin 19// minimal snippet (≤ 15 lines) demonstrating the antipattern

Recommended fix. A concrete change. Show before/after when helpful, or describe the exact API/pattern to use instead.

Confidence rationale. Why this is (or might not be) a real bug. Note any context that would change the verdict.


### Severity rubric

- **Critical** — crashes in normal use, data loss, security breach, ANRs reachable on
  common code paths, leaks that grow unboundedly with normal usage.
- **High** — leaks bounded but significant, races that produce wrong state intermittently,
  broken features for a meaningful subset of users, missing cancellation that leaks
  coroutines after lifecycle end.
- **Medium** — performance issues, sporadic incorrect behaviour under specific conditions,
  resource leaks bounded to a single screen.
- **Low** — minor inefficiency, latent issue that is not currently reachable but would
  become a bug under foreseeable changes.

### Effort rubric

- **Trivial** — under 30 minutes, single-file change, no behaviour change to test.
- **Small** — under 4 hours, clear local pattern fix, light testing.
- **Medium** — 1–2 days, refactor across a few files, needs new tests.
- **Large** — more than 2 days, architectural or cross-module change.

### Confidence rubric

- **High** — well-known antipattern with clear runtime evidence; would surface in code review.
- **Medium** — likely a bug, but depends on calling context the analyzer cannot fully see.
- **Low** — suspicious; flag for human judgment. Always pair with an explicit rationale.

---

## Step 3 — Aggregate and rank

Once all specialists have written their findings:

1. **Read every `findings-*.md`.**
2. **Deduplicate.** If two specialists flag the same root cause from different angles
   (e.g. android-bug-hunting-lifecycle-leak-hunter flags a Fragment holding a binding past `onDestroyView`,
   and android-bug-hunting-compose-correctness flags the same Fragment for a related state issue), unify
   them into one finding that cites both perspectives.
3. **Renumber.** Assign global IDs `BUG-001`, `BUG-002`, … in final severity order.
4. **Sort.** Critical first, then High, Medium, Low. Within a severity tier, sort by
   Confidence (High first), then Effort (Trivial first — quick wins surface first).

---

## Step 4 — Produce the final report

Write to `<workspace>/android-bug-hunt-report.md` using this structure:

```markdown
# Android Bug Hunt — Report

## Summary
- Total findings: N
- Critical: X · High: Y · Medium: Z · Low: W
- Specialists run: <list>
- Files scanned: <count>

## Quick-win table
A compact table of all findings ordered as in Step 3, columns:
ID · Severity · Category · Location · Effort · Confidence · Title

## Findings (full detail)
Every BUG-NNN in full format as defined above, in sorted order.

## Specialists that found nothing
List any specialists that ran and produced zero findings — this is information.

## Notes and limitations
- Anything the hunt could not check (e.g. "no test sources scanned",
  "native code not analyzed", "obfuscated module skipped").
- Any findings where confidence is Low and the user should weigh in.

Present the report to the user. If there are more than ~25 findings, also produce a top-10 executive list at the top so the urgent items are immediately visible.


Notes

  • This skill is for finding bugs, not for reviewing architecture or style. If the user asked for a review, prefer the android-review skill instead. If they ask for both, run both and combine — but keep the two reports separate so the bug hunt's signal-to-noise stays high.
  • For very large codebases, scope to a directory or module if the user named one.
  • A finding without file:line evidence does not belong in the report. Discard speculation that a specialist could not anchor to source.

Habilidades relacionadas

Looking for an alternative to android-bug-hunting-dispatcher or another community skill for your workflow? Explore these related open-source skills.

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumen localizado: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Resumen localizado: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

Resumen localizado: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Resumen localizado: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Desarrollador