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

SkyClaw: Rust-Based Autonomous AI Agent Runtime
SkyClaw is an autonomous AI agent runtime built in Rust with a 7.1 MB binary that idles at 14 MB RAM and starts in under one second. It operates on five engineering principles including autonomy, robustness, and brutal efficiency.

Open Source Browser Tool for Testing MCP Servers Without Installation
An open source web tool called MCP Playground lets developers test MCP servers directly in their browser using WebContainers, a WASM Node.js runtime. It can run npm-based MCP servers locally without backend installation and connect to remote servers via URL.

Legal MCP Server for Claude Provides Access to 4M+ US Court Opinions
A free, open-source MCP server built with Claude Code gives Claude AI access to 4M+ real US court opinions, providing 18 tools for case law search, citation tracing, Bluebook parsing, Clio practice management, and PACER federal filings without hallucinations.

Self-Maintaining Documentation System Using Fenced Blocks for Zero Drift
A developer built a bash script that extracts structured data directly from source files and injects it into CLAUDE.md through fenced HTML comment blocks, ensuring documentation stays in sync with code without manual maintenance.