latitude-dev/latitude-llm · Archived

analyze-problem

>- Analyze a problem and provide a detailed explanation of the issue, root cause, proposed fix, and verification steps.

First seen May 10, 2026

Installation

$ npx skills add latitude-dev/latitude-llm --skill analyze-problem

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from latitude-dev/latitude-llm · top by installs.

npx skills add latitude-dev/latitude-llm

Browse all from latitude-dev/latitude-llm

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 4.6K
License LICENSE
Default branch development
Open issues 26
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,594 B
  • docs SUMMARY.md 139 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 5 installs

SKILL.md

Read the provided bug report/issue/task.

Then thoroughly investigate the codebase to understand the relevant context:

  • Find the entry points involved (routes/handlers/jobs/commands) and trace the execution path that leads to the reported behavior.
  • Identify the data flow and state involved (inputs, validation, persistence, caching, permissions, feature flags, side effects).
  • Locate the expected behavior (specs/tests/docs) and compare it to the actual behavior in code.
  • If the report includes steps to reproduce, map each step to the corresponding code path and decision points.
  • Consider common edge cases (null/empty values, timing/race conditions, retries, idempotency, pagination, timezones, auth, stale cache).

Deliverable: Explain, in your own words:

  1. What you believe the issue is (observable behavior + when it happens),
  2. Why you believe it is happening (root cause and the specific assumption/logic that breaks),
  3. How you would fix it (proposed approach and what behavior/logic should change),
  4. What you would verify (minimal set of checks/tests/logs to confirm the fix and prevent regressions).

Constraints:

  • Do not apply any changes automatically.
  • Avoid listing files/components/services unless strictly necessary to support the explanation.
  • If the codebase does not contain enough context to be confident, explicitly say what’s missing and what evidence would confirm the hypothesis.