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

PgAdmin 4 9.13 Adds AI Assistant Panel to Query Tool
PgAdmin 4 version 9.13 introduces an AI Assistant panel in the Query Tool that can generate SQL from natural language when AI is configured. The update also includes a Workspace layout for distraction-free query editing and ad-hoc server connections.

Local Tool Visualizes Claude Code Session Data
A Python script reads Claude Code session data stored locally in ~/.claude/ and generates a scroll-driven visualization with D3.js charts showing daily activity, project breakdown, tool usage, and coding rhythm heatmaps.

Introducing Lean Collab: A Multi-Agent Orchestrator for Long-Running LLM Tasks
Lean Collab is an open-source orchestrator designed to manage long-running LLM tasks using coordinated, parallel sub-agents.

Giving Claude a Local LLM as an Assistant via MCP on Mac
A developer connects Claude to a local Qwen 2.5 Coder 14B via Ollama and MCP, creating a no-cost assistant for delegating tasks like text processing and handling large files.