Seven hundred strangers filed the same bug

A dated public record of one defect class — a tool that reports success when it did not do the thing. I did not find these. The people they happened to found them, wrote them up, and posted them, and every one is credited and linked. · 3 August 2026

I have a survey where I go and read code myself and check one question: can this tool say I could not do this, or does a failure to look come out the same shape as a clean result. Thirteen codebases, seven hits, six misses, all published.

This page is the other half, and it costs me nothing. It turns out a lot of people hit this and write it down. So I searched GitHub issues for the words a person types when it happens to them — "fail open", "silently degrades", "reports success", "exits 0" — and kept the ones filed by somebody who does not own the repository.

That last filter is the whole thing. A maintainer filing on their own project is a project doing its job. A stranger filing means somebody else's code cost them an afternoon, or a device, or a logout that did not log anyone out.

The number I got wrong first, and the one I got wrong second

My first run said 122. I was about ninety seconds from putting that on this page. It was wrong in three ways and all three flattered me:

Every single date was inside 48 hours. Because I sorted newest-first and took 25 per query. I read that as the defect class being everywhere right now. It is the sort order. I have written down before that a perfectly uniform result usually means the instrument is broken rather than the world — and here it was a date histogram, and it still took me a minute.

A large slice were agents filing at agents. Handles ending in [bot] and -agent, filing into repositories that are themselves agent frameworks. My own-repo check cannot see a bot that files everywhere.

And a long tail of projects with no users — issue numbers in the thousands, a weekend old.

So I added one more filter with an actual reason behind it: the repository needs 300+ stars. Not because stars are quality. Because a stranger filing a careful defect report against a project with real users is a different kind of event.

issues scanned               3,336
filed by non-owners        1,787
across repos                1,250
excluded, under 300 stars  −1,062
surviving                    725  (664 different people, 476 projects)
of those, filed by an insider   53  (at least)
of those, read by me at source   12

The twelve below I opened and read. The other 713 I have not, and I am not going to describe them as if I had. 300+ stars is a proxy for "real project," not for "I verified this."

The twelve I read

rook/rook#18089 — the cleanup job that always succeeds

filed by @somanchi004-code, 3 Aug 2026 · 13,591★

"The cleanup Job created for cleanupPolicy.sanitizeDisks reports success whether or not the disks were actually sanitized. Every error in the sanitize path is logged and discarded, and rook ceph clean host returns nil unconditionally, so the Job's completion status — the only signal a user gets — is affirmatively wrong on failure."

Disk sanitization. The job whose entire purpose is that data is gone.

bkerler/edl#809raw programming ok, and nothing was written

filed by @suddenBook, 3 Aug 2026 · 2,513★

"If the device does not accept the <program> command, cmd_program() skips the entire write loop and still returns True. qfil has no way to know, prints [qfil] raw programming ok., exits 0, and the image is simply not on the device."

Firmware flashing. A 127-entry program list, a success message, and an unwritten phone.

haproxytech/kubernetes-ingress#834 — exit 0 after a fatal failure

filed by @tomasptacnik-arch, 3 Aug 2026 · 862★

"the controller exits with status 0 after a fatal startup failure… This causes a service manager using a failure-based restart policy, such as systemd with Restart=on-failure, to treat the controller termination as successful and leave it stopped."

This is my favourite one on the page. Restart=on-failure never fires, because as far as the machine is concerned there was no failure. The thing built to catch it is the thing that got lied to.

openeverest/openeverest#2766 — the nil that is guaranteed nil

filed by @recharte, 3 Aug 2026 · 862★

"tokenStore.Add declares updateErr for the UpdateSecret call but returns err from inside the if updateErr != nil branch. At that point err is guaranteed nil, because the earlier GetSecret already returned on failure — so a failed write to the blocklist Secret is reported as success."

Consequence, in their words: server-side logout stops being reliable. One wrong variable name inside a correctly-written error branch.

openai/openai-node#2046 — the stream that ends cleanly because it broke

filed by @pouyashahrdami, 3 Aug 2026 · 11,089★

"a terminal error that occurs mid-stream can be silently swallowed — the loop finishes cleanly as if the response completed successfully, when it actually failed (e.g. the connection dropped)."

A for await that ran out of chunks and a for await whose connection died are the same loop exit.

ClickHouse/ClickHouse#113163 — silently ignored and misreported

filed by @ttrevillian, 3 Aug 2026 · 49,035★ · filed under "Company or project name: Customer request"

use_persistent_processing_nodes = false is ignored, and then reported back as if it had been applied. Two separate failures stacked: the setting does not take, and the system tells you it did.

apache/rocketmq-dashboard#888 and #886 — the export button that is a toast

filed by @Aias00, 3 Aug 2026 · 1,378★

onClick={() => message.success(`已导出 ${filtered.length} 个 Group`)}

The success message is the entire implementation. Same reporter filed it twice, for Consumer Group and for Topic, because it is the same button in two places.

strands-agents/harness-sdk#3617 — a guardrail that fails open on a missing field

filed by @strandly-the-agent, 3 Aug 2026 · 6,780★

Guardrail block detection fails open when Bedrock omits an optional field, so blocked content is never redacted. An absent field and a negative verdict, one artifact.

⚠ Flagged honestly: this reporter is an agent, not a person. I kept it because the finding is real and the repository is real, and because pretending otherwise on a page about honest reporting would be funny in the wrong way.

open-metadata/OpenMetadata#30900 — the filter that was never a parameter

filed by @IceS2, 3 Aug 2026 · 14,635★

"The three resources never declare a service @QueryParam. JAX-RS discards an undeclared query parameter without an error, so the caller gets a 200 with unfiltered results — indistinguishable from a filter that matched everything."

This is the prettiest one on the page. You ask for the tables under one service, you get every table in the instance, and a 200. Nobody would ever look twice.

tursodatabase/turso#8167 — the * that is not an operator

filed by @killianhuyghe, 4 Aug 2026 · 23,653★

"The documented single-term prefix operator 'data*' has no effect. * is not special-cased at all — it is swallowed into the term like any other punctuation — so data* returns exactly what data returns, and a genuine prefix like dat* returns nothing."

Found, in their words, while evaluating the database for a legal-tech product whose main surface is as-you-type search. The documentation lists the feature. A query using it returns rows. They are just the wrong rows, and there is no version of this that throws.

serverless/serverless#13770 — the deploy that quietly did not deploy

filed by @mungojam, 3 Aug 2026 · 46,917★

"serverless deploy can silently skip the CloudFormation update and S3 upload even when the Lambda code has genuinely changed — no error, no 'no changes' message, it just exits after listing S3 objects."

Not even a no changes line to argue with. The command runs, prints something plausible, exits, and your new code is not in production.

block/buzz#4580accepted: true, zero rows deleted

filed by @redirwin, 3 Aug 2026 · 21,867★

"A non-owner submitting the CLI's kind:5 deletion for another author's workflow receives {"accepted":true, "event_id":"…"} — but the workflow persists and keeps firing. Cause: delete_workflow_for_owner matches rows on owner, deletes zero rows for a non-owner, and the acceptance is reported regardless of effect."

An authorisation failure and a successful delete, same response body. The workflow keeps running and the person who deleted it has a receipt saying they didn't.

google/osv-scanner#2756 — a vulnerability scanner that drops vulnerabilities

filed by @hyhmrright, 30 Apr 2026 · since closed

"filterPackageVulns contains a logic guard that silently drops vulnerabilities when all Groups entries are filtered out by the ignore configuration — even if those vulnerabilities were not explicitly ignored."

if len(newGroups) > 0 {   // ← problematic guard

This is the purest one on the page. A security scanner, from Google, where the thing you asked it to find comes back absent because of an unrelated ignore rule. The scan is clean. The vulnerability is still there. Nothing in the output differs.

microsoft/aspire#16663 — deploy succeeds with Docker not running

filed by @IEvangelist, 1 May 2026 · since closed

"aspire deploy reports a successful deployment for a Docker Compose environment, but it does not appear to deploy anything. The command succeeds even when Docker Desktop is not running, and no containers or images are created."

Not a subtle edge case. The daemon it deploys to is switched off, and it says it worked.

langchain-ai/langchain#34804 — the parameter that only applies on overflow

filed by @artyom-dehtiar, 18 Jan 2026 · open

TextSplitter's chunk_overlap is silently ignored unless a chunk_size overflow happens to occur. You set the parameter, it is accepted, and most of the time it does nothing — so retrieval quality is quietly worse than the config you wrote.

pytorch/pytorch#187715 — a mode that degrades instead of refusing

filed by @sanbuphy, 19 Jun 2026 · since closed

"torch.compile(mode='reduce-overhead') silently degrades training on ROCm — cudagraph_trees has no HIP guard."

An unsupported path with no guard on it, so instead of refusing it runs, and the loss converges slower. The failure is a number being slightly worse, over hours, on hardware that cost a fortune.

anomalyco/opencode#8422 and #15248 — the updater that always updated

filed by @asaf-genie (14 Jan 2026) and independently by @zhangwanli09 (26 Feb 2026) · 192,916★

●  From 1.1.10 → 1.1.1534543
◇  Upgrade complete
└  Done

➜  opencode --version
1.1.10

Six weeks apart, two people, same finding. The success message is unconditional — it prints the version transition it intended, not the one that happened, and the only way to catch it is to ask a second time in a different way.

anomalyco/opencode#14551 — exit 0 on session errors

filed by @kevinWangSheng, 21 Feb 2026

"opencode run always exits with code 0 even when the AI session encounters errors… In packages/opencode/src/cli/cmd/run.ts, the loop() promise that processes session events (and tracks the error variable) is not awaited."

The error is tracked correctly. Nobody waits for the thing tracking it. Their own words for the consequence: this breaks CI/CD pipelines and scripts that rely on exit codes to detect failures — which is to say, it breaks precisely the machinery built to catch it.

Ten of the 725 are in that one project, and four are variations of the same defect. I am not holding that up as a project being unusually bad — a repository with that much traffic accumulates everything. It is the clearest available demonstration that this is a class and not a bug: the same failure lands in the updater, the run command, the sidecar, and the provider options, independently, filed by four different strangers.

Three self-updaters, three projects, one defect

And then it turns up again somewhere else entirely. openai/codex#19421, filed by @guluarte on 24 April 2026:

Updating Codex via `sh -c 'curl -fsSL https://chatgpt.com/codex/install.sh | sh'`...
curl: (22) The requested URL returned error: 403

Update ran successfully! Please restart Codex.

Two lines apart. The 403 is printed, and then the success message is printed, and nothing in between consults the first to decide the second.

That is three self-updaters now — two independent reports against opencode and this one against codex — and the mechanism is identical in all three: the success message is generated from the intent, not from the outcome. The updater knows what it meant to do. It says that. Nobody asks the installed thing what version it is afterwards.

Which also makes the fix identical, and it is two lines: read the version back after upgrading, compare it to the target, and say so if they differ. The reason nobody writes those two lines is that without them the failure is invisible — the log looks exactly like a successful update, because the part that would disagree was never asked.

garrytan/gstack#2421 — the gate that cannot fail

filed by @meshailabs, 31 July 2026 · open, zero comments · 126,130★

"bun test on a clean main exits 0 while tests are failing, having run roughly 23 of 409 test files. It never prints a summary line. The suite cannot fail, so it cannot gate anything."

A stray process.exit(0) truncates the run. Six percent of the suite executes, the exit code is always zero, and there is no summary line — so the truncation leaves no trace to notice. Meanwhile CONTRIBUTING.md presents this as the tier-1 gate that "runs on every commit".

The detail that makes this the best specimen on the page is the reporter's own: the only reason it has not produced a false-green CI badge is that no workflow currently runs the full suite. So the check is both broken and unwired, and the obvious improvement — wiring it into CI — is the thing that would have converted a dead check into a lying one.

What is actually the same about all of them

Not the language — Go, Python, TypeScript, C. Not the domain — disks, phones, ingress, streams, databases, deploys, a vulnerability scanner, a dashboard button.

In every one, the failed state and the successful state are the same artifact. Exit 0. A returned nil. A True. A loop that ended. A toast that fired. There is nothing to see, so no amount of looking finds it, so it survives review, and it ships.

And the ones that hurt most are the ones where something downstream was built to catch failure and got told there wasn't one: systemd's restart policy, a guardrail, a cleanup job's completion status. The safety net is downstream of the lie.

If you are on this page

Then you already found one of these yourself, the hard way, and wrote it up carefully enough that I could quote it. You do not need me to explain the problem to you.

The question I would actually ask you: how did you find it? Every one of these surfaced because something contradicted something — telemetry disagreed with config, a device did not boot, a file did not appear. How many more are in your stack that never produced a contradiction for anyone to notice?

I do that check for money — a day on a toolchain, hunting this class across wrappers, exit codes, artifacts and the gates that consume them, with reproducing fixtures and one retest. What that looks like. But I would honestly rather hear how you found yours, and if you tell me I will put it on this page with your name on it.

The whole register

All 725, newest-heaviest first by project size. Every link goes to the issue as its author filed it. I have read sixteen of these at source; the rest are counted, matched on title, and not vouched for by me line by line.

If one of these is yours and you would rather it were not listed, mail me and it comes off the same day, no questions.

projectissuefiled bywhen
openclaw/openclaw[Bug]: `openclaw crestodian` exits 0 with "needs interactive TTY" error in non-TTY contexts; sib@Crystora2026-04-28
openclaw/openclaw[Bug]: plugins enable <nonexistent-id> writes a stale plugin config entry and exits 0@Crystora2026-04-28
openclaw/openclawbug: sessions_send returns 'ok' before Discord delivery, errors silently swallowed@cash-echo-bot2026-01-08
openclaw/openclaw[Bug] Per-model params.thinking silently ignored — thinkingDefault always wins@cmfinlan2026-03-01
openclaw/openclaw[Bug] Per-model params.thinking silently ignored — thinkingDefault always wins@cmfinlan2026-03-01
openclaw/openclawvoice-call: TTS responses not played - speak() errors silently swallowed@biggiesmallsbot2026-01-27
openclaw/openclawQQ Bot: lane errors (rate limit, timeout) are silently swallowed with no user feedback@itanyplus2026-05-29
openclaw/openclawCron delivery reports success but WeChat message never arrives (session-guard.ts suspected)@Caesarliu12026-04-27
openclaw/openclawCron delivery reports success but WeChat message never arrives (session-guard.ts suspected)@Caesarliu12026-04-27
openclaw/openclaw[Bug]: Open claw installation fails on npm: ! npm install failed for openclaw@latest@guybashan2026-02-22
openclaw/openclaw[Bug]: Bootstrap files in agentDir are silently ignored — only workspace directory files are inj@tuna-chin2026-02-28
openclaw/openclawSteer queue mode silently degrades to followup — messages never injected mid-turn at tool call b@ppamment2026-03-20
openclaw/openclaw[Bug]: Google Chat: Space/Group messages silently ignored (DMs work correctly)@rubensandrade-sketch2026-03-31
openclaw/openclawSlash commands silently ignored in Telegram forum group topics@maxumbra2026-02-27
openclaw/openclawBug: sessions_spawn model parameter silently ignored — sub-agents always use orchestrator defaul@danen-carlson2026-04-30
openclaw/openclaw[Bug]: session-memory hook silently skipped for /new via Discord — command:new event not emitted@pk1971972026-02-25
openclaw/openclawCron scheduler wake timer not firing - jobs skipped silently@auram-stone2026-02-09
openclaw/openclawWebChat TTS reports success but produces no audible playback or downloadable audio (Telegram wor@andhai2026-03-29
openclaw/openclawbundle-mcp Streamable HTTP client: opens optional GET SSE stream before POST initialize; fails 4@Studioscale2026-04-27
openclaw/openclawBug: auth-profiles.json field name `api_key` silently ignored — correct field is `key`@zeeyuu2222026-03-30
openclaw/openclaw[Bug]: agentRuntime=claude-cli silently ignored on cold-start 2026.4.26 install — dispatcher rou@dadaz9112026-04-29
openclaw/openclaw[Bug]: Matrix bindings for per-room agent routing are silently ignored@cpgeek2026-06-01
openclaw/openclawCron failureAlert silently swallowed by quiet exits and misses WSL2 drvfs mount failure@warren2008-2020-spec2026-07-31
openclaw/openclawCron jobs silently skipped when Gateway restarts at scheduled time@jmworks2026-01-29
openclaw/openclawCron jobs silently skipped when timer fires at exact scheduled time@gutscdav0002026-02-21
openclaw/openclaw[Bug] bundled-runtime-deps installer reports success after partial install on ETIMEDOUT, leaving@mogglemoss2026-04-30
openclaw/openclaw[Bug]: Node.js auto-installer fails silently with ioctl errors then falsely reports success befo@ItsMeForLua2026-04-28
openclaw/openclaw[Bug] Gateway crash loop after self-update: stdin hang + v2026.3.28 `gateway` command exits 0 wi@arcabotai2026-03-31
openclaw/openclawBlueBubbles: reply threading silently degrades when Private API cache expires@omarshahine2026-03-12
openclaw/openclawCron: one-shot (at + deleteAfterRun) jobs silently skipped as 'disabled'@soymarketing2026-02-17
openclaw/openclaw[Bug]: openclaw system event --mode now silently skipped when HEARTBEAT.md is effectively empty@nklwsy2026-02-12
openclaw/openclawv2026.3.28: Discord extension silently skipped during gateway startup — zero channels load despi@samanthatwombly2026-03-30
openclaw/openclawModel switch via /model command reports success but doesn't actually switch@OolonColoophid2026-01-22
openclaw/openclaw`openclaw doctor --fix` reports success but bundled plugin deps land outside the bucket → infini@DoTheWorkNow2026-04-27
openclaw/openclawGemini finishReason (SAFETY, RECITATION, MALFORMED_FUNCTION_CALL) swallowed as generic error@Jackten2026-01-25
openclaw/openclaw[Tech-Debt]: Use of generic Error for process exit simulation causes swallowed control-flow exce@aniruddhaadak802026-06-29
openclaw/openclaw[Bug]: Gateway "full process restart" exits PID 1 with code 0 → Docker Swarm task stays Complete@du-nguyen-IT0072026-04-28
openclaw/openclawGateway exits with code 0 when critical channel exhausts restarts, preventing systemd auto-recov@adithyan-ak2026-03-26
NousResearch/hermes-agentSecurity: Slack Block-Kit approval handler fails open when SLACK_ALLOWED_USERS is unset (any cha@dhyabi22026-06-01
NousResearch/hermes-agentdelegate_task: per-task model override is silently ignored — children always use parent's model@mjwicker2026-04-30
NousResearch/hermes-agentDesktop sidebar session pin/unpin does not persist: backend PATCH rejects 'pinned' (400, error s@zedclaw132026-07-31
NousResearch/hermes-agent[Bug]: Holographic memory silently degrades to FTS5-only when numpy is missing — no warning, no @albertoMartinsen2026-04-29
NousResearch/hermes-agentDesktop: enabling Message reactions never reaches backend — agent never reacts (config.set 4002 @y1jiaoao2026-08-03
NousResearch/hermes-agentholographic memory: HRR silently degrades to FTS5 when numpy is missing@jr5512026-05-28
NousResearch/hermes-agentTUI: compression count warning (accuracy degrade) is silently swallowed@laoli-no12026-06-01
NousResearch/hermes-agent[Bug]: ContextCompressor.on_session_reset() fails to reset _summary_failure_cooldown_until, cau@SimbaKingjoe2026-04-26
NousResearch/hermes-agent[Bug]: [Slack] Thread parent messages from bots using attachments (e.g. Datadog) are silently sk@SebasSotoA2026-05-27
NousResearch/hermes-agentInbound videos from all platforms (WeChat, etc.) are silently ignored — no transcription, no vis@yyufoyy022026-05-01
NousResearch/hermes-agent[Bug] Anthropic 'sensitive' stop reason silently swallowed — user gets truncated output with no @SHL0MS2026-03-31
NousResearch/hermes-agent[Bug]: _summary_failure_cooldown_until not reset on /new or /reset — compression skipped silentl@nftpoetrist2026-04-25
NousResearch/hermes-agentKanban DB schema migration silently skipped — TEXT PRIMARY KEY tables never upgraded to INTEGER @monk02026-05-30
NousResearch/hermes-agent[Bug]: Desktop `/new` never commits the old session to OpenViking — memory extraction silently s@lkaiiu2026-07-30
NousResearch/hermes-agentAuto session titles silently skipped when history contains technical role='user' entries (compac@KIAgent012026-08-02
NousResearch/hermes-agentbug: oneshot exits 0 with empty final response@briancl22026-05-30
NousResearch/hermes-agent[Bug][DingTalk] Media upload failure silently degrades to placeholder text@ihainan2026-04-11
anomalyco/opencodeDesktop Linux: 'Open with app' fails for Sublime Text and Zed with os error 2@AutomatorAlex2026-03-31
anomalyco/opencodeDesktop fails to show sessions when project is opened through a symlink path@luolong472026-06-01
anomalyco/opencodePlugin OAuth auth methods silently ignored (shadowed by other plugins)@thoreinstein2026-01-22
anomalyco/opencode`opencode upgrade` reports success every time@asaf-genie2026-01-14
anomalyco/opencodeAzure provider: reasoningEffort model option silently ignored@meruiden2026-03-31
anomalyco/opencodeopencode upgrade reports success but version remains unchanged@zhangwanli092026-02-26
anomalyco/opencodefix: run command exits with 0 on session errors@kevinWangSheng2026-02-21
anomalyco/opencode[linux] opencode silently exits (code 0) on x86_64 CPUs without AVX2 support when installed via @PabloVitasso2026-03-30
anomalyco/opencodeBug: Sidecar exits with code 0 on startup — GUI and TUI both affected@ngleoi2026-06-28
anomalyco/opencode[Windows] "Open in → PowerShell" fails with CommandNotFoundException (open-path runs the directo@zk-boop2026-08-03
microsoft/vscodeIntegrated Browser+Agent: `open_browser_page` tool call fails with ERROR: Access to 127.0.0.1 is@rynoV2026-07-01
microsoft/vscodeLive Preview: "Open in External Browser" from embedded preview fails with "Failed to open (0x2)"@Luna-Sterling2026-06-30
microsoft/vscodeFailed to open chat session: Session file is corrupted (line 8: Unknown event type: "skill.invok@alexdima2026-01-30
microsoft/vscode"BUG in 2026 Light Theme" Menu items fail to open submenus@coolmian2026-01-29
microsoft/vscodeVS Code fails to open on Windows 11 Enterprise Multi-Session (FSLogix) — ENOENT mkdir %USERPROFI@knbsilva2026-02-23
microsoft/vscodeCopilot Agent Mode silently degrades to Ask Mode mid-task, without notification@MarcoPolo4832026-02-19
ollama/ollamaQwen 3.5 27B: Tool calling completely non-functional and repetition penalties silently ignored@BigBIueWhale2026-02-27
open-webui/open-webuiissue: Open WebUI fails to persist WEBUI_BANNERS because BannerModel is not JSON serializable@TobiasGoerke2026-06-30
open-webui/open-webuiissue: Uploading KB file on current dev / 0dc74a8 fails with 'open_webui.models.files.FileModel'@athoik2026-01-25
open-webui/open-webuiissue: Latest docker image ghcr.io/open-webui/open-webui:ollama fails@RattyDAVE2026-03-27
open-webui/open-webuiBackground tasks silently skipped when Socket.IO disconnected@ataraxiaone2026-03-31
open-webui/open-webuiissue: a timer whose chat completion raises is recorded as completed and the failure is silently@silentoplayz2026-07-31
langchain-ai/langchain`TextSplitter` `chunk_overlap` is silently ignored unless `chunk_size` overflow occurs@artyom-dehtiar2026-01-18
vercel/next.jsDev server silently exits (code 0) with cacheComponents + Turbopack on Node 24@quantizor2026-03-22
vercel/next.jsTurbopack builds mangle server class names with no opt-out: experimental.serverMinification sile@andres-dejesus2026-08-03
anthropics/claude-code[DOCS] Hook reference omits the PowerShell tool's tool_input schema, so a PreToolUse PowerShell @karlkfi2026-08-03
anthropics/claude-code[BUG] cleanupPeriodDays: 99999 ignored — 490 sessions silently deleted despite explicit setting@TweedBeetle2026-03-31
anthropics/claude-codeTask subagents do not load project CLAUDE.md or .claude/rules/ -- project configuration silently@nobul-jose2026-02-27
anthropics/claude-code[BUG] Plugin hooks.json entries with shell-spawning command silently skipped on Windows; node-sp@VISDE2026-04-29
anthropics/claude-codeheadersHelper for HTTP MCP servers is silently ignored — script never executed@tlongccm2026-03-31
anthropics/claude-codeAgent tool's `model` override silently ignored — fork always runs as parent's model@CaseyLeask2026-04-30
anthropics/claude-code[BUG] Vi mode escape key has 50ms hardcoded delay in tmux — kitty keyboard protocol negotiation @wrizvi2026-02-26
anthropics/claude-code[BUG] Native installer reports success but binary missing on Void Linux@joeltco2026-01-26
anthropics/claude-code[BUG] `claude` exits silently (code 0) when ripgrep/fzf not installed in a docker container@LZong-tw2026-01-06
anthropics/claude-code[BUG] Web sessions in VSCode extension fail to open - "No conversation found with session ID"@DavidAbril4112026-03-31
anthropics/claude-code[Bug] Chrome profile selection inconsistent and fails to detect open instances@smaccoun2026-01-23
anthropics/claude-code[BUG] Windows: Bash tool fails with EINVAL on tasks/*.output file open (v2.1.53)@masahiroono362026-02-25
anthropics/claude-code[BUG] Bash tool fails with EINVAL on Windows - cannot open task output file@BrewingCoder2026-02-25
anthropics/claude-codeConversation history fails to open in VS Code panel across projects@hiddenadhd2026-02-24
anthropics/claude-code[BUG] LSP tool: @angular/language-server returns empty results — harness does not open companion@w3geekery2026-04-29
anthropics/claude-code[BUG] Session degrades silently after version update mid-session@marcelopaniza2026-03-26
anthropics/claude-code/usage Usage tab silently degrades to qualitative-only — no progress bars, no error@zach-is-my-name2026-04-27
anthropics/claude-code[BUG] forkContext: true in subagent frontmatter is silently ignored@janbam2026-01-24
anthropics/claude-codeSlash-prefixed input (e.g. `/something`) is silently ignored instead of returning an error@omkate2026-03-31
anthropics/claude-codePreToolUse hooks "ask"/"deny" decisions are silently ignored for all auto-accepted tools@dead-DAY-TUH2026-03-30
anthropics/claude-codeCLAUDE.md explicit code-style rules silently ignored during implementation@mimuelas2026-03-30
anthropics/claude-codeCustom agents via --agent flag silently ignored on Windows (2.1.87)@mtf7cwru2026-03-30
anthropics/claude-code[BUG] Native installer reports success but fails to install binary on Raspberry Pi (ARM64)@jasonftl2026-01-24
anthropics/claude-code[BUG] /login reports success but the bearer token is immediately invalid (401).@mosseri2026-01-11
anthropics/claude-code/desktop reports success but session never appears in Claude Desktop (sessionId=null + LSHandler@larskluge2026-05-01
anthropics/claude-code[BUG] Windows: Claude Code exits silently with spawn-rx errors on v2.0.76@khs72005062-debug2026-01-04
anthropics/claude-codeWSL interactive mode exits immediately (exit=0) while --print works@itsu072026-02-21
anthropics/claude-codeModel repeatedly ignores skill specs, fabricates execution evidence, silently degrades multi-age@FriskySatyr2026-04-16
anthropics/claude-codeTelegram channel plugin: notifications/claude/channel silently ignored in remote-control session@romular212026-03-30
anthropics/claude-code[BUG] Custom `voice:pushToTalk` keybinding silently ignored on Windows v2.1.126 (regression of v@mansooraftab2026-05-01
anthropics/claude-codeStdio MCP server cwd field silently ignored on Windows (2.1.123)@nratzan2026-04-29
anthropics/claude-code[BUG] Cowork scheduled-task system silently dropping fires (recurring crons skipped on weekends,@fletch4949492026-05-01
anthropics/claude-code[BUG] Edit tool silently fails (reports success, no write) when target is a relative `..` symlin@frankacano-dev2026-04-23
anthropics/claude-coderun_in_background silently kills active processes and reports success (exit code 0)@bemental2026-05-31
anthropics/claude-code[BUG] Plugin update fails silently when MCP server holds open file handles; stale binary continu@jnbarlow2026-07-01
anthropics/claude-code[Bug] Model generating incorrect bash commands and false success reports@terry-nederveld2026-05-31
anthropics/claude-code[BUG] Cowork scheduled task creation fails: "path moved between validation and open" — TOCTOU gu@NisioOne2026-07-31
anthropics/claude-codeModel repeatedly claims to be near its context limit at 43–72% remaining — and silently degrades@fjwood692026-08-02
anthropics/claude-code[BUG] headersHelper never executed for HTTP managedMcpServers (Claude Desktop, macOS) — static h@BorntraegerMarc2026-07-01
anthropics/claude-code[BUG] Auto-update silently exits 0 when native optional dependency download is throttled — leave@AfonsoZhang2026-07-01
anthropics/claude-codeclaude.exe exits with code 0, zero output on stdout/stderr, for any command@drewwilliamsquant2026-06-29
golang/gox/net/internal/http3: malformed trailer fields are silently ignored@racequite2026-08-01
garrytan/gstackgstack-redact: invalid --max-bytes silently turns the fail-closed oversize guard into fail-open@jbetala72026-06-01
garrytan/gstackbun test exits 0 after running ~6% of the suite: stray process.exit(0) truncates the run and mas@meshailabs2026-07-31
ggml-org/llama.cppMisc. bug: llama-server fails open when JSON schema grammar parsing fails@supersteves2026-01-23
godotengine/godotOn Android, file operations fail eventually when keeping file descriptor open@Senko-heart2026-01-29
godotengine/godotZIPPacker silently fails when target file is already open via FileAccess@rikzun2026-04-27
godotengine/godotCan't open dynamic library: Error: dlopen failed: "***.so“ has bad ELF magic: 504b0304.@html5syt2026-02-01
tauri-apps/tauri[bug] pnpm tauri dev fails to open any apps on Fedora 43@bluewave412026-03-28
immich-app/immichFile descriptor/handle left open on upload fail@goalie20022026-01-28
browser-use/browser-useGreat project! I tried playing Gold Miner via browser-harness in Codex. It can successfully open@jiabaogithub2026-05-31
browser-use/browser-useTarget.createTarget fails with 'no browser is open' when all tabs are closed due to newWindow=fa@chehov2026-01-20
google-gemini/gemini-cliBuild script exits with success code (0) when esbuild module is missing@Nachobr2026-01-08
google-gemini/gemini-clianswer-vs-act.eval.ts: timeout defined inside `params` instead of top-level field — silently ign@ishansurdi2026-02-28
google-gemini/gemini-clirun_shell_command reports false success for background processes that immediately crash or fail @schygge2026-01-29
microsoft/terminalWindows Terminal Fails to Open Browser Window for Authentication@jerquiaga2026-02-26
openai/codexAGENTS.md: git submodule stops discovery at submodule root; superproject AGENTS.md silently igno@chirag1272026-07-01
openai/codex[Desktop] Open in Finder fails for URL-encoded local paths (Chinese filenames)@Astro-Han2026-02-28
openai/codexCodex VS Code extension fails to recognize the file I’ve opened or the code I’ve selected@99zhangpengxiang2026-01-31
openai/codexVS Code extension silently fails to open older local sessions@RE-codes2026-05-01
openai/codexWindows Desktop 26.527.3686.0 AppsFolder launch opens Chrome and exits; direct Codex.exe launch @mfushun-cmyk2026-05-30
openai/codexUpdater reports success after install script fails with curl 403@guluarte2026-04-24
openai/codexOpen in VS Code silently fails on Windows when VS Code is configured to run as administrator@wesias72026-04-27
openai/codexCLI /copy reports success but leaves clipboard empty on local Linux X11@sebastianelsner2026-03-24
openai/codexcodex exec exits 0 even when command_execution fails with nonzero exit code@aquiles-ai1232026-03-23
openai/codex[Desktop] Open in Finder fails for URL-encoded local paths (Chinese filenames)@xisheng6872026-03-30
openai/codexWindows - "Open project in Codex" fails for all folders@abaptistaw2026-05-30
openai/codexUpdater reports success even when npm min-release-age blocks @openai/codex upgrade@bps-tanaka2026-04-01
openai/codexPython asyncio subprocess wait can timeout inside Linux bwrap sandbox after child exits with ret@SUNGBEOMCHO12026-04-28
openai/codexBug: CLI wrapper exits 0/hangs after child terminates by signal@Kbediako2026-01-26
pytorch/pytorch`torch.compile(mode='reduce-overhead')` silently degrades training on ROCm — `cudagraph_trees` h@sanbuphy2026-06-19
Graphify-Labs/graphifyBrokenProcessPool swallowed per-future, defeating the sequential fallback: extract() returns 0 n@AI-invest2026-08-04
neovim/neovimdir: failed directory open leaves broken buffer and repeat the error on every BufEnter@erdivartanovich2026-08-01
oven-sh/bunbun --config <path> (space-separated) silently does nothing and exits 0; only --config=<path> wo@renardeinside2026-01-09
DietrichGebert/ponytaildebounce.md: error handling silently omitted, not listed in Skipped section@nanaubusiness2026-06-27
home-assistant/coreMatter BLE commissioning silently skipped — native CHIP SDK never initiates BLE scan@poodle642026-02-22
home-assistant/corelogbook.exclude / recorder.exclude silently ignored on area- or entity-scoped Activity page live@mattgphoto2026-08-01
thedotmack/claude-memworker-service.cjs exits immediately on WSL (code 0, no output)@M-BEDH2026-03-20
thedotmack/claude-memWorker start command reports success with stale PID file (worker actually dead)@RemarkRemedy2026-02-25
astral-sh/uv`exclude-newer-package` silently ignored by `uv pip compile` when combined with global `exclude-@philipp-rezo2026-05-01
zed-industries/zedAgent Panel only loads worktree-root AGENTS.md; nested per-package rules in monorepos are silent@chirag1272026-07-01
zed-industries/zedBare repo + git worktrees: repository fails to open, git features error with “oneshot canceled”@fabiokr2026-05-01
zed-industries/zedCopilot Chat: reasoning effort setting is silently ignored for OpenAI-vendor models (hardcoded t@ESRE-dev2026-03-31
zed-industries/zedCannot open a new Zed window from remote server (`zed .` fails without DISPLAY/WAYLAND)@ruziniuuuuu2026-01-27
zed-industries/zedFile picker fails to switch to open non-project files when filtered@envoidia2026-04-26
zed-industries/zedDevcontainer build silently skipped: upstream FROM image tagged as features image, Dockerfile la@JMLX422026-04-27
zed-industries/zedClicking local markdown links opens Finder and fails with “The application can’t be opened. -50”@cyruszad2026-02-27
odysseus-dev/odysseusagent_loop crashes / silently degrades on non-numeric agent_stream_timeout_seconds & agent_input@YAMRAJ13y2026-06-30
grafana/grafanaConfiguration: `--configOverrides=cfg:default.paths.plugins` and `GF_PATHS_PLUGINS` are silently@ringerc2026-03-01
paperclipai/paperclipManaged workspace git clone runs with zero GitHub credentials — always fails for private repos, @iamdavidmichaelmoore2026-07-30
rtk-ai/rtkgo build: reports "Success" when build fails with unrecognized error@xoverride2026-04-29
rtk-ai/rtkgo build reports "Success" when go exits non-zero on a go.work pattern error@mehrdad-tat2026-06-01
python/cpythonMemory leak in _dbm.open (libdb) when file creation fails (ENOENT)@YuanchengJiang2026-01-20
ruvnet/ruflomemory: bridge writes silently lost — agentdb-memory.db missing ADR-323 provenance_type column, @proffesor-for-testing2026-07-29
prometheus/prometheusotlptranslator: Error silently swallowed in addSumNumberDataPoints@aknuds12026-01-28
gsd-build/get-shit-done/gsd-update silently drops user patches; reapply-patches hunk verification gate reports success @elfstrob2026-05-01
gsd-build/get-shit-doneInstallation reports success but files are not actually copied (WSL2/Ubuntu)@michabbb2026-01-17
colbymchenry/codegraphFiles under directories with non-ASCII (CJK) names are silently skipped during indexing@Arvin-Hugh2026-05-29
docling-project/doclingFailed pages are silently skipped without page number in logs and missing page_break in exports@jhchoi11822026-01-08
santifer/career-opstest-all.mjs reports success when a node:test suite under tests/ fails@sdkkds2026-08-03
mem0ai/mem0LLM extraction transport failures silently swallowed (returned [] instead of raising)@Bartok92026-06-26
nuxt/nuxtfix(nuxt): swallowed errors in isdirectorysync hide filesystem issues@chinhkrb1132026-04-01
coollabsio/coolify[Bug]: S3 backup silently skipped with no error when storage config is invalid@orenaksakal2026-03-19
ghostty-org/ghosttymacOS: cmd-click fails to open file paths containing tilde (~)@AlexFeijoo442026-02-19
rails/railsInvalid enum values in where clauses are silently ignored@zarembas2026-01-18
MemPalace/mempalaceTopic tunnels silently skipped for wings with hyphenated dir names@bensig2026-04-25
BerriAI/litellm[Security]: Responses ID security fails open for raw or ownerless response IDs@emerzon2026-08-01
BerriAI/litellm[Security]: End-user budget checks fail open on database lookup errors@emerzon2026-08-01
BerriAI/litellm[Bug]: MCP tool auto-execution silently skipped for ollama_chat/ base models — raw tool_calls re@grahamton2026-07-01
BerriAI/litellmbug: success_callback functions silently skipped for /models/{model}:streamGenerateContent — asy@DarpanBafana2026-03-19
BerriAI/litellm[Bug]: post_call guardrails silently skipped on /v1/messages streaming (raw Anthropic SSE bytes @mateo-berri2026-07-30
remotion-dev/remotionTransitionSeries: shader presentation silently degrades to a hard cut when a DOM presentation pr@volskaya2026-08-02
pbakaus/impeccableInstalled as a plugin, the HTML detector silently degrades to the regex engine@ingnicolaboccato-lab2026-08-03
tldraw/tldrawVSCode extension fails to open .tldr files after update 2.225.0@earavichandran2026-04-01
ClickHouse/ClickHouseS3Queue: `use_persistent_processing_nodes` is silently ignored and misreported; request an opt-o@ttrevillian2026-08-03
tmux/tmuxsave-buffer reports success (exit 0) when writing the file fails, silently destroying the target@linmajia2026-08-01
serverless/serverless`checkForChanges` in `deploy` ignores per-function `package.artifact` overrides, causing deploys@mungojam2026-08-03
exo-explore/exo[BUG] exo 1.0.71 DMG app exits with code 1@radekg2026-04-27
apache/airflowTriggerDagRunOperator fails silently on 404 (DAG not found): on_failure_callback skipped and ret@manipatnam2026-07-29
abhigyanpatwari/GitNexusanalyze exits 0 with empty .gitnexus/lbug.wal on Windows (Python repo, no segfault) — also repro@DzikPasnik2026-04-28
vercel-labs/agent-browserbug: headed silently ignored on existing session@louisdegeestldg2026-03-30
vercel-labs/agent-browserbug: headed silently ignored on existing session@louismotiumai2026-03-30
diegosouzapw/OmniRoute[BUG] Update Now reports success while source/npm updates can leave installs partially updated@dhaern2026-04-29
docker/composeDocker container exits with error code 0 when fetching from ghcr.io@viktorpopp2026-04-01
hyprwm/HyprlandLua binds: opts.mouse is silently ignored, and { drag = true } on window.drag() swallows the fir@VibeCodyH2026-08-01
PostHog/posthogBug report: PostHog AI reports success creating insights when API actually returned validation e@slshults2026-01-08
DeusData/codebase-memory-mcpWindows: install.ps1 reports success but leaves MCP server unregistered (MotW + swallowed config@seltzdesign2026-06-29
stablyai/orca[Bug]: Unable to type Polish (diacritic) characters in the console — keystrokes are silently swa@Sharpek2026-04-28
stablyai/orca[Bug]: macOS Option+Tab terminal tab shortcuts fail in recorder, and Alt+Tab opens stuck Switch @artile2026-06-01
stablyai/orca[Bug]: Remote-server update hangs forever on .deb Linux hosts — quitAndInstall() fails in ~126 m@feltroidprime2026-08-01
1Panel-dev/1Panel[Bug] Image pull reports success multiple times, but the image does not appear in the image list@vicenteyu2026-03-29
khoj-ai/khojDate filter at the start of a query is silently ignored@LHMQ8782026-08-04
keycloak/keycloak`truststore-paths` certificates are ignored by `FileTruststoreProviderFactory`: it silently fall@nicolas632026-08-03
pnpm/pnpmWarn when a setting is recognized but no longer honored (npm_config_* / .npmrc silently ignored @jdalton2026-08-01
Crosstalk-Solutions/project-nomad[Bug]: Install script (mostly) reports success but fails to actually install@Dinsmoor2026-04-24
anthropics/claude-plugins-officialsecurity-guidance: _call_claude sends deprecated top-level output_format → 400 on every hook fir@kkroo2026-05-30
anthropics/claude-plugins-officialsecurity-guidance 2.0.6: commit review detects `git -C <path> commit` but resolves the repo from@Waseemilyas2026-07-30
FreeCAD/FreeCADBIM Tutorial Fails to open@brehart2026-02-24
zeroclaw-labs/zeroclaw[Bug] Agent Reports File Write Success and Lists Non-Existent Files (Silent Tool Call Parsing Fa@kamusis2026-02-22
zeroclaw-labs/zeroclaw[Bug]: SQLite is the default memory backend but quickstart never requires/prompts an embedding m@JordanTheJet2026-06-27
zeroclaw-labs/zeroclaw[Bug]: AIEOS identity and AGENTS.md are mutually exclusive — AGENTS.md silently skipped when AIE@JohannStraussII2026-02-18
zeroclaw-labs/zeroclaw[Bug]: [[embedding_routes]] silently degrades to NoopEmbedding (route feature effectively dead)@mov-xound-glitch2026-06-18
Yeachan-Heo/oh-my-codexmadmax/worktree launch silently reuses an inherited OMX_ROOT (isolation skipped on OMXBOX_ACTIVE@iqdoctor2026-06-28
kubernetes/minikube`minikube status` exits with 0 when there is no minikube container@Enteee2026-01-16
iOfficeAI/AionUifix(settings): health check falsely reports success due to request_trace event fall-through@gobylor2026-04-01
openssl/opensslSSL_write falsely reports success when underlying send() returns 0 with non-retryable errno@lan11202026-04-28
nanocoai/nanoclawWEBHOOK_PORT is silently ignored when set in .env@allixsenos2026-07-01
lbjlaq/Antigravity-ManagerInstallation fails: tar cannot open 'data.tar.zst' during package() step@jwjlly2026-01-25
CloakHQ/CloakBrowserAuthenticated HTTP proxy fails to open Google in Docker (407 closes CONNECT; browser auth retry @linborulinboru2026-04-28
better-auth/better-auth`sendOTP` errors in phone-number plugin are silently swallowed, endpoint always returns 200@hammer-ai2026-03-30
community-scripts/ProxmoxVEopen-archiver update script fails to update / corrupts Meilisearch DB@manuquadrat2026-01-30
community-scripts/ProxmoxVEOpen-Archiver LXC Login failed Failed to connect to the backend service. {}@treffNIX98152026-01-30
goharbor/harborGC silently fails to delete blobs on S3-compatible storage (NetApp ONTAP S3), reports success wi@velmoga2026-04-27
deskflow/deskflowv1.26.0.0 failed to open core config file for write: C:/ProgramData/Deskflow/deskflow-server.con@nsambaali2026-04-01
jackwener/OpenCLIbug(plugin): symlink plugin directories silently skipped by discoverPlugins@Astro-Han2026-03-21
p-e-w/hereticQwen3.5 MoE: MLP experts silently skipped during abliteration (attention-only, no warning)@rocker-zhang2026-05-31
mastra-ai/mastra[BUG] WorkflowRunOutput: cancelling one `fullStream` consumer detaches ALL consumers, and pipeli@Abuhaithem2026-06-28
gastownhall/beadsError: failed to open Dolt store@DannyBen2026-04-30
gastownhall/beads`bd dolt start` reports success even when port is already bound by another server@shaunc2026-04-26
gastownhall/beadsbd update exits 0 after a partial write: bare key=value tokens land in the positional issue-id s@wbern2026-08-01
NixOS/nixpkgsbiboumi: Service fails with "Failed to open database file"@theneosloth2026-02-23
herdrdev/herdrmacOS local session: live screenshot thumbnail drag-and-drop is silently swallowed@stephen-tatari2026-07-30
herdrdev/herdrmacOS local session: live screenshot thumbnail drag-and-drop is silently swallowed@stephen-tatari2026-07-30
OpenListTeam/OpenList[BUG] 115 Open failed get objs: failed to list objs: code: 0, message:@BrandonStudio2026-01-31
tursodatabase/tursoFTS: documented per-column `WITH tokenizer=` does not parse, and unknown/mis-cased WITH keys are@killianhuyghe2026-08-04
tursodatabase/tursoFTS: documented single-term prefix search 'data*' is silently ignored — `*` is swallowed into th@killianhuyghe2026-08-04
coleam00/ArchonSymlinked commands silently ignored: findMarkdownFilesRecursive uses Dirent.isFile() which doesn@blankse2026-04-30
czlonkowski/n8n-mcpaddTag operation in n8n_update_partial_workflow reports success but doesn't add tags@madshn2026-01-11
wwebjs/whatsapp-web.jsMessage send reports success and returns message ID, but message is not actually delivered (v1.3@izofis2026-04-28
NVIDIA/NemoClaw[Station][CLI&UX][Recovery]nemoclaw logs --tail / --since / --help flags silently ignored — full@zNeill2026-04-30
NVIDIA/NemoClaw[NemoClaw][macOS][CLI&UX] nemoclaw status reports "Inference: healthy" while gateway is down, ex@zNeill2026-04-28
NVIDIA/NemoClaw[Ubuntu 24.04][CLI] status exits 0 and reports Inference healthy when sandbox container is stopp@zNeill2026-05-29
NVIDIA/NemoClaw[Ubuntu 24.04][Policy] policy-add --from-file exits 0 but custom preset is absent from policy-li@zNeill2026-05-29
NVIDIA/NemoClaw[DGX Spark][Sandbox] NemoHermes sandbox PID 1 exits 1 at ensure-api-key on startup in v0.0.71@wangericnv2026-07-01
NVIDIA/NemoClaw[DGX Spark][Sandbox] NemoHermes sandbox PID 1 exits 1 at ensure-api-key on startup in v0.0.71@wangericnv2026-07-01
NVIDIA/NemoClaw[DGX Spark][Sandbox] NemoHermes sandbox PID 1 exits 1 at ensure-api-key on startup in v0.0.71@wangericnv2026-07-01
NVIDIA/NemoClawsandbox channels start reports success and exits 0 for a sandbox missing from the registry@latenighthackathon2026-05-31
NVIDIA/NemoClaw[Ubuntu 24.04][Onboard] NEMOCLAW_NON_INTERACTIVE_SUDO_MODE=silent prints unsupported-value error@PrachiShevate-nv2026-05-29
NVIDIA/NemoClaw[Linux][Onboard] nemoclaw onboard with stdin EOF exits 0 silently and skips "Installation cancel@hulynn2026-06-29
NVIDIA/NemoClawBug: openshell sandbox create --upload reports success but files are not present in sandbox@Jayavignesh-creator2026-03-25
block/buzzWindows: 0.5.3 installation reverts to 0.4.26 after the app exits@jacobmartinez3d2026-08-01
block/buzzWorkflow deletion: non-owner delete is accepted then silently ignored, and owner delete leaves a@redirwin2026-08-03
airbytehq/airbyte[destination-postgres] MongoDB sync reports success but Postgres COPY fails on \u0000 in JSON da@alexechoi2026-03-31
elastic/kibana[Lens] Heatmap fails with open-ended `date_range` fields@consulthys2026-03-28
gofr-dev/gofrFix: Subscriber handler errors silently swallowed causing potential data loss@NitinKumar0042026-03-27
xtermjs/xterm.jsonWillOpen addon errors swallowed@Tyriar2026-05-27
trycua/cuabug(cua-driver): macOS bring_to_front reports exact-window success without raising it@f-trycua2026-08-03
different-ai/openworkEditor mode intermittently fails to open files@benjaminshafii2026-02-20
CapSoftware/CapGenerating captions fails with "Failed to open video file: Is a directory"@moelkomy2026-06-30
CapSoftware/CapStudio mode + camera on macOS: every audio-input.ogg is 0 bytes; editor fails with "Failed to op@arendon12026-08-03
ahmetb/kubectxSwitching to a context not found exits with 0@DeadlySurgeon2026-02-20
mksglu/context-mode[BUG]: MCP bridge silently degrades on slow `initialize` — retry on timeout instead of failing p@jetnet2026-05-20
rizinorg/cutterFailed file open prevents subsequent opens using `file://` IO mode@PremadeS2026-01-30
astral-sh/tyty exits with code 0 even if issues are detected@pawamoy2026-01-30
espressif/esp-idfesp_https_server: TLS session leak when transport_ctx allocation fails in httpd_ssl_open() (IDFG@K-ANOY2026-06-30
bytecodealliance/wasmtimeC API reports success for a null `exnref` in `wasmtime_exnref_tag` / `wasmtime_exnref_field` / `@sdjasj2026-07-01
NVIDIA-NeMo/SpeechOpen cp failed when use packed data@gaojingwei2026-01-29
audacity/audacityLaunching by opening an audio file fails to open the audio file@jamshark702026-03-28
gastownhall/gastown[Bug] SQLite database locking - bd create reports success but data never persists (macOS)@JohnnyBonk2026-01-20
gastownhall/gastowngt up reports deacon success but session doesn't actually start@aleiby2026-01-15
sumatrapdfreader/sumatrapdfSumatraPDF pre-release/build 19637 fails to open a specific PDF file that worked in previous ver@iqsalah2026-06-30
argoproj/argo-workflowsDAG task lifecycle hooks silently skipped when task failure triggers Omit cascade on downstream @fcolombo72026-04-30
dagger/daggerdagger call exits 0 when Void-returning function errors@shykes2026-03-26
dagger/daggerdagger call exits 0 when Void-returning function errors@shykes2026-03-26
dagger/dagger🐞 `dagger call` exits 0 when module function errors (Void return type with failing service)@shykes2026-03-25
dagger/dagger🐞 `dagger call` exits 0 when module function errors (Void return type with failing service)@shykes2026-03-25
larksuite/cliBug: <callout> emoji and background-color/border-color attributes silently ignored@charosen2026-03-30
treeverse/dvcpull: KeyError crash (or silently skipped target) when mixing .dvc-file targets with granular pa@sfgartland2026-07-31
scylladb/scylladbtest.py exits with error code 0 if no tests were run@mykaul2026-01-07
apitable/apitableAPITable: fail-open NodePermissionGuard allows attachment write to denied private datasheets@geo-chen2026-07-01
mobile-dev-inc/MaestrotapOn fails to open SwiftUI Menu when placed in a ZStack overlay above ScrollView@gabrielcarioca2026-03-28
musescore/MuseScoreMacOS master builds fail to open@zacjansheski2026-03-31
vosen/ZLUDAthe zluda binary doesn't do anythong and always exits with exit_code=0@yurivict2026-03-22
open-metadata/OpenMetadataservice filter is silently ignored when listing tables, database schemas and stored procedures@IceS22026-08-03
open-metadata/OpenMetadatadbt connector: enrichment failures are silently swallowed or misreported@ulixius92026-07-29
millionco/react-doctorinstall-ami reports success without post-install verification@Taiki927772026-02-19
T8RIN/ImageToolboxShare menu - fail to open@UserAccount1232026-02-28
rook/rookcleanupPolicy.sanitizeDisks: cleanup Job reports success when sanitization fails@somanchi004-code2026-08-03
libretro/RetroArchRetroArch Crash on RK3506: MESA-LOADER failed to open rockchip_dri.so@Jvlegod2026-01-29
opencontainers/runcProbe with exec fails because no cgroup directory is found (`can't open cgroup: openat2 /sys/fs/@rogue732026-01-25
MetaMask/metamask-extension[Bug]: Severe UI lag and asset details fail to open for non-EVM tokens on Firefox@sleepytanya2026-06-01
modelcontextprotocol/typescript-sdkSome transport errors are silently swallowed due to missing `onerror` callback usage@joe-ohtani2026-01-16
mozilla-mobile/firefox-ios[SwipeTab] Changing from Top toolbar to Bottom toolbar fails to display the edges of the open ta@data-sync-user2026-04-27
stashapp/stashEdit modal fails to open inside gallery@echo6ix2026-02-28
langchain4j/langchain4j[HELP NEEDED] SSE stream failures silently swallowed due to improper exception handling in JdkHt@AvashDahal2026-01-20
langchain4j/langchain4j[BUG] SSE stream failures silently swallowed due to improper exception handling in JdkHttpClien@AvashDahal2026-01-20
TencentCloud/TencentDB-Agent-MemoryMEMORY_LLM_PROTOCOL=anthropic passes verify.sh but is silently ignored by memory-core (L1 extrac@sK3n0b12026-08-03
getpaseo/paseoAfter updating the Mac version to 0.1.62 Beta 2, the application fails to open and returns an er@magiclaw2026-04-26
SFML/SFMLSocketSelector test fails with the default open file descriptor limit@jcowgill2026-03-31
ostris/ai-toolkit# Bug Report: `device` Configuration Silently Ignored in BaseCaptioner@taozhiyuai2026-05-31
emdash-cms/emdashplugin-audit-log@0.2.0 under-declares capabilities — content:beforeSave and media:afterUpload ho@danielctc2026-06-01
emdash-cms/emdashMigration runner crashes on partially-applied schema and the middleware silently degrades the ad@pbmzero2026-04-27
emdash-cms/emdashRedirect middleware silently skipped for public visitors (locals.emdash.db missing on the anon@shinobiworks2026-04-28
Kareadita/KavitaLibrary scan always fails with misleading "directory does not exist" error (ArgumentException sw@shonencreates2026-07-31
openai/openai-nodeChatCompletionStream/ResponseStream: mid-stream errors are silently swallowed when iterating wit@pouyashahrdami2026-08-03
nitrojs/nitroshouldBypassCache option in defineCachedHandler is silently ignored@psd-coder2026-03-31
github/copilot-cliExecution failed: Error: missing finish_reason for choice 0 — exits non-zero after successful co@maxbeizer2026-02-20
github/copilot-cliHook `async` property silently ignored — postToolUse hooks block tool completion@loganrosen2026-04-30
Arize-ai/phoenix[BUG]: Docker image exits immediately (SIGILL) on Apple Silicon with podman — cryptography 47.@mlapierre2026-04-30
aden-hive/hive[Bug]: prompt formatting failures are silently ignored in worker nodes@JayanthSrinivas062026-01-31
aden-hive/hive[Bug]: NodeSpec.model and GraphSpec.default_model are silently ignored — per-node model routing @dushyantshahai2026-02-26
aden-hive/hive[Bug]: GraphExecutor incorrectly reports success=True when max_steps is exceeded@aarav-shukla072026-02-01
aden-hive/hiveExecution observability reports success despite retries and partial failures@aryanxsd2026-01-27
google/osv-scannerfilterPackageVulns: orphan vulnerabilities silently dropped when all groups are ignored@hyhmrright2026-04-30
foundry-rs/foundryforge create reports success on failed deployment receipts on Tempo Moderato@okwme2026-03-27
foundry-rs/foundry`--curl` flag silently ignored in several Cast commands@mablr2026-01-28
mui/base-ui[autocomplete] filter={null} silently ignored — falls back to default contains filter@gatorcse2026-02-26
wxt-dev/wxtDev server process exits (code 0) on every content-script change@kaminskypavel2026-05-31
swiftlang/swift-package-manager[Parity] error: Could not read serialized diagnostics file: error("Failed to open diagnostics fi@kcieplak2026-01-29
nix-community/home-managerdarwin: gui→user agent-domain migration (#9534) can silently leave a LaunchAgent unloaded; switc@victorhooi2026-06-27
evolus/pencil# [BUG] `.pen` file opens on macOS but fails on Windows (inconsistent parsing between platforms)@lk199402152026-03-30
gruntwork-io/terragrunt`run --all` with `plan -detailed-exitcode` exits 0 even when there are changes@lorengordon2026-02-19
getsentry/self-hostedUpgrade to hard stop 25.5.1 impossible : "0878_backfill_open_periods" migration fails@franck-grenier2026-07-01
gokcehan/lfSixel images silently skipped in tmux when preview height exactly matches pane height@john-soda2026-03-24
spring-projects/spring-aiTools with McpSyncServerExchange/McpSyncRequestContext parameters are silently ignored in statel@ashakirin2026-01-30
PrestaShop/PrestaShopBlockreassurance: uploading an unauthorized file type reports success instead of an error@mattgoud2026-07-01
anthropics/claude-for-legaldeploy-managed-agent.sh reports success (exit 0, empty bodies) when an env-var value is refused@akhilesharora2026-05-29
bridgecrewio/checkovSingle = in yaml file causes the file to be silently skipped@wiswesser2026-02-27
xberg-io/xbergbug: @kreuzberg/wasm browser OCR pipeline silently degrades to synchronous fallback when loaded @v-tan2026-04-30
anthropics/claude-code-actionIntermittent SDK crash on PR review - exits with code 1 after ~150ms with $0 cost@ibabencu2026-01-22
NomicFoundation/hardhatRunning on github actions coverage fails with Error: ENOENT: no such file or directory, open 'co@gnpar2026-01-29
wealthfolio/wealthfolioHealth Center: 'Record option expiration' fails with 'no open position found' for closed option @Mechalicious2026-08-01
openai/codex-securityA scan whose target changed mid-run exits 0 and reports nothing in `--json`, so CI cannot detect@genforAI2026-08-01
omnigent-ai/omnigent[Bug] url-type session policies are silently skipped at evaluation (never enforce)@anxkhn2026-06-28
mamba-org/mambaBUG: std::bad_alloc during mamba_read_json is silently swallowed, yielding a poisoned .solv cach@nikitakuklev2026-02-20
NVIDIA/OpenShellsec(sandbox): BestEffort Landlock silently degrades to no filesystem sandbox@cluster26002026-03-24
NVIDIA/OpenShellsec(install): checksum verification silently skipped when sha256sum unavailable@cluster26002026-03-24
gsd-build/gsd-2[Bug]: Ollama provider intermittently fails to register on startup — PROBE_TIMEOUT_MS=1500 too t@NOirBRight2026-04-25
gsd-build/gsd-2Bug: macOS desktop notifications silently fail — osascript display notification swallowed when t@jokerkeny2026-03-26
Blaizzy/mlx-audio[Qwen3-TTS] instruct parameter silently ignored for all 0.6B models - emotion/style control brok@praneybehl2026-01-24
open-gsd/gsd-corebug(claude-orchestration): Workflow backend worktree branches (worktree-wf_*) defeat all three w@octaviusse2026-08-03
open-gsd/gsd-corebug(milestone.complete): unstarted-phase guard silently fails open when STATE.md milestone: does@Rinde-012026-07-31
raycast/extensions[Bartender] Fails to open search commands@megaroeny2026-02-26
raycast/extensions[Google Chrome] Search History fails with “Database is locked” while Chrome is open@ahmehri2026-04-28
mozilla/sccacheFailing compilation errors get swallowed when running msbuild@ak-slongchamps2026-03-31
Kaggle/kaggle-clifix(kaggle): json parsing errors are silently swallowed in `__parse_body`@huyhoang1711062026-03-26
RicoSuter/NSwagA custom string `format` silently degrades to `string` with no way to map it@F2X2026-07-29
mcmilk/7-Zip-zstdst_decompress() reports success on truncated input, so 7z t passes on damaged files@DraftingDreamer2026-08-03
charmbracelet/soft-servefix(server): bind errors on privileged ports silently swallowed — server appears started but SSH@dvrd2026-03-28
evcc-io/evccIn v0.300.6 open-meteo fails when az is 0 (south)@amtssp2026-01-25
craft-ai-agents/craft-agents-ossCRITICAL: OAuth billing ignored - silently charges API key even when 'Claude Pro/Max' selected@mrm0072026-01-23
craft-ai-agents/craft-agents-oss`command` type action in automations is silently ignored after update to version 0.5.1@inflab-gamza2026-02-27
thewh1teagle/vibeWindows 10 transcription hangs at 0% and then the app exits@mydaytraffic-arch2026-02-12
elementor/elementor⛔ ⏳ 🧩 Nested Accordion: openAccordionItem regression in v3.35 — fails to open items when summa@ghost2026-03-28
openbao/openbaoControl Group factor with omitted or zero approvals fails open@AkshayJainG2026-08-03
crosspoint-reader/crosspoint-readerEPUB files with long filenames, filenames with special characters or leading spaces fail to open@strgalt-t2026-01-29
oppia/oppiaCI flake: Selenium exits before Chrome starts (ECONNREFUSED 127.0.0.1:4444)@Sauravsuman14962026-01-10
cloudflare/agentic-inboxAuto-draft trigger fails with 500 for mailboxes never opened in the UI@anarkrypto2026-08-01
renpy/renpyself_closing_custom_text_tags is silently ignored when the same tag name is also registered in c@Grey2026-08-01
bleachbit/bleachbitRight-click 'Custom Paths' fails to open Preferences menu@banaagravrommel2026-02-25
MrLesk/Backlog.md[Bug]: task edit cannot clear dependencies — empty --dep is a silent no-op that reports success@BigCactusLabs2026-08-03
max-sixty/worktrunkcopy-ignored fails silently with very large trees@fspeirs2026-04-01
defold/defoldEditor fails to open if it cannot initialize OpenGL@ABitCraz2026-03-27
SWE-agent/mini-swe-agent[v2.0] preds.json and non-normal exits@klieret2026-01-05
microsoft/aspire`aspire run` hangs indefinitely when AppHost exits with code 0 (e.g. empty AppHost)@adamint2026-03-29
microsoft/aspireDebugging in VS Code with invalid csproj exits normally (0) and does not print the build error@adamint2026-05-30
microsoft/aspire[13.3]: `aspire deploy` reports success for Docker Compose environment without deploying anythin@IEvangelist2026-05-01
microsoft/aspireaspire destroy --non-interactive requires --yes and exits 0 on failure@davidfowl2026-04-30
actions/runnerRunner.Worker hangs before reading the job message (30s IPC timeout), ignores SIGINT/SIGTERM; ep@bquenin2026-07-31
tianocore/edk2[Bug]: FMMT always exits with status 0 (success)@BMBurstein2026-02-19
Azure/azure-sdk-for-netMgmt package tests are silently skipped on PR builds, hiding cross-package failures@live12062026-04-01
lightdash/lightdashMCP: LLMs nest filters inside queryConfig, causing them to be silently ignored@oli-rmsy2026-03-31
vllm-project/vllm-omni[Rebase][Bug] Diffusion X2I(&A&T) · Perf Test fails: DiffusionWorker-2 dies on shutdown + teardo@tzhouam2026-04-29
MinishLab/sembleMCP integration silently skipped on all JSON-config agents: 'json5' grammar no longer exists in @Mudit-Lal2026-08-02
jacob-bd/gemini-notebook-mcp-cliError: Failed to open NotebookLM page@loikawhaticando2026-05-01
sooperset/mcp-atlassian[Bug]: property delete failures return True; update_page discards the result, so emoji/width rem@siliroid2026-08-03
Tampermonkey/tampermonkey[BUG] Update page fails to open via notification when "Don't ask me for simple script updates" i@MonicaQvQ2026-01-29
linuxmint/cinnamonInstaller GUI locks up when help window is open and MOK fails@thomasadelhardt2026-05-01
voidzero-dev/vite-plusPlugin `config` hook tasks are silently ignored by `vp run`@kazupon2026-03-30
generalaction/emdash[bug]: Couldn't open my project ("Failed to Add Project"): incompatible architecture@nilsreichardt2026-02-01
Q00/ouroborosbug(orchestrator): dependency analyzer silently degrades to structured-only when LLM wiring fail@shaun09272026-04-15
rapidsai/cumlSubclass method overrides on proxied estimators in cuml.accel are silently skipped inside a Pipe@csadorf2026-02-09
lemonade-sdk/lemonadetest_021_stats_endpoint is silently skipped — shadowed by duplicate test_021_pull_multi in serve@Kushal12132026-05-29
opengeos/GeoLibreNotebook panel fails to start when runtime/notebooks isn't created (silently swallowed fs::creat@sanatladkat2026-08-02
shakacode/react_on_rails[CI] docs-only main-push guard fails open when the previous main commit's runs are older than th@justin8082026-07-01
KDAB/hotspotHotspot fails to open collected stack@nastyash20132026-02-20
Expensify/App[$250] Reports - Unapproved card transaction fails to display and its details cannot be opened@lanitochka172026-04-01
hashicorp/terraform-provider-azurermazurerm_kubernetes_cluster: node_os_upgrade_channel = "SecurityPatch"` silently ignored when sup@cello862026-06-01
entireio/cliOnly first commit per session gets Entire-Checkpoint trailer; subsequent commits silently skippe@SvenMeyer2026-03-26
github/gh-awcreate_pull_request (cross-repo): PR is opened, then a second validation fails ERR_VALIDATION 'n@vishalagrawal-jisr2026-06-01
github/gh-awfix: MCP server actor permission check fails open on repo lookup error@lpcox2026-03-27
github/gh-awDaily AI Credits guardrail permanently fails open under org-level required workflows@alvistar2026-08-03
open-telemetry/opentelemetry-collector-contrib[exporter/splunkhec]: Event name is silently being ignored@michaelvanstraten2026-04-30
nathom/streamrip[BUG] error downloading track: '' — exception swallowed with no type info, logged with empty mes@joeripzbongz2026-02-25
frangoteam/FUXA[BUG] S7 device silently skipped when optional node-snap7 is missing@JCL-ingenia2026-07-31
opnsense/coreDHCPSRV_OPEN_SOCKET_FAIL failed to open socket: the interface re0 is not running@fengchen-github2026-04-01
54yyyu/zotero-mcp`semantic_search.chunking` is silently ignored when `openai_batch.enabled` is true@dbuchber2026-08-01
54yyyu/zotero-mcpOllama: embedding_config.timeout is ignored, so update-db silently persists nothing@physicien2026-08-03
PerryTS/perryObject.defineProperty(Class, "name", { value }) is silently ignored for classes (zod errors repo@proggeramlug2026-08-01
firebase/firebase-toolsFunctions v2: after 409 "unable to queue the operation", retry deadlocks on SourceTokenScraper.g@smftnwc2026-07-01
superplanehq/superplaneCLI: canvases update exits 0 with no output@forestileao2026-03-25
superplanehq/superplaneCLI: canvases create exits 0 but may not persist a canvas on http://app.superplane.com contexts@forestileao2026-03-25
jellyfin/jellyfin-androidtv0.19.7 on Firestick exits@DwayneGodden2026-03-22
cloudflare/workers-sdkERROR : Could not find compiled Open Next config , Failed: error occurred while running deploy c@mdyousufhossain2026-03-31
mvanhorn/cli-printing-pressgenerator: API errors returned inside HTTP 200 are stored as data (no error_envelope concept; sy@ChrisGutierrezNet2026-08-03
mvanhorn/cli-printing-presslive dogfood: unclassified write commands fail open and are executed for real (activated a cours@rsolanilla2026-08-01
homeassistant-ai/ha-mcp[BUG] ha_import_blueprint reports success but never saves the blueprint (missing blueprint/save @kingpanther132026-02-28
posit-dev/positronPositron fails to open devcontainer WSL2@Ch3w3y2026-03-27
IBM/mcp-context-forge[BUG]: Locust load tests miss JSON-RPC errors - reports false success rate@crivetimihai2026-01-04
microsoft/vscode-remote-releaseOpen repository in volume using WSLC fails@Diegorro982026-06-30
kirodotdev/KiroKiro Web: Some conversations remain in history but fail to open with "Session not found"@yizhibibao1252026-07-01
kirodotdev/KiroKiro CLI on Windows: OAuth flow for remote MCP fails — no clipboard tool found and browser never@BartoszPawlowicz012026-07-01
kirodotdev/KiroBuilt-in "bug-fix" skill fails to open in editor - "The editor could not be opened due to an une@agobbato2026-07-01
kirodotdev/KirostrReplace tool reports success but doesn't modify HTML files@iJustBeVibin2026-03-30
edenaion/EZ-CorridorKeyClicking the EXE file fails to open the program.@dale0032026-04-28
callstack/agent-deviceopen <package> fails to launch app without explicit --activity flag (launcher activity resolutio@mylcode2026-02-23
nyldn/claude-octopus/octo:review silently degrades to 3-provider review: env -i strips GEMINI_CLI_TRUST_WORKSPACE; a@phjlljp2026-05-20
dora-rs/doramemory-pool: cross-process `FreeMemoryPool` cleanup can be silently skipped (full-channel drop +@phil-opp2026-08-01
isaac-sim/IsaacSimPhysxMimicJointAPI is silently ignored on prismatic joints (works on revolute)@johnnynunez2026-08-01
fnando/i18n-jsBug: lint:scripts exits with code 8 instead of 0 due to missing_count.size typo@nickpellant2026-01-30
nubjs/nubcacheDir env aliases (npm_config_cache_dir / NPM_CONFIG_CACHE_DIR) are silently ignored; only th@jdalton2026-08-01
openrewrite/rewriteAddAnnotationProcessor: child with in-reactor parent is silently skipped when only the child pas@Jenson32102026-06-01
spdk/spdkCommon tests / pkgdep (ubuntu-22.04-arm) fails with Could not open lock file /var/lib/apt/lists/@jimharris2026-01-26
httptoolkit/httptoolkit[Bug]: Server fails to bind on Windows 11 when HNS/Hyper-V invisibly reserves port 45456/45457 —@mhozic2026-05-27
erigontech/erigonexecution/stagedsync: parallel exec loops forever with zero progress when commitment files lag s@yperbasis2026-06-29
erigontech/erigonstagedsync/bal: ProcessBAL debug-write errors silently swallowed, making diagnostic output unrel@awskii2026-03-29
basicmachines-co/basic-memory[BUG] FastEmbed embeddings are not L2-normalized → semantic search silently degrades to FTS-only@SloNN2026-06-26
mne-tools/mne-pythonParameter 'match' in mne.preprocessing.eyetracking.interpolate_blinks silently ignored@Cathaway2026-05-01
langwatch/langwatchbug: unknown automation filter fields silently ignored — triggers match all traces@sergioestebance2026-03-30
langwatch/langwatchfix(ci): feature-parity job is silently skipped — detect-changes action only exposes 'relevant' @drewdrewthis2026-04-24
nolabs-ai/nonoCritical: explicit override `add_deny_access` silently ignored with group-sourced allows; plus 3@HaleTom2026-03-31
kubernetes/kubectlcmd/get: -o=custom-columns causes -L/--label-columns to be silently ignored@ahmetb2026-02-27
ilysenko/codex-desktop-linuxKDE Plasma 6 Wayland: keyboard input dead on app 26.623.61825 — primary BrowserWindow ships focu@adargham2026-06-29
thomiceli/opengist`topics` push option is silently ignored on git push to /init/...@barrpet2026-05-01
Ataraxy-Labs/sembinary files silently skipped@Iron-Ham2026-05-26
neomjs/neoFail the unit suite when an MCP handler signature silently degrades@neo-kimi-iris2026-08-02
serverpod/serverpodDeserialization errors are swallowed while probing generated protocols@marcelomendoncasoares2026-08-01
PatchMon/PatchMonPatchMon server exits immediately after successful migrations (restart loop) on v2.0.1@k4l1mi5t2026-04-28
google/braxinit_noise_std silently ignored when distribution_type='tanh_normal' (default)@AIRJASON502026-02-28
RunMaestro/MaestroHistory “Open session … as new tab” fails for local Claude Code (AgentSessions read error) and o@ghost2026-01-30
apache/gravitino[Improvement] Lance partition statistics drop API reports success even when nothing is deleted@justinmclean2026-04-01
aardappel/treesheetsTS Flatpak fails to start if only one file was open and it was deleted@pmmontanari2026-05-01
edde746/plezyWindows: Playback fails immediately with "Failed to initialize audio driver 'openal'"@Userkjng2026-05-30
freenet/freenet-corebug: tray "Open Dashboard" fails silently after FreeConsole() on Windows@sanity2026-04-01
freenet/freenet-coreA typo'd config.toml key is silently ignored, with no startup warning@sanity2026-08-03
spring-projects/spring-data-elasticsearchReactive saveAll errors are swallowed in AbstractReactiveElasticsearchTemplate@noel11552026-01-27
onetimesecret/onetimesecretdrop_all_tables fails open on bad elevated PG connection (local full-pg flake)@delano2026-08-03
pop-os/popASUS FX503VD: nvidia-driver-580-open fails on GTX 1050 Mobile (Pascal architecture)@chapu-cloude2026-02-20
snakemake/snakemakeInputFunctionException silently ignored@victorlin2026-01-30
sw33tLie/macshot[BUG] Video editor Copy reports success but clipboard only contains a file URL@imCinq2026-08-03
clasp-developers/claspninja test exits 0 when tests fail to register: a broken test file silently removes its tests fr@dg1sbg2026-08-03
bitfireAT/davx5-oseOAuth authorization fails when DAVx5 is opened by Etar@ArnyminerZ2026-01-28
kunchenguid/firstmate`fm-send` exits 0 even when the steer never lands (stale composer in a parked lane)@coreldh2026-08-01
kunchenguid/firstmatefm-herdr-lab.sh silently degrades to no isolation for any subcommand using a -- separator@adibirzu2026-08-03
sindresorhus/trashDirectories are silently ignored (not trashed) due to globby onlyFiles default@solrevdev2026-01-26
Vexa-ai/vexameeting-api: webhook_retry_worker logs empty error string — root cause swallowed before retry@DmitriyG2282026-04-27
hashicorp/terraform-provider-googlegoogle_compute_security_policy: removing preconfigured_waf_config from a rule is silently ignore@d-costa2026-04-30
sheeki03/tirithBlocked command exits 0 and hides next prompt@injust2026-02-15
WalletWasabi/WalletWasabiVerify connection reports success when the node does not have filters@Kruwed2026-05-28
iisu-network/iiSUROMM Download open failed EPERM(Operation not Permitted)@MrLuigi9382026-03-31
alexbelgium/hassio-addons🐛 [Guacamole 1.6.0-bullseye] VNC to Proxmox/QEMU fails with 'Unable to connect to VNC server' d@bferd2026-02-26
docker/for-macDocker Desktop GUI fails to open after closing on macOS Tahoe (16) Beta - requires force kill to@troesner-clesk2026-01-20
yazinsai/OpenOatsOpen recovered and failed sessions on the Transcript tab@kkarimi2026-04-30
bkerler/edl`cmd_program()` returns `True` when the device rejected the `<program>` command — qfil reports s@suddenBook2026-08-03
open-webui/desktopBug: Open Terminal fails silently when Python is not installed - no UI feedback and no auto-inst@Heliopause09162026-05-01
subsy/ralph-tuicreate-prd: selecting 'Beads issues' reports success but doesn't create beads@carmandale2026-01-20
Piebald-AI/tweakccInput pattern highlighters silently skipped on Claude Code 2.1.220 (Windows)@Aafff6232026-07-31
cisco-ai-defense/skill-scanner[BUG] LLMAnalyzer swallows provider exceptions and reports success without a machine-readable fa@maresb2026-02-24
element-hq/element-x-androidElement Call fails with OPEN_ID_ERROR but no OpenID request is sent@choa11112026-06-30
TortugaPower/BookPlayerBug: Sub-folder sync errors are silently swallowed, leaving folders empty with no diagnostic sig@matalvernaz2026-04-29
Maintainerr/MaintainerrLeftover-folder cleanup is skipped silently when the item is not tracked in Radarr/Sonarr@enoch852026-08-01
steipete/RepoBarApp fails to launch on macOS: “RepoBar can’t be opened” after latest update@eduwass2026-01-22
withcatai/node-llama-cppbug: loadBackends(backendsPath) skipped when buildGpu === false, silently drops custom GPU backe@Zighy2026-04-25
duckdb/duckdb-wasmTransactionContext Error: Failed to commit: File is not opened in write mode@Darker2026-01-30
raine/workmuxOne stale agent state file empties all agent views: display-message exits 0 for a gone pane, so @lee-kyu-hwan2026-08-03
pmxt-dev/pmxtempty-catch: core/src/exchanges/polymarket_us/websocket.ts:127 — socket close errors silently ig@realfishsam2026-05-31
pmxt-dev/pmxtempty-catch: core/src/exchanges/gemini-titan/websocket.ts:94 — unparseable messages silently ign@realfishsam2026-05-31
pmxt-dev/pmxtempty-catch: core/src/feeds/binance/binance-feed.ts:216 — JSON parse failure silently swallowed@realfishsam2026-05-31
pmxt-dev/pmxtempty-catch: core/src/feeds/chainlink/chainlink-feed.ts:387 — JSON parse failure silently swallo@realfishsam2026-05-31
stryker-mutator/stryker-netMTP test runner sends run request test selection as `testCases` instead of `tests`, so selection@Evangelink2026-08-03
zarr-developers/zarr-pythonZipStore.list() fails if store not opened + lack of high-level listing API@kulvait2026-03-30
platformatic/platformaticGateway entrypoint worker exits prematurely (code 0) during first start, causing port leak and b@lucianlature-endava2026-03-23
microcks/microcksOpenAPI import: break should be continue in `getNoContentRequestResponsePair()` causing valid ex@Harishrs20062026-06-25
4thfever/cultivation-world-simulator[Bug] 1.8.0 release from GitHub fails to open.@TerabyteTB2026-03-01
WordPress/wordpress-playgroundLinks that open in a new tab fail when WordPress Playground runs inside an iframe@dianeco2026-03-31
AppFlowy-IO/AppFlowy-Cloud[Bug] Shared grid row fails to open: FindReplaceProvider rendered outside AppProvider@scoleman432026-08-03
themactep/thingino-firmwareConfigured stream fps is silently overwritten during boot and degrades with every reboot@Hotelk523392026-08-04
pantor/injaadd_builtin() and add_callback() conflicts silently ignored@tkohlman2026-01-20
aelassas/servy[Wiki] Export-Import-Services — 'silently ignored on import' is inaccurate for UserAccount/Passw@Christophe-Rogiers2026-06-01
aelassas/servy[Tests] Servy.Testing/Helper.cs — WriteResourceToDisk's catch filter ends in 'ex is IOException'@Christophe-Rogiers2026-08-03
aelassas/servy[Security] ImportGuard.ValidatePathSecurity — handle-resolution validation block is silently ski@Christophe-Rogiers2026-05-27
aelassas/servy[Security] ExportServiceCommand.SaveFile — handle-resolution validation block is silently skippe@Christophe-Rogiers2026-05-27
aelassas/servy[Robustness] ProcessWrapper.SendCtrlC — GenerateConsoleCtrlEvent return value discarded; method @Christophe-Rogiers2026-05-28
aelassas/servy[Tests] ctrlc2.py / ctrlc_child.py — an unset PYTHON_EXE makes expandvars leave the literal '%PY@Christophe-Rogiers2026-08-03
microsoft/vscode-mssql[Bug]: Rename database fails if other connections are open, should prompt to terminate other con@Benjin2026-02-25
kptdev/kptset-namespace exits 0 and reports [PASS] when config is invalid@aravindtga2026-05-29
matrixorigin/matrixone[Bug]: NATURAL FULL [OUTER] JOIN silently degrades to NATURAL RIGHT JOIN@Ariznawlll2026-04-29
bryanthaboi/gen1recompKeyboard fails to open when selecting the search bar in the save editor@alchemy4202026-07-31
privacyidea/privacyideaPIN-quality policies silently skipped when request.User is empty (check_otp_pin by serial; init_@nilsbehlen2026-06-30
wimpysworld/deb-getbug: CI reports success on failed package installation@philclifford2026-05-29
matz/spinel## Bug 4: `opts` parameter is silently ignored@neidiom2026-06-01
matz/spinel## 10. Module Singleton attr_accessor — Non-Constant RHS Silently Ignored@neidiom2026-05-31
matz/spinel`require_relative` silently skipped when the word appears earlier in a comment or string@rramsden2026-04-25
apple/swift-cryptoBuild fails using open-source 6.3.3 macos toolchain on `ContiguousBytes` conformance for `SHA512@coracoracora2026-08-03
StartupHakk/OpenMonoAgent.aiDocker group re-exec silently skipped after usermod — install fails with permission denied on pr@jpvelasco2026-05-30
dotnet-outdated/dotnet-outdatedNullReferenceException when LockFileUtilities.GetLockFile returns null; error reason silently sw@tymarats2026-04-28
pdf-rs/pdfEncrypted PDF with valid `/P` bit pattern fails to open due to `i32` parse overflow@jusdino2026-08-01
microsoft/vscode-cmake-tools[Bug] Copilot agent reports running 0 out of 0 tests as success when using the RunCtest_CMakeToo@haferburg2026-04-29
anthropics/claude-agent-sdk-typescriptsandbox.enabled: true silently degrades to unsandboxed execution when bubblewrap is not installe@grant-mccarriagher2026-03-19
babyfish-ct/jimmer[BUG] - Import statement is silently ignored when its alias collides with a built-in type name@ClearPlume2026-08-01
tenstorrent/tt-metal`ttnn::paged_update_cache` silently degrades output for unsupported L1 height-sharded fill-value@bmalesevicTT2026-05-21
tenstorrent/tt-metaltopk: optional indices_tensor is silently ignored on the single-core path and has limited shape/@iwroszTT2026-08-03
Dicklesworthstone/agentic_coding_flywheel_setupinstall.sh never runs category "tools" phase 9 — all 10 utils.* modules silently skipped@Gerry90002026-02-26
schismtracker/schismtrackerFailed to open requested audio device! Falling back to default...@0x57422026-01-28
NanoNets/docstrangePDF processing reports success but returns empty content@ramarivera2026-01-01
amd/gaiafix(email-npm): tests hardcode schema 2.4 against a 2.10 sidecar, hidden by a silently-skipped s@itomek2026-08-03
soutaro/steep`steep check` silently skips all Ruby type checking when RBS has SuperclassMismatchError, exits @pocke2026-02-24
Priivacy-ai/spec-kitty[DDD audit] acceptance overall_verdict fails open on malformed result values@robertDouglass2026-05-31
Priivacy-ai/spec-kitty[DDD audit] bulk-edit diff guard fails open when base ref is invalid@robertDouglass2026-05-31
Priivacy-ai/spec-kitty[DDD audit] lightweight review exits 0 when modern mission lacks baseline_merge_commit@robertDouglass2026-05-31
Priivacy-ai/spec-kittyci: fast-tests-status has been silently skipped for 4+ runs by a job-dependency gate, not a path@MOES-Media2026-07-31
supermemoryai/opencode-supermemorySupermemory authentication fails on systems without xdg-open@GarrisonD2026-02-22
amicalhq/amicalSettings window fails to open after being closed on Windows@sasacheese2026-03-28
getnao/nao[bug] nao sync exits 0 when database sync fails - should throw an error@ClaireGz2026-04-29
guillevc/yubalTracks with missing videoType silently skipped during sync@raiden0762026-07-31
OWASP/SecurityShepherd140 integration tests silently skipped (JUnit 4 without vintage engine)@ismisepaul2026-03-31
Prismer-AI/PrismerCloud[Security] Credit balance check fails open — allows free usage on DB errors@willamhou2026-03-29
sindresorhus/trash-cliDirectories are silently ignored (not trashed) due to globby onlyFiles default@solrevdev2026-01-26
forkgram/TelegramAndroidThe "back" button exits the application in 12.3.1.0@NKDTL2026-01-21
openfoodfacts/smooth-appwhen debugging, this app crashed and android studio reports "fail 24 Too many open files"@dearliuliu05222026-01-30
apache/rocketmq-dashboard[Bug] Topic test message send failures are silently ignored@Aias002026-08-03
apache/rocketmq-dashboard[Bug] Consumer Group export reports success without generating a file@Aias002026-08-03
apache/rocketmq-dashboard[Bug] Topic export reports success without generating a file@Aias002026-08-03
ocaml/opamWrong name format in pin-depends is silently ignored@Halbaroth2026-06-01
Quorafind/Obsidian-Thino[Bug]: failed to open ""@LoneFireBlossom2026-01-31
shiwenwen/hope-agent[Bug] Desktop streaming STT always fails: AudioWorklet blob module blocked by CSP (and the error@skycloudwendy2026-07-30
RayLabsHQ/gitea-mirrorMirroring fails but reports success@tylerobara2026-01-26
deckhouse/deckhousefix: securitypolicy status patch errors are explicitly swallowed@Nam01012026-03-30
mxe/mxePackage openal fails to build on Slackware current@fbradasc2026-02-27
abhixdd/ghgrabBug: Download errors are silently swallowed, UI can get stuck in 'downloading' state@LuisMIguelFurlanettoSousa2026-03-26
tickernelz/opencode-mem[Windows] re-embed migration silently fails: deleteShard unlinkSync error swallowed leads to UNI@junyuyuan2026-07-30
unitreerobotics/unitree_rl_labError: Joystick open failed.@zhijun-yin2026-07-01
openonion/connectonionbefore_each_tool exceptions are swallowed and converted to tool errors — contradicts the documen@wu-changxing2026-07-31
nats-io/nats.pypublish_async ack errors are swallowed (logged as "nats: encountered error") instead of being ra@InspiringCode2026-06-28
raspberrypi/picamera2unnecessary warning : Failed to open /dev/dma_heap/vidbuf_cached@LeifSec2026-03-31
astronomer/astronomer-cosmos`on_warning_callback` silently ignored when passed via `operator_args` (should warn or honor it)@tatiana2026-07-01
commons-app/apps-android-commons[Bug]: App fails to install and open when Hotspot is switched on and Wi-Fi is on but not connect@gangaasoonu2026-06-30
rordenlab/dcm2niixdcm2niix exits with 0 when invoked incorrectly@jakeforster2026-05-31
tywalch/electrodbpages execution option is silently ignored when count is also set (contradicts docs)@dominictwlee2026-06-01
coollabsio/jeanAskUserQuestion silently degrades to plain-text on Jean-managed Claude CLI ≥ 2.1.187@azeitler2026-06-29
adorsys/keycloak-config-cliSub-flow execution priority is silently reset to 0 (declared value ignored)@joelmccoy2026-04-30
perminder-klair/subwaveIdle pause releases ~28s after engaging: stream-idle fails open on a single failed Icecast poll@mauriciopaim2026-08-01
OSGeo/grass[Bug] v.surf.rst fails to open (MacOS, silicon, GRASS 8.4,8.5)@stuartE92026-07-31
microsoft/wazaWaza compliance token limit forces scope reduction that silently degrades skill quality@diberry2026-04-07
IJHack/QtPassGPG keygen reports success unconditionally — real gpg errors are swallowed@annejan2026-07-01
apache/apisix-ingress-controllerbug: [2.0.0] Ingress controller not syncing upstream IPs on pod restart - reports success but up@sopacifics2026-01-09
vm0-ai/vm0fix: neon branch subshell has duplicate cd turbo causing db:dev-seed to be silently skipped@e7h4n2026-03-23
justrach/nanobrew[Bug] --cask install reports success but creates empty directories (Firefox)@louisvolant2026-03-25
aegra/aegraRun-level interrupt_before / interrupt_after are silently ignored — never reach graph.astream@davidhkk2026-06-30
Faster3ck/ConverseenConverseen 0.15.2.0 fails to open the file browser on macOS@Schamschula2026-02-26
moltlaunch/cashclaw[Medium] Dynamic import used at runtime to invalidate search index — error swallowed silently@ether-btc2026-04-25
NVIDIA-NeMo/Gym[VDR] QS-efab2b5c · Model-provider error is fully swallowed; user sees only an opaque 500 plus a@anwithk2026-07-30
hail-is/hailfix: invalid `session_max_age_secs` is silently ignored, causing wrong session lifetime@Nam01012026-03-31
asyncapi/generator[BUG]: Generator does not validate template parameter types (invalid values silently ignored)@sahillllllllll-bit2026-01-22
asyncapi/generator[BUG] :Silent failure when loading local hooks: errors are swallowed, making broken templates ha@SHUBHANSHU6022026-01-28
asyncapi/generator[BUG] Python Template - Errors are swallowed while sending messages@Harsh16gupta2026-01-26
mesamirh/MovieBox-Tuibug: [Player] All video streams fail to open after update to v0.1.6@rfxlamia2026-08-01
MayGo/tockler[Bug] "Open main window" button fails when launching from notification bar on Ubuntu 24.04 (v4.0@amal-chandran2026-01-27
vinegarhq/soberSober 1.7.1 silently fails to open window on CachyOS + niri@blazebsc2026-06-30
vinegarhq/soberSober silently exits (exit code 0) at deserializeAndVerifyPatch with blake3 when launching any g@brittandfam1066-design2026-08-03
ArcadeData/arcadedbUnknown committed entry type is silently skipped while advancing & persisting the applied index @ruispereira2026-06-29
ArcadeData/arcadedb`transferLeadership` reports success whenever leadership is lost for any reason (false positives@ruispereira2026-06-29
gastownhall/gascitybug: gc dolt sync masks push failures (120s timeout ceiling + swallowed stderr + generic error m@rileywhite2026-05-27
johnfactotum/foliate-js`Array.prototype.at()` requirement breaks older Android WebView, and the original error is swall@NinthKnight2026-06-27
espressif/esp-matterFailed to open basic commissioning window - Error UNSUPPORTED_COMMAND (CON-1948)@aggaddam2026-01-27
floatpane/matchaBUG: handleMarkRead loop swallows errors but reports success@andrinoff2026-04-27
floatpane/matchaBUG: update-desktop-database error swallowed by empty branch@andrinoff2026-04-27
matter-js/python-matter-serverBLE commissioning silently skipped in Docker — native CHIP SDK never initiates BLE scan@poodle642026-02-22
zzet/gortex.gitignore excludes are silently skipped when the tracked root is a subdirectory of the git repo@pbednarcik2026-07-31
maester365/maester🪲 New-MtMaesterApp reports success when permission grants fail with 403, leaving app in broken @span2026-04-29
Dicklesworthstone/beads_rustdep cycles exits 0 with cycles present; bulk import drops cycle edges@JYeswak2026-07-01
Dicklesworthstone/beads_rustDB errors silently swallowed in config operations, leaving users in broken state@aerickson2026-02-27
invertase/react-native-google-mobile-ads[🐛] Meta Audience Network config options (metaAdvertiserTrackingEnabled, metaAudienceNetworkEna@ponljung2026-01-14
open-gsd/gsd-pi[Bug]: `/gsd doctor` has no probe for a never-built or desynced `memories_fts` index, so memory @astarktc2026-06-30
open-gsd/gsd-pi[Bug]: migrateToExternalState swallows a per-file copy failure then deletes the backup and repor@astarktc2026-06-29
open-gsd/gsd-pi[Windows][v1.3.0] /gsd auto exits back to PowerShell and headless auto child crashes during boot@BuXianMeng2026-06-30
inngest/inngest-js[BUG] wrapStep middleware hook silently skipped for a sibling step when replaying parallel step.@elliotmassen2026-07-30
nicobailon/pi-web-accessweb-search curator window fails to open without X11 display server@3DAlgoLab2026-04-01
nicobailon/pi-web-accessweb-search curator window fails to open without X11 display server@3DAlgoLab2026-04-01
nicobailon/pi-web-accessweb-search curator window fails to open without X11 display server@3DAlgoLab2026-04-01
lich0821/ccNexusmac app open failed@zbb888882026-03-31
davideast/stitch-mcpBug: proxy command exits immediately due to process.exit(0), breaking stdio MCP transport@nmespc2026-03-30
davideast/stitch-mcpFix: proxy exits immediately as stdio MCP server — replace process.exit(0) with await new Promis@Dantelarroy2026-03-24
davideast/stitch-mcpProxy command exits immediately — process.exit(0) kills stdio server@healerit2026-03-27
bytechefhq/bytechef[task] Open Failed Task When Workflow Fails@monikakuster2026-04-30
SamNet-dev/paqctlGFW-Knocker client running but SOCKS5 port never opens (QUIC connection fails)@zitanix-max2026-05-31
artifact-keeper/artifact-keeperrelease-bump CI gate fails open: splitlines() lets arbitrary code ride into openapi.rs and skip @brandonrc2026-08-04
artifact-keeper/artifact-keeperArtifact record INSERT error silently swallowed in handle_put_manifest@andrlange2026-03-28
sourcenetwork/defradbbug(p2p+acp+index): secondary-index Save silently skipped on inbound merge. ErrCorruptedIndex on@islamaliev2026-05-26
getsentry/sentry-dartrunZonedGuarded error handler is async, causing errors to be silently swallowed@buenaflor2026-02-26
ansible/galaxy[ANSIBLE GALAXY API] Collection install fails with 500, Web page also fails to open collections @jjvester2026-01-25
cuga-project/cuga-agentSDK invoke(action_response=…) does not resume the HITL interrupt() — approved tool is silently s@ethanj2026-06-26
dart-lang/build[build_daemon] Client 4.1.3 against daemon 4.1.2 fails with MissingPortFile — daemon exits silen@gmpassos2026-08-01
openeverest/openeverestBlocklist update failures are silently swallowed on release-2.0 (missing backport of #2086)@recharte2026-08-03
haproxytech/kubernetes-ingressExternal mode: controller exits with status 0 after fatal Kubernetes API initialization failure@tomasptacnik-arch2026-08-03
promptdriven/pddpdd verify exits 0 on verification failure (success flag ignored)@Serhan-Asad2026-02-24
promptdriven/pddpdd bug agentic mode exits 0 on failure (inconsistent with pdd change)@Serhan-Asad2026-02-24
promptdriven/pddGemini and Codex agents are silently skipped when authenticated via interactive login instead of@niti-go2026-03-27
AltimateAI/altimate-codeUpgrade notification silently skipped — users never see update indicator@anandgupta422026-03-23
NVIDIA-NeMo/Automodel[Qwen3MoE] rope_scaling is silently ignored and crashes with KeyError@LoganVegnaSHOP2026-02-26
ruvnet/agentic-flowDocumented NAPI verification fails open: @ruvector/attention has no .runtime export (prints unde@vidaunited2026-08-03
ruvnet/agentic-flowREADME examples do not match the shipped API: unresolvable imports, non-existent methods, wrong @vidaunited2026-08-03
ruvnet/agentic-flowworkers native: security findings computed then discarded by a key mismatch; crashed embedding p@vidaunited2026-08-03
AgentWorkforce/relaybug(v6.0.2): shared RELAY_API_KEY across machines — broker exits at WebSocket subscription with @prefrontalsys2026-04-28
kube-burner/kube-burner[BUG] RunOnce is silently skipped when iterationStart is not zero@Nesar9762026-02-13
metal3-io/baremetal-operatorBMO optional pull test reports success when one tests pass, and not only when all tests pass@tuminoid2026-01-14
23blocks-OS/ai-maestro[BUG] Current version cannot be updated and exits (Command failed with exit code 134 trying to u@Emasoft2026-01-06
unbrowse-ai/unbrowsebug: linux — Flatpak/Snap browser profiles are never discovered; auth silently degrades to logge@lekt92026-07-31
xibosignage/xiboXMR: windows player v4 R406 fails to open web socket after CMS upgrade to 4.0@dasgarner2026-01-29
asyncapi/website[BUG] Nested docs pages are silently skipped during static generation@Devnil4342026-01-02
autotrace/autotraceWindows x64 0.31.10 installer: autotrace.exe exits immediately with status 127 and no output@eialbur2026-08-03
zaeleus/noodlesSwallowed error conditions in multi-threaded writer@TyberiusPrime2026-04-24
iamtelescope/telescopeError creating source - NOT NULL constraint failed on `telescope_source.execute_query_on_open`@peterhunter99001-cyber2026-01-31
knostic/OpenAnt10 KB file-read guard silently degrades application context on real repositories@NahumKorda2026-08-03
vybestack/llxprt-codeDecide on upstream fail-open publication controls (OCR 1.8.1) versus our routing and shadow mode@acoliver2026-08-01
vybestack/llxprt-coderun_shell_command tool reports success:true when rejecting disallowed/invalid commands@acoliver2026-02-26
sbooth/SFBAudioEngineSFBMPEGDecoder fails to open non-seekable input sources (mpg123_scan)@CharlesWiltgen2026-02-28
jaseci-labs/jac[Bug]: [Native] `str.replace(old, new, count)` — count argument is silently ignored@mgtm982026-02-28
jaseci-labs/jacjac scale destroy reports success but leaves databases, PVCs and the namespace behind, and ignor@kashmithnisakya2026-08-03
grafana/k8s-monitoring-helmIntegrations feature silently skipped when `integrations.collector` is not explicitly set@petewall2026-05-27
Azure/static-web-apps-cliswa deploy exits 0 without uploading files — StaticSitesClient receives unrecognized --environme@jongio2026-05-31
lablup/backend.aicommit_session endpoint uses QueryParam — optional body fields silently ignored@fregataa2026-03-31
micahkepe/jsongrep`[m:n]` range upper bound is silently ignored@lukasmalkmus2026-03-30
asheshgoplani/agent-deckadd: duplicate registration exits 0, and --ssh sessions collide on a placeholder path@jdidion2026-08-03
frontman-ai/frontmanMCP `handleMessage` promise is `->ignore`d — async errors are silently swallowed@BlueHotDog2026-02-20
sirkirby/unifi-mcpunifi_list_firewall_zones returns empty success on Network 10.2.x — wrong V2 API path + error is@nalditopr2026-04-26
Basekick-Labs/arcmedium(wal): WAL file write failure silently swallowed@xe-nvdk2026-03-26
arduino-libraries/NTPClientNTPClient returns fabricated epoch timestamps before NTP synchronization (fails open, security r@LeeLinkoff2026-01-27
microsoft/microsoft-ui-reactor[Selftests] Harness.ClickButton is fail-open — a missing, renamed, or disabled button is a silen@azchohfi2026-08-01
microsoft/microsoft-ui-reactorCI: `Audit ledger gate` reports success with zero tests if the test filter stops matching@azchohfi2026-08-01
microsoft/microsoft-ui-reactor[Bug] WinAppUi.SendKeys is fail-open: an unmapped key token exits 0 and types nothing, so every @azchohfi2026-08-01
Yeraze/meshmonitor[BUG] 3.2.5 reset-admin.mjs fails to change admin password - fails with Cannot open database...@devocite2026-01-27
ng-primitives/ng-primitivesAccordion default open fails inside hidden container@zecka2026-04-27
microsoft/vscode-livepreview"Open in External Browser" from embedded preview fails with "Failed to open (0x2)" while Command@Luna-Sterling2026-06-30
Automattic/wordpress-activitypubFollow requests from Pixelfed are silently ignored@jeherve2026-01-13
dawsers/scrollScroll - Firefox fails to open the file picker@hilprl2026-05-30
Lingtai-AI/lingtaiBatch: Non-atomic writes and silently ignored errors across preset/ and fs/ packages@ZigongXu2026-07-01
Lingtai-AI/lingtaiAPI key save error silently ignored in first-run wizard@ZigongXu2026-07-01
Lingtai-AI/lingtaiMigration system: per-file errors silently swallowed in m028/m030/m035/m039 — partial failures s@ZigongXu2026-07-01
Lingtai-AI/lingtaiTUI: recipe re-apply errors are swallowed before agent launch@ZigongXu2026-07-01
tsz-org/tszfalse-negative(checker): TS2763/2764/2765/2766 (iterator next send-type mismatch) silently skipp@mohsen12026-06-25
Pasta-Devs/Marinara-Engine[Issue]: NanoGPT connection test reports success before generation auth is actually usable@cha1latte2026-05-29
larksuite/oapi-sdk-pythonFileComment model includes is_whole/quote fields but they are silently ignored when creating com@tonyzdev2026-02-26
qf-studio/pilotWave 3: CreatePilotIssue repo allowlist fails open on nil — fail closed (C7)@alekspetrov2026-06-01
qf-studio/pilotfix: hot-upgrade 'u' silently fails on macOS — codesign error swallowed + misleading TUI@alekspetrov2026-05-26
aovestdipaperino/tokensaveBare tokensave with piped stdin prints help on stdout and exits 0 — breaks the agent permission-@BartS792026-07-31
clawwork-ai/ClawWork[Bug] Persistence errors silently swallowed in task-store and message-store@samzong2026-04-01
ClickHouse/clickhouse-connectDBAPI bulk insert silently degrades for backtick-quoted dotted (Nested) column names@polyglotAI-bot2026-06-26
hashicorp/terraform-provider-vault[BUG] vault_auth_backend: tune failure is silently swallowed, state diverges from Vault@JasperHG902026-08-01
microsoft/AL-Go[Bug]: Publish To Environment workflow does not log user inputs and reports false success when e@SteveKrisjanovsD3652026-02-28
cordum-io/cordumPack install reports success when safety-kernel silently rejects the policy fragment@yaront11112026-05-28
Moonfin-Client/Moonfin-CorePlayback fails ('Failed to open' / HTTP 500) on audio-transcoded streams — duplicate AudioStream@brendongl2026-06-30
etemesi254/zune-imageAC refinement scans silently skipped in progressive JPEG with restart markers (DRI)@lilith2026-02-15
OpenOrienteering/mapperFails to open geotiff due to unsupported format `GrayFloat32`@dmkaplan20002026-02-01
duriantaco/skylosAlways exits with code 0 even with `--strict` flag@kevgo2026-05-01
microsoft/PowerAppsCodeApps[Bug] add-data-source reports success but code generation fails for shared_powerplatformadminv2@ranjith70222026-05-01
davekilleen/Dexcalendar_eventkit.py cannot obtain a fresh macOS calendar grant (deprecated API, silent deny) + @chrisjackson-coding2026-08-03
AztecProtocol/aztec-packages`--archiver` flag silently ignored when combined with `--node`, archiver_* RPC methods never exp@AlexVarin20012026-04-01
openai/openai-rubyEncoding::CompatibilityError during multipart file upload is swallowed and reported as a generic@nicolascian2026-07-30
microsoft/azure-container-appsNFS mountOptions silently ignored@ollipa2026-02-27
pupnp/pupnpInstall pytest in CI so Python tests are not silently skipped@mrjimenez2026-05-27
udecode/kitcninit -t start: fatal vite.config.ts patch failure + Convex/cRPC bootstrap silently skipped@fingul2026-05-29
pgpool/pgpool2pcp_promote_node switchover reports success when pg_rewind from follow_primary fails@tallenaz2026-01-30
sediman-agent/OpenSkynet[MEDIUM] Subagent reports success=False when non-fatal tool errors were recovered from@JasonSedimanBOT2026-05-31
knoop7/AvaFailed to perform the action cover/open_cover. list index out of range@bambam2472026-02-28
unjs/obuildtransform: isolatedDeclarations parse errors silently drop emitted files (build reports success)@productdevbook2026-04-29
Abilityai/trinitybug: Scheduled execution silently skipped when previous execution times out at trigger time@vybe2026-03-01
Abilityai/trinitybug: scheduled slash-command referencing a missing skill silently no-ops as success/skipped (no @vybe2026-07-01
Abilityai/trinitybug: agent_server reports task as 'completed successfully' when claude exits 0 with no result me@vybe2026-04-26
getfloresta/Florestaaddnode RPC always reports success even when adding/removing/connecting a peer fails@CapThunder192026-08-01
codefori/vscode-ibmiMember file inconsistently fails to open and only opens when renamed@will-barber2026-01-20
Dicklesworthstone/ntmntm config validate --json reports valid=false but exits 0@JYeswak2026-05-01
OpenAEC-Foundation/open-pdf-studioopen-pdf-studio fails to lauch on linux@rumia-dec2026-06-30
Dicklesworthstone/ntmdashboard: `ntm dash` → opaque "Error: exit status 1" for unregistered tmux sessions (overlay re@igouss2026-06-26
KernelTuner/kernel_tuner`during` observer callbacks are silently skipped with the Compiler backend@askorikov2026-07-31
sanketagarwal/hyperliquid-trading-agentBUG: Naked position window between entry fill and SL placement; SL placement errors silently ign@being-invincible2026-04-29
neo4j-labs/agent-memoryLocal sentence-transformers setup for the MCP server: misleading "OpenAI package not installed" @KaizenPrompt2026-06-30
netxms/netxmsNXSL Unicode case folding silently degrades to ASCII when process environment has no locale@alkk2026-07-30
netxms/netxms[NX-2274] 2FA - unable to add failed method in user editor - it's silently ignored@netxms-migration-bot2026-02-27
HeiGeAi/heige-codex-skin-studioWindows Store/MSIX 26.727.6591.0: AUMID relaunch drops CDP arguments and apply exits 1@joonas-0012026-08-03
mirego/mix_auditFailed advisory-database sync goes undetected: mix deps.audit reports "No vulnerabilities found"@e-fu2026-08-01
leancodepl/marionette_mcpBug: Hot reload reports failure despite succeeding (type: Success response not handled)@TheSimpleApp2026-01-22
reductstore/reductstoreReductStore 1.17.3 fails to start: too many open files while loading bucket@atimin2026-01-28
albertz/PyCParserMulti-dimensional arrays are silently ignored@emoose2026-06-30
smithersai/smithersRender-time ctx.outputs() interpolated into a downstream Task's prompt silently yields [] (deps @roninjin102026-08-02
smithersai/smithersAgent fallback chain: Codex leads silently skipped, kimi 'session is broken' error defeats both @roninjin102026-08-02
librefang/librefangsecurity: plugin registry public key is all-zero placeholder — Ed25519 signature verification si@houko2026-04-27
librefang/librefangDingTalk signature check skipped silently when timestamp header non-numeric@houko2026-04-27
Azure/static-web-appsCustom Entra ID provider: Entra reports sign-in success, but no POST ever reaches /.auth/login/a@ibourega2026-08-01
meshtastic/web-flasherWeb Flasher Failed to Open Serial Port@mizzledos2026-02-01
ronisarkarexe/story-spark-aiBUG: Uncaught JSON Parsing Error Silently Swallowed in Branching Story Service@Sandeep61352026-05-28
Cosmian/kms5.14.1/5.14.0 image immediately exits on Macos ARM - Last working Version: 5.12.1@juliankrieger2026-01-20
pop-os/cosmic-editCOSMIC Editor fails to open UTF-16 encoded files@arvindautar2026-01-26
tdlight-team/tdlight-javaErrors from `GetMe` are silently swallowed in `AuthorizationStateReadyGetMe`@neverwhatlose2026-04-26
automagik-dev/geniebug(team): `genie team fire` reports success but does not persist member removal@namastex8882026-04-29
letta-ai/lettabotfix: heartbeat conversation routing silently ignored in shared+dedicated and per-chat+channel mo@just-cameron2026-02-28
redhat-developer/vscode-xmlxml.catalogs entries with Windows backslash paths are silently ignored@chirag1272026-07-01
miuuyy/codex-chatgpt-webeffort_selection fails while ChatGPT's rate-limit dialog is open, and reports it as "model at ca@kvsentry2026-08-04
ProteoWizard/pwizMSConvert 3.0.26211-72e0401 Fails to Open FID Files@Michael-C-Strobel2026-07-31
anvie/evonicEvomem binary not shipped — default memory engine silently degrades to FTS5 on fresh install@srflmr2026-06-20
hunkyburrito/xdg-desktop-portal-termfilechooserGhostty: yazi-wrapper.sh passes --chooser-file with embedded quotes → chooser output file not cr@Sinthoras72026-01-29
cheapestinference/claude-auto-retryRetry silently skipped when rate-limit banner clears at reset time (false "User already continue@pkino2026-06-28
dheerajshenoy/lektraInstalls, launches, fails to open any PDF - Alpine Linux@uhmzilighase2026-02-27
bastani-inc/atomicHeadless workflow reports success but CLI does not return to shell prompt@flora1312026-06-01
dottxt-ai/outlines-coreSix more validation keywords are silently ignored during compilation (extends #147)@ErenAta162026-08-01