Found-Issues plugin logs bugs Claude ignores while working on other tasks

Found-Issues is a Claude Code plugin that solves a specific blindspot: coding agents (Claude included) often notice real bugs — missing null checks, leaked tokens, race conditions — while working on an unrelated task, then move on. The plugin logs those observations so they don't get lost.
How it works
The agent maintains a docs/found-issues.md file in each repo. When it spots something out of scope, it appends a one-line entry like:
- [open] 2026-05-08 src/auth.ts:88 — leaks token in error (suggested: redact)
- [fixed] 2026-05-06 lib/foo.py:42 — null check missing (PR: org/repo#41)The closure loop is fully automated. Hooks detect when a PR addresses a logged entry and annotate it. When the PR merges, a background sync flips [open] to [fixed]. If a referenced line gets deleted, tombstone detection auto-closes it. The open-issue count appears at session start and in your statusline — no manual bookkeeping.
Installation
In Claude Code, run:
/plugin marketplace add AltDoug/claude-plugins
/plugin install found-issuesThen start a new session and run /found-issues:setup — it walks you through wiring the statusline counter so the open-issue count is always visible.
Who it's for
Developers who use AI coding agents and want to catch bugs the agent notices but doesn't fix because they're out of scope.
📖 Read the full source: r/ClaudeAI
👀 See Also

ClawMetry: Open-Source Observability Dashboard for OpenClaw Agents
ClawMetry is an open-source observability dashboard for OpenClaw agents that provides live session activity, token cost tracking, memory file change detection, and stuck session alerts. It runs locally with pip install clawmetry and was built using OpenClaw itself.

Rowboat: Open-Source AI Coworker with Knowledge Graph Memory
Rowboat is an open-source app that transforms your work into a living knowledge graph, storing data locally as Markdown, and offering AI-driven local assistance.

State of Local Deep Research Tools: GPT Researcher and Local Deep Research Lead, STORM and LangChain Projects Stagnant
A Reddit survey of local deep research projects as of May 2026 finds GPT Researcher and LearningCircuit's Local Deep Research most active; STORM and LangChain's Open Deep Research abandoned or semi-abandoned.

XLI: Open-Source Python Library for Claude Code-Style Terminal UIs
Building a coding agent? Terminal UX is half the work. XLI is an open-source Python rendering engine that replicates Claude Code's streaming markdown, tool cards, inline approvals, and slash commands without hijacking your terminal scrollback.