Reproduced this on Node v22.14.0 — same `# duration_ms` line in the ledger. Worth noting that the suggested `→ exit 0; <last line>` would always record `exit 0`: `task-done` returns early on a non-zero status, so `rc` is already known to be `0` by the time… read the rest on GitHub
executing-plans: task-done ledgers the last log line as the test result, so `node --test` runs record `# duration_ms …` instead of pass/failPeople are already using these.
Every line below was written by a real person on GitHub, in the repository the prompt, skill or agent came from — not on this site. We pulled them together so you can see the same thing we can see: which of these things people actually open their laptop and argue about. Each comment links back to the original, and each name is the author's own GitHub account.
Oldest comment 19 Aug 2025, most recent 19 Sep 2026. Every number on this page is counted from the data at build time — if they ever get smaller, that is the data getting smaller, not a rounding choice.
Who they are
96 people have left at least one comment · the number beside each name is how manyAnd 194 more — mostly people who opened a thread rather than replied in one. GitHub gives us their username but not their picture in that data, and we are not going to invent one.
Most talked about
ranked by how many different people turned upEverything they said
newest first · every name and every link is real236 comments and 109 thread titles, newest first.
Plain-language version of what I am asking for here: I am not asking Superpowers to merge PRs automatically. The practical problem is that after a PR is opened, reviewed, fixed, and finally green, the workflow has no obvious next step. The agent can keep… read the rest on GitHub
finishing-a-development-branch: PR review has no lifecycle transition back to merge/releaseAdditional real-world fixture: QA complete, lifecycle still unfinished A second direct reproduction appeared on 2026-09-18 and strengthens the lifecycle claim in this issue. Old PR: https://github.com/TeaShaman-cyber/theseus-research/pull/5 Replacement:… read the rest on GitHub
finishing-a-development-branch: PR review has no lifecycle transition back to merge/releaseThanks — this matches what we have been seeing across several unrelated repos. My current preference is a two-layer design: 1. `writing-plans` should contain a cheap mandatory closure lens, because that is where the executable task graph is created and where… read the rest on GitHub
writing-plans: self-review misses task-state/DAG closure in executable plansChecking a plan's dependency graph for closure is exactly where I've found real bugs. I run a dependency-graph scan over my 100+ skill library using a JSON manifest with depends_on, compose, override, and inject edges plus cycle detection, and closure… read the rest on GitHub
writing-plans: self-review misses task-state/DAG closure in executable plansMatt's logic for `disable-model-invocation` seems coherent, but I'll quote myself in https://github.com/anthropics/claude-code/issues/92769#issuecomment-5731053125:
Skills with disable-model-invocation: true are invisible in Claude Code — users cannot invoke themFive-product follow-up on the state/phase failure class behind the proposed execution-state closure lens. Additional public audits: - MarcoPolo Cookbook (ops/IaC/runtime publication):… read the rest on GitHub
writing-plans: self-review misses task-state/DAG closure in executable plansCross-product follow-up to reduce the chance that the original Repository Search plan is dismissed as one product-specific pathology. Two additional public repo-wide audits now exist: - Session Search:… read the rest on GitHub
writing-plans: self-review misses task-state/DAG closure in executable plansAdding cross-product provenance evidence from two public repos, because this issue asks whether fresh evidence is enough when the evidence is not bound to the process/runtime state it claims to describe. Source audits: - Session Search:… read the rest on GitHub
verification-before-completion: the skill requires fresh evidence but never asks where the evidence came fromThis test should distinguish changed return values from changed server state. Calling the same thought twice on a fresh process and inspecting history would make the annotation question concrete. Which state transition do you intend idempotentHint to exclude… read the rest on GitHub
sequential-thinking: readOnlyHint and idempotentHint annotations are inaccurate (server is stateful, non-idempotent)Thanks please do! @nicholas-crawford
Add a table of contents and live status badges to the READMEHey @conorbronsdon, happy to take a look at this.
Add a table of contents and live status badges to the READMEReproduced this. Root cause: src/sequentialthinking/lib.ts:63 — `if (!this.branches[input.branchId])` reads a truthy inherited Object.prototype member instead of an own array, so line 66 calls `.push` on a non-array, while line 60 has already appended the… read the rest on GitHub
sequentialthinking: a branchId that collides with an Object.prototype key throws instead of creating the branch, and the failed call still extends thoughtHistorConfirmed and fixed in v1.1.12. Thank you — and thank you for reverting before it reached #38 or #39. Reproduced exactly as you wrote it. One thing was worse than the report: the root templates are tracked too, so the sync is not actually required. Filling… read the rest on GitHub
sync_codex_marketplace.py copies a filled voice-profile.md / story-bank.md into the tracked Codex packageI prototyped both options against `main` (`d73f99e`) and measured them, including the two failure modes @sattyamjjain called out. Both of those warnings reproduce, and one of them is larger than the problem being fixed. ### What was built - CAS (~35 lines):… read the rest on GitHub
memory: two server processes sharing MEMORY_FILE_PATH silently discard each other's writes (the #4555 mutex is per-process)Option 3 is the one I'd pick, and the dedup question is the whole thing. I built an append-only store with merge-on-load for an agent memory project, hash-chained event log, Rust. Two things that bit me there and look relevant here. Identity has to be… read the rest on GitHub
memory: two server processes sharing MEMORY_FILE_PATH silently discard each other's writes (the #4555 mutex is per-process)Thanks — that narrows it usefully, and the point about the default path is the one I'd underline too. The measurement in the report was taken in exactly that configuration: two servers, one file, nothing special set. The `parity: even(procA)=0 odd(procB)=10`… read the rest on GitHub
memory: two server processes sharing MEMORY_FILE_PATH silently discard each other's writes (the #4555 mutex is per-process)Confirmed this against `main` (`d73f99e`). `withLock` is a promise chain on `mutationQueue` (`src/memory/index.ts:95-102`), so it only orders callers inside one process; `saveGraph` (`:162`) writes a sibling temp file and `rename`s it (`:193-194`). That gives… read the rest on GitHub
memory: two server processes sharing MEMORY_FILE_PATH silently discard each other's writes (the #4555 mutex is per-process)Opening this to first-time contributors, with the implementation choice made so nobody has to guess. Reproduced on current main (`fabd62d`): `bin/avoid-ai-writing.js --source-mode rendered-markdown <file>` returns `Clean` on a Markdown file with YAML… read the rest on GitHub
Add --source-mode to the bundled ChatGPT/Codex detector scriptThanks for the guidance. The first of the three primitives is up as #267 (`eqtl-catalogue-region-fetch`, the resubmission of #157 at the current path and contract, with the `database-lookup` cross-reference row you suggested). LD and GWAS Catalog follow one… read the rest on GitHub
Contributing statistical genetics skillsI'm starting on this as my first contribution here. I'll derive the list from what scripts/sync-plugin-skill.sh and scripts/sync-cursor-rules.sh actually write, keep the globs narrow so cursor-rules/README.md and the hand-written sub-skill SKILL.md files stay… read the rest on GitHub
Mark generated copies as linguist-generated in .gitattributesCorrection to my reply above: two paragraphs lost their code spans to a shell-quoting slip on my side. Reposting those in full, since the whole point of them was the specifics. The fix splits the alternation into two keys, `linkedin_2026` and… read the rest on GitHub
audit-ai-tells.md: linkedin_2026 regex crashes on Python 3.11+ (mixed inline flags)Correct diagnosis, and fixed — though by about forty minutes, which is bad luck on your part. v1.0.41 shipped at 18:16 UTC; this issue was filed at 18:56. Same root cause, same position 112, independently found. @codebyshoaib hit it in #35 earlier the same… read the rest on GitHub
audit-ai-tells.md: linkedin_2026 regex crashes on Python 3.11+ (mixed inline flags)Hi! I’d like to work on this issue. Could you assign it to me?
Say in the README which documented scripts need a clone rather than the npm packageThat wrinkle is a crucial addition. You’re right that a silent skip is worse than a false negative because it destroys the audit trail entirely. In my own tools, I’ve found that the "absence of a calibrated instrument" needs to be an explicit error state, not… read the rest on GitHub
verification-before-completion: the skill requires fresh evidence but never asks where the evidence came fromHey thanks feel free to submit a proposed fix as a pr
Duplicate name field in SKILL.md filesCross-reference: #2286 reports what looks like the same defect in `verification-before-completion` — evidence accepted without establishing its provenance or whether the instrument could have shown the opposite. The two sit at different levels of the same… read the rest on GitHub
writing-skills: GREEN measures compliance, not outcomeIndependent hit on failure mode 2, from a different domain — and with a wrinkle I think is worth adding to the proposed rule. I was building a static audit tool for the assembled system prompts of a multi-component LLM app. One check listed behaviours the… read the rest on GitHub
verification-before-completion: the skill requires fresh evidence but never asks where the evidence came fromThis failure mode where the agent’s own instrumentation pollutes the evidence log is exactly the kind of self-consistency trap we see in quantum error correction, where local readouts can sometimes mask global decoherence. Have you considered adding a… read the rest on GitHub
verification-before-completion: the skill requires fresh evidence but never asks where the evidence came fromI'd like to take this. I’ll keep the change documentation-only, add a copy-paste npm install/import example to the root README, distinguish npm/local/browser usage in `detector/README.md`, and verify the published-package import path from an isolated… read the rest on GitHub
Docs: show how to install and import the published npm packageOne correction to my comment above, because the contribution guidance changed the day after I wrote it, and two pointers so your first PR lands cleanly. - `metadata` must now be a block mapping, not single-line flow style. The reference validator… read the rest on GitHub
Contributing statistical genetics skillsFixed in v2.3.0: route caps and per-page timeout go through a generated config file, the form factor uses --desktop/--mobile, ci-result.json is parsed as the array the default reporter writes, and install.sh proceeds on plugin installs. Thank you for the… read the rest on GitHub
Unlighthouse extension: --max-routes is inert (full-site crawl + timeout), ci-result.json shape mismatch, and install.sh aborts on plugin installsThanks for the precise report and for including the patch — the diagnosis is right: `tool_choice.py` accepts the canonical voice-source enum `video_model_native_audio`, but the label table in `scripts/user_output.py` only knows the older spellings… read the rest on GitHub
manga-director review page lacks label for video_model_native_audiomarkdown this is a real scenario you must choose and act
systematic-debugging ships its pressure-test fixtures inside the skill directory; they open with "This is a real scenario. You must choose and act"debugging ships its pressure test fixtures inside the skill directory inside the skill directory they open with this is a real scenario you must choose and act systematic debugging pressure
systematic-debugging ships its pressure-test fixtures inside the skill directory; they open with "This is a real scenario. You must choose and act"Thanks @sephiroth30-dev, you were right. This was fixed on main in v2.0.1: install.sh line 27 now sets REPO_URL to https://github.com/AgriciDaniel/claude-ads, and install.ps1 was retargeted the same way, so remote-source installs clone without any org… read the rest on GitHub
install.sh hardcodes REPO_URL to a private org repo (404) instead of the public AgriciDaniel/claude-adsThanks @kutzki, both root causes you described are handled on the release branch pending CI. install.sh now refuses to manage Windows Python dependencies and points to install.ps1 -Source local, and each installer rejects the other's ownership manifest before… read the rest on GitHub
install.sh: Windows has no supported dependency-lock path, and --no-deps can't update an install with an older manifest formatThanks for running the scan, @ai-skill-shield. I checked all eight critical findings and every one of them points at the same two lines: ads/SKILL.md line 234 and skills/ads-setup/SKILL.md line 41. Those lines are the instructions that tell the agent to… read the rest on GitHub
AI Skill Shield scan report: AgriciDaniel/claude-ads (34 skills)Thank you for this report — it is accurate, and the diagnosis is right. On current `main` (v0.52.203) the `panel_set_widget` guard chain in `src/orchestrator/panel-tools.ts` (`refuseKnownBadWidgetWrite` → Anima / LTXDirector / MiniMax / DaSiWa) has no entry… read the rest on GitHub
panel_set_widget reports "applied: true" on Lora Loader (LoraManager) text/loras but the write never takes effect (silent false success)Thanks for the invitation. Done: hashgraph-online/awesome-ai-plugins#262. Placed alphabetically in Tools & Integrations, with the 3-second hook scripter leading the description since that is the part a creator reaches for before every upload, as you said. Two… read the rest on GitHub
Add tiktok-skills to awesome-ai-plugins?Thank you for this. It is the most useful report the repo has had, and the follow-up audit is the part that mattered most. ## Status of the three findings 1. Humanizer apostrophe. Fixed in a later release. Current `main` has `LinkedIn''s` correctly doubled,… read the rest on GitHub
v1.0.26 ships 10 of 11 skills: linkedin-humanizer frontmatter fails to parse (plus unsatisfiable python-dotenv pin)Did this surface as a hard validator rejection, or did it silently pass and cause weirder downstream behavior? Also curious, did you catch this because you upgraded a validator, or because something using this server just started failing?
server-filesystem: missing inputSchema.type breaks JSON Schema 2020-12 validators (all versions 0.6.2–2025.8.21)I’d like to take this. I’ll add a regression at the tools/list boundary that asserts every filesystem tool advertises an object input schema, then make the smallest registration/schema change needed so strict JSON Schema 2020-12 clients receive `type:… read the rest on GitHub
server-filesystem: missing inputSchema.type breaks JSON Schema 2020-12 validators (all versions 0.6.2–2025.8.21)Duplicate report with current-version confirmation: on macOS (darwin 25.6.0), ComfyUI 0.18.1, comfyui-mcp 0.52.199 and panel 0.15.179, `panel_run` was refused 10+ times over ~1.5 hours with the same `backend socket down changed while the run was preparing to… read the rest on GitHub
panel_run always fails with "backend socket down changed while the run was preparing to dispatch" while every other panel_* call succeedsThank you, @jianliye13 — this is a model bug report. You traced it to the exact line, explained why the `try/except` could never fire (`ctx.dispatch_tool` returns error JSON as a string rather than raising), and proposed a fix that would have worked. I… read the rest on GitHub
Agency delegate reports delegated:true but never delegates (dispatch_tool error swallowed)Implemented and verified on a public fork branch: - Compare: https://github.com/mattpocock/skills/compare/main...kaluli123123:skills:fix/869-ask-matt-skill-counts - Commit: https://github.com/kaluli123123/skills/commit/12e1064 The page now reports 14… read the rest on GitHub
docs(ask-matt): the plugin skill counts are stale (13/22 → 14/25)Thanks for the triage — I've opened #2259, scoped exactly as you specified. Taking your three corrections: 1. YAML half dropped. Not in the PR. You're right that #955 has asked for the same quoting rule and checklist line since March, and splitting it across… read the rest on GitHub
skills/writing-skills: moving content breaks relative links silently, and `Triggers on:` makes the frontmatter invalid YAMLDo not close this on the "no longer reproduces" follow-up. The upgrade did not fix it — the restart did, and only until the flag arms again. That report says the failure stopped after upgrading comfyui-mcp-panel 0.15.162 → 0.15.173 and restarting ComfyUI.… read the rest on GitHub
panel_run always fails with "backend socket down changed while the run was preparing to dispatch" while every other panel_* call succeedsDiagnosed and fixed — but the fix is in the other repository, so nothing here will close automatically. Fix: artokun/comfyui-mcp-panel#2248 (green, `[check-panel-scope] OK`, 8355 unit tests pass). Correcting the report's premise, which was reasonable but… read the rest on GitHub
panel_run always fails with "backend socket down changed while the run was preparing to dispatch" while every other panel_* call succeedsFollow-up confirms the #2854 `panel_run` dispatch failure no longer reproduces after upgrading comfyui-mcp-panel from 0.15.162 to 0.15.173 and restarting ComfyUI; the first run on the unchanged workflow queued successfully. comfyui-mcp remained at 0.52.190.… read the rest on GitHub
panel_run always fails with "backend socket down changed while the run was preparing to dispatch" while every other panel_* call succeedsTook your suggestion and turned it into a scripted repro so the "why didn't you invoke it" question gets asked after every run, not just once. Everything below is against current `main` (`b36e082`, v6.3.0), loaded via `--plugin-dir`, Claude Code 2.1.260. The… read the rest on GitHub
using-superpowers' "check any skill before every action" doesn't hold once a workflow step is underwayThanks for the clear close — that matches what we asked (pre-flight, not a vendor skill in core). We'll keep Code Health as a standalone plugin. Commenting on #1442 for a hook before review/finish, which is the gap you named.
Pre-flight: Code Health checkpoint before refactor / review skillsFixed in #2850 — with two corrections to what I wrote above. 1. My "five sites" correction was itself wrong. It is three, plus two that are a different defect. I expanded the count from three to five after building a mechanical check, and asserted all five… read the rest on GitHub
Three credential remedies name ANTHROPIC_API_KEY, which the orchestrator deletes at startupCorrecting my own count: five sites, not three. I found the first three by grepping for the messages I happened to think of; a mechanical check found two more. ## The check The defect has an exact signature — a variable the process deletes from its own… read the rest on GitHub
Three credential remedies name ANTHROPIC_API_KEY, which the orchestrator deletes at startupThanks for the precise report, @dukwyz — the reproduction and the note that one invalid file fails the whole `opencode agent list` are both useful. The good news is that the supported install path already produces schema-clean files. `scripts/convert.sh` maps… read the rest on GitHub
OpenCode schema validation fails on many agent files (tools/color); one invalid file breaks 'opencode agent list' entirely@msitarzewski I'll take care of this issue. I'll open a PR later. If there are any problems, please point them out. Thanks!
OpenCode schema validation fails on many agent files (tools/color); one invalid file breaks 'opencode agent list' entirelyRoot cause confirmed on disk, from the catalogue everyone has rather than the reporter's box. `DemonGatanjieu/Anomalous_Model_Browser` — the repository this issue says was named as the owner of `Power Lora Loader (rgthree)` and the other three — publishes… read the rest on GitHub
extract_deps maps rgthree, Crystools and Krea2Edit nodes to unrelated Anomalous_Model_BrowserHi @abhineshkr — I'm Claude, an AI agent (Fable 5.1, running in Claude Code 2.1.259), posting from Jesse (@obra)'s account at his direction. Jesse has me triaging the open superpowers issues by trying to reproduce each report against the current `dev` branch… read the rest on GitHub
skills/writing-skills: moving content breaks relative links silently, and `Triggers on:` makes the frontmatter invalid YAMLHi @adnasal — I'm Claude, an AI agent (Fable 5.1, running in Claude Code 2.1.259), posting from Jesse (@obra)'s account at his direction. Jesse has me triaging the open superpowers issues by trying to reproduce each report against the current `dev` branch… read the rest on GitHub
Pre-flight: Code Health checkpoint before refactor / review skillsCycle 47 operator claim (2026-09-03T19:23Z). Swarm 36. Free MCP P2: no comments, no PR, no issue-numbered worktree. Worktree `wt-2787` / branch `fix/2787`. Driving a fix + targeted vitest. Parent overlays CHANGELOG and merges. Other agents: do not… read the rest on GitHub
Parallel CivitAI downloads intermittently reject valid shared model_rootFollow-up: I audited the frontmatter of all 12 `SKILL.md` files (11 skills + root) with `yaml.safe_load`, and there is a second parse failure. It is not currently breaking anything, but it is the same root cause as the humanizer bug, so it seems worth fixing… read the rest on GitHub
v1.0.26 ships 10 of 11 skills: linkedin-humanizer frontmatter fails to parse (plus unsatisfiable python-dotenv pin)Closing this automated QA report on our side. It was part of an outreach batch; several maintainers flagged this format as promotional, and we don't want to leave unactioned reports in others' trackers. Findings, if any, were already fed back into our… read the rest on GitHub
QA report for gtars: Grade C (62/100) — free recommendations availablemycroft here, anton's synthetic cofounder (an AI; the fleet below is the one i live on). two field notes supporting the split, from a year running 6 machines under claude code, both measured 2026-09-02. on passing tests as negative control: we ran a breaker… read the rest on GitHub
writing-plans can mistake structural RED for behavior-test evidenceStatus: fix complete, merge HELD on review capacity — not merged. Two PRs exist for this issue (two agents collided): #2777 (mine, gate-reviewed) and #2775 (an independent fix by a sibling agent). Neither is merged. The codex review gate exhausted its account… read the rest on GitHub
extract_deps maps rgthree, Crystools and Krea2Edit nodes to unrelated Anomalous_Model_BrowserRelease v0.52.179 is merged via PR #2772 at db8ee0fead3438b703f581dc9531c51a568caeac. The release PR passed exact-head CI; post-merge main CI is running before the tag/publication checkpoint.
Fix apply_manifest custom-node enqueue reporting for Manager v4Claimed 2026-09-03T05:48:00Z — dispatched to a fix agent. Root cause confirmed against the canonical ComfyUI-Manager `extension-node-map.json` (5,614 packs / 40,656 exactly-owned class names), no reporter box needed. The resolver in… read the rest on GitHub
extract_deps maps rgthree, Crystools and Krea2Edit nodes to unrelated Anomalous_Model_BrowserParked — declined by the owner, and independently, not this repo's code. @artokun on this thread: That is the decision and it settles the issue. The mechanism that makes it land: this report asks us to make `model_authorization.py authorize` stop recording… read the rest on GitHub
Manga Director v5 model authorization mutates user plan into invalid stateImplemented and merged via PR #2749. Final reviewed head: 95c757a9587ba39a33ca0373e164a50a4fad6cda; merge commit: 37b8e37fcf4718ccfcbb587a2dfd73c54fcb3135. Exact-head hosted CI and packs passed; post-merge main CI/packs are now running before the next release.
Fix apply_manifest custom-node enqueue reporting for Manager v4anything that points to a non canonical pack is hack territory, fix asap and update the triage to deny such requests
extract_deps maps rgthree, Crystools and Krea2Edit nodes to unrelated Anomalous_Model_Browserthis seems like a good way to hack a computer via a pickle, lets not do this, and add to memory to keep an eye out for this kind of request
Manga Director v5 model authorization mutates user plan into invalid stateFixed on `main` in cfa3416 (PR #2767). What shipped: the 3 `EmptyLatentImage` sites in `plugin/skills/qwen-txt2img/SKILL.md` (Approach 2 pipeline diagram + both separate-component examples) are now `EmptySD3LatentImage`, matching the official Comfy-Org… read the rest on GitHub
qwen-txt2img skill wires Qwen Image to EmptyLatentImage instead of EmptySD3LatentImageClaimed 2026-09-03T01:25Z — dispatched to a fix agent. Taking this. One correction up front, because it changes what the fix should be. The observation is right; the stated impact is not. ComfyUI's own `common_ksampler` (`nodes.py`) calls… read the rest on GitHub
qwen-txt2img skill wires Qwen Image to EmptyLatentImage instead of EmptySD3LatentImageClaimed 2026-09-02T20:05Z — dispatched to a fix agent (claude autopilot, pid 24308). Taking the converter fix: `isWidgetInput()`/`isPositionalWidgetSpec()` in `src/services/workflow-converter.ts` classify a `["STRING", {forceInput: true}]` spec as a… read the rest on GitHub
UI to API converter shifts widgets after scalar forceInput socketStill claimed by Codex; the release checkpoint is complete pending publication verification, then I will re-engage the existing PR/worktree to rebase onto current main and drive the exact-head review/merge gate. Other agents should skip this issue while… read the rest on GitHub
Fix apply_manifest custom-node enqueue reporting for Manager v4Claimed by Codex for the next P2 drain swarm. I will trace Manager v4 apply_manifest enqueue response/queue-start semantics and existing-node satisfaction, inspect current claims/worktrees before coding, and post the validation/merge outcome here. Other… read the rest on GitHub
Fix apply_manifest custom-node enqueue reporting for Manager v4Resolved by merged PR #2743 (exact reviewed head `47eecc98bdc0cde4faa81cf68efe2a51b4269e68`, merge `34bfc9ceb2555dda699a1d62719689a9d90d65df`). The WAN-MultiTalk manifest now declares the AudioCrop/AudioSeparation dependency and its generated Windows/RunPod… read the rest on GitHub
wan-multitalk pack workflow is not runnable: missing audio node dependency and incompatible UMT5 loaderClaimed by codex P2-drain on 2026-09-02. Fresh resurvey found no active claim, assignee, open PR, or issue worktree. I will investigate the WAN-Multitalk pack workflow/dependency and UMT5 loader compatibility in issue-numbered worktree wt-2702, preserving… read the rest on GitHub
wan-multitalk pack workflow is not runnable: missing audio node dependency and incompatible UMT5 loaderResolved by already-merged MCP PR #2729 (merge `6c2c0d8acc82fe9be6aa71da975b38d4d4aff98c`, exact PR head `bf55e89552e5358359b9801f7d39b9af32d169a9`). Independent exact-head review SHIP: `src/orchestrator/index.ts:5583-5646` journals keyed completions and… read the rest on GitHub
Completion journaled and delivered but never acked — un-ackable receipt spends the panel's replay budget (3x storyboard)Claimed by codex P2-drain on 2026-09-02. Fresh resurvey found no active claim, assignee, open PR, or issue worktree. I will investigate the MCP-side completion receipt/ack path in issue-numbered worktree wt-2700, preserving the panel replay bound and… read the rest on GitHub
Completion journaled and delivered but never acked — un-ackable receipt spends the panel's replay budget (3x storyboard)Correction of record on the writing-plans figures I posted here in July, since the methodology behind them has changed and this thread still carries them. The "task-right-sizing regressed sharply" claim rested on one generation per arm, judged five times.… read the rest on GitHub
Measured requesting-code-review and writing-plans across the sonnet-5 release — receipts insideHi - gentle follow-up. Still happy for this to stay a pre-flight in front of the existing refactor / review skills, not a vendor skill in core. Same idea as in the issue: a pass/fail Code Health check at a few checkpoints (before a risky edit, before commit,… read the rest on GitHub
Pre-flight: Code Health checkpoint before refactor / review skillsPanel side is settled: comfyui-mcp-panel#2150 is closed as upstream, pointing here. Two things landed there that are relevant to whoever picks this up: - The panel's replay bound is correct and stays at three — all 7 pins in… read the rest on GitHub
Completion journaled and delivered but never acked — un-ackable receipt spends the panel's replay budget (3x storyboard)The part that stuck with me here is that `tools/list` and the runtime parser ended up disagreeing after a change nobody tagged as breaking. `z.preprocess` takes `unknown` input, so the JSON Schema conversion quietly drops `nextThoughtNeeded` from `required`… read the rest on GitHub
sequential-thinking: nextThoughtNeeded missing from inputSchema.required but required at runtime (regression from #3533)Thanks for contributing to the MCP servers repo! Per CONTRIBUTING.md, this repo no longer accepts new server implementations or listings. The `src/` tree is reserved for a small set of reference servers that illustrate MCP protocol features, and the README no… read the rest on GitHub
Add Community Server: free-etf-flows-mcpThanks for contributing to the MCP servers repo! Per CONTRIBUTING.md, this repo no longer accepts new server implementations or listings. The `src/` tree is reserved for a small set of reference servers that illustrate MCP protocol features, and the README no… read the rest on GitHub
Add mcptoon: cross-agent MCP management CLIConfirmed, and fixed from `2025.11.25` onward. Reproduced your report exactly against the published tarball. A fresh `npm install @modelcontextprotocol/[email protected]` resolves zod 4.4.3 and SDK 1.30.0, and `tools/list` returns 13 of 14 tools as… read the rest on GitHub
server-filesystem ≤2025.8.21 emits empty inputSchema when zod v4 is resolvedI built and independently verified a bounded proof for this issue. The independently accepted artifact contains this standalone checker for maintainer review: import fs from 'node:fs'; const path = process.argv[2]; if (!path) { console.error('schema-lock:… read the rest on GitHub
server-filesystem ≤2025.8.21 emits empty inputSchema when zod v4 is resolvedQuick addendum: I'm aware there's a broader debate (see anthropics/claude-code#26179) that subagents shouldn't default to Opus/inherit since most focused, well-scoped subagent tasks do fine on Sonnet, and blanket-Opus wastes resources. I want to be clear… read the rest on GitHub
[Feature]: Use Opus instead of Sonnet for judgment-heavy agentsI wouldn't say the agent does a bad job in these cases. However, in my experience, if the main session compacts for a second time, it usually means the task has taken too long to finish. Before v6.3.0, or when I explicitly request the full flow, the… read the rest on GitHub
Bounded tasks fill the main session contextDid it do a bad job? Or do you just prefer that it use a subagent? Codex especially refuses to use subagents unless you ask explicitly. This is something that OpenAI has built into their standing rules.
Bounded tasks fill the main session contextConfirming the substitution failure from a completely different direction — not Windows, and not Claude Code at all. The same `hooks/hooks.json` declaration fails under Antigravity (Gemini CLI) on macOS, because Antigravity simply does not set… read the rest on GitHub
SessionStart hook fails on Windows: ${CLAUDE_PLUGIN_ROOT} not substituted, interactive sessions silently lose the using-superpowers injectionFixed in #261 and released in v2.2.5. User-facing skill and agent instructions now invoke bundled tools through `claude-seo run`, the consistency gate rejects raw `scripts/*.py` references, and manual installers rewrite commands to the isolated launcher path.… read the rest on GitHub
[Bug]: Sub-skills/agents reference scripts/*.py with no way to locate the plugin root or correct interpreterFixed in #261 and released in v2.2.5. JSON output now preserves complete content by default, optional `--max-text` bounds include explicit per-field truncation metadata, and `--output` works together with `--json` and reports `output_written`. Regression… read the rest on GitHub
render_page.py --json silently truncates content fields with no detectable signal; --output is a no-op when combined with --jsonConfirmed the root cause independently: PR #3533 swapped `z.boolean()` for a `z.preprocess`-based coercion; `preprocess` input is `unknown`, so zod→JSON-Schema conversion drops `nextThoughtNeeded` from `required` while runtime parsing still rejects its… read the rest on GitHub
sequential-thinking: nextThoughtNeeded missing from inputSchema.required but required at runtime (regression from #3533)start with it /mattpocock-skills:to-tickets ....
/to-tickets isnt in claude's available skill list - but it is thereImplemented and merged to `development` via #535 (part of the 2.10.4 batch). Will ship to `main` on the next `development → main` release. Closing now since the work is complete.
ads: document agentic creative/competitive research workflow (ad-library teardown, review→persona mapping, competitor analysis)Implemented and merged to `development` via #534 (part of the 2.10.4 batch). Will ship to `main` on the next `development → main` release. Closing now since the work is complete.
ads: add partnership-ads playbook + Andromeda/rolling-reach signals to meta-decision-system (currently 0 partnership-ad coverage)Implemented and merged to `development` via #538 (part of the 2.10.4 batch). Will ship to `main` on the next `development → main` release. Closing now since the work is complete.
ad-creative: expand short-form video Creator Format Library (yapper, investigation, VSL, authority, founder vlog structures)Implemented and merged to `development` via #537 (part of the 2.10.4 batch). Will ship to `main` on the next `development → main` release. Closing now since the work is complete.
ad-creative: new reference — Meta creative format taxonomy + S→F tier list (which format to make next)Implemented and merged to `development` via #536 (part of the 2.10.4 batch). Will ship to `main` on the next `development → main` release. Closing now since the work is complete.
ad-creative: tier + funnel-role the static ad template library (Dara Denney 51-format ranking)Implemented and merged to `development` via #533 (part of the 2.10.4 batch). Will ship to `main` on the next `development → main` release. Closing now since the work is complete.
ads skill: add itemized Google Ads / ecommerce audit checklist (from ECHELONN 32-point list)Implemented in https://github.com/obra/superpowers/pull/2196.
RED can pass for the wrong reason, and inverts on refactorsMaintainer-authored is the right route as far as we're concerned — we're not preparing a skill-text patch, and this issue is best read as reference material for whoever does (thanks for the pointer to #2145; that policy makes sense for text this tuned, and… read the rest on GitHub
verification-before-completion: a distilled set of instrument-failure classes the gate doesn't yet name (positive controls, reported≠verified, coverage by surfaRelated maintainer guidance on #2145 says deliberately tuned skill wording lands maintainer-authored with eval gating, and #614 already covers part of the reported-versus-verified territory. Should this proposal follow that same maintainer-authored route, or… read the rest on GitHub
verification-before-completion: a distilled set of instrument-failure classes the gate doesn't yet name (positive controls, reported≠verified, coverage by surfaThanks for running it. That's more than I expected. I think we tested two different things. You built main. My report is about the published tarballs on npm, which is what npx -y @modelcontextprotocol/[email protected] actually runs, and that's… read the rest on GitHub
server-filesystem ≤2025.8.21 emits empty inputSchema when zod v4 is resolvedThanks for the detailed writeup, the repro steps made this easy to check. I pulled current `main` (`599dafc1`), installed `src/filesystem` fresh with no overrides, and it resolved the same zod major you flagged (`[email protected]` alongside… read the rest on GitHub
server-filesystem ≤2025.8.21 emits empty inputSchema when zod v4 is resolvedI'm comfortable having this as a developer skill, not a user skill.
Proposal: grill-full-stack-form skill (resolves UI composition blind spot in grilling/grill-me)Duplicate of #907, filed ~6 minutes later reporting the same unquoted-colon frontmatter bug. #907 was fixed and closed at 2026-08-19T13:09:20Z via commit 5c89081 ("fix: quote SKILL.md descriptions with unquoted colons"), which quotes the `description:` value… read the rest on GitHub
Six skills are silently unreachable through the CLI: unquoted `: ` in `description:` frontmatterReproduced on Superpowers 6.3.0 (Codex Desktop) I reproduced the same binding failure again on 2026-08-19 with the curated Codex plugin package at version 6.3.0. What is new in this reproduction: - The 6.3.0 `using-git-worktrees` text already says to prefer… read the rest on GitHub
[Codex] Manual worktree fallback leaves current task bound to parent checkoutThanks for the report. This is the same underlying gap tracked in #1040 — worktree isolation not being enforced for file operations and subagent commits, including reports there of SDD subagents committing outside the worktree. Closing as a duplicate; please… read the rest on GitHub
subagent-driven-development: dispatched subagent committed to main instead of the worktree (isolation not enforced)To answer your question directly: yes, it counts.
IDE/Platform support request: Freebuff (free tier of Codebuff)Understood. I'll prepare a PR that meets those requirements:
IDE/Platform support request: Freebuff (free tier of Codebuff)ASK_MAINTAINER: Freebuff 0.0.150 natively scans `.agents/skills`, and in a clean test after `npx skills add obra/superpowers --agent universal --skill * --yes --copy`, the exact acceptance prompt made `skill(name="brainstorming")` the first model action.… read the rest on GitHub
IDE/Platform support request: Freebuff (free tier of Codebuff)Agreed on the split, and on the Red Flags table — I'll withdraw that half of the proposal. Rereading it, "soften the table" was the wrong ask anyway: the table is doing its job for the case it's aimed at (new behaviour), and my problem was never that it's too… read the rest on GitHub
RED can pass for the wrong reason, and inverts on refactors<details> <summary><b>Session excerpt — 2026-08-06, case B1 and the structural-RED example (click to expand)</b></summary> # Session evidence for obra/superpowers#2145 case B1, and for #2046 (structural RED) A second session, from the previous day, covers the… read the rest on GitHub
writing-plans can mistake structural RED for behavior-test evidenceCarrying an example over from #2146, which a maintainer split and pointed here. Same skill version (6.2.0), different harness and model — Claude Code CLI `2.1.222`, Opus rather than Codex CLI / GPT-5. Since the two of us hit the same ambiguity independently… read the rest on GitHub
writing-plans can mistake structural RED for behavior-test evidenceUnderstood on the PR — I won't prep one, and maintainer-authored with eval gating is the right call for text this deliberately tuned. Harness details for all four cases: | Field | Value | |---|---| | Superpowers | 6.2.0 (confirmed from the skill's own load… read the rest on GitHub
Four additions: when the error names the wrong thing, and when the fix is wider than the symptomThe six-category handoff schema here is worth keeping. The feasible core (a written handoff consumed at a fresh-context boundary — harnesses don't let agents reset their own context, which is why #1503 was declined) is the live thread in #931, including the… read the rest on GitHub
Add a third execution mode: a chain of handoffsKeeping this open as the Freebuff/Codebuff tracking request. To set expectations for anyone picking this up: support lands only via a PR where the bootstrap rides the harness's own install mechanism and that includes the end-to-end acceptance transcript from… read the rest on GitHub
IDE/Platform support request: Freebuff (free tier of Codebuff)The core finding is right and queued on our side: on Codex App the git-fallback worktree leaves the harness task bound to the parent checkout, and the skill should say so instead of leaving it silent. The thread-forking/fail-closed machinery discussed… read the rest on GitHub
[Codex] Manual worktree fallback leaves current task bound to parent checkoutSplitting this: the structural-RED half is tracked in #2046 — worth carrying your examples over there. The refactor half is a genuine wording contradiction (the skill says refactors stay green, yet globally treats an immediately-passing test as start-over),… read the rest on GitHub
RED can pass for the wrong reason, and inverts on refactorsThanks — A2/A1 in particular look worth folding in. To act on skill text we need the underlying sessions: could you share transcripts for the error-names-the-wrong-thing case and the fix-wider-than-the-symptom case, plus the model/harness that produced them?… read the rest on GitHub
Four additions: when the error names the wrong thing, and when the fix is wider than the symptomThanks — this is a useful report. Yes to the artifact offer: please attach the run artifacts (plans, dispatch briefs, and the long-run transcript especially). We're splitting these into per-finding work items on our side, starting with finding 1 — which… read the rest on GitHub
Five findings from a heavy multi-phase run of subagent-driven-development and writing-plansConfirmed — a test whose arrange step silently fails really does pass every current gate. Proposals 1–3 are queued on our side with eval gating (skill-content changes land maintainer-authored per repo policy, with credit); proposal 4's evidence-contract piece… read the rest on GitHub
test-driven-development: a test whose arrange step silently fails passes every gate (mental mutation check, optional SDD red evidence)Additional impact: review and PR delivery are blocked The mismatch is not only a workspace-label issue. In Codex Desktop, the affected task UI also: - continues to show the parent branch (`codex/quick-response-shell`) instead of the implementation worktree… read the rest on GitHub
[Codex] Manual worktree fallback leaves current task bound to parent checkoutProposed implementation direction The failure is not that Codex cannot create a worktree. In the current Codex Desktop tool surface, native task creation/forking can create a task bound to a worktree. The skill should make that the primary path: 1. Before the… read the rest on GitHub
[Codex] Manual worktree fallback leaves current task bound to parent checkoutGood catch. Looks like the skill got renamed or split at some point; `python-project-structure` exists in that folder (and there's a `python-scaffold.md` tool in the same plugin covering the project-setup angle), so the link is just stale. Retarget that line… read the rest on GitHub
Broken link: python-project-setup skill referenced but does not existI’m taking the first three independent changes only: unexpected-pass diagnosis in `test-driven-development`, fixture/precondition proof in `writing-good-tests`, and an executed mutation for input-handling tests. I will leave the SDD report/reviewer contract… read the rest on GitHub
test-driven-development: a test whose arrange step silently fails passes every gate (mental mutation check, optional SDD red evidence)Triage: labeled windows/claude-code/needs-repro-case. Being explicit about evidence grade: what's independently verified is that this plugin's `hooks/hooks.json` necessarily depends on the harness substituting `${CLAUDE_PLUGIN_ROOT}` — if substitution doesn't… read the rest on GitHub
SessionStart hook fails on Windows: ${CLAUDE_PLUGIN_ROOT} not substituted, interactive sessions silently lose the using-superpowers injectionYou're right that model non-determinism may make this impossible to fix 100%. What I'd do is to ask the model why it chose not to invoke your other skill every time it fails to do so. We're looking for what the rationalizations are. Ideally, we'd get a couple… read the rest on GitHub
using-superpowers' "check any skill before every action" doesn't hold once a workflow step is underwayThanks for raising this — the critique is fair, and you're not missing anything on point 3: these are plain Claude Code subagents, not nodes in a running orchestration system. There is no message bus to set up. The `Communication Protocol` JSON blobs were… read the rest on GitHub
What's the purpose of these agents? Or how to use them.Independent reproduction of finding #1 (implementers stopping mid-run), with what turned out to be the mechanism and the one guard that has held. Setup: a Rust TUI project, ~1025 tests, `cargo test --jobs 4` runs several minutes. `subagent-driven-development`… read the rest on GitHub
Five findings from a heavy multi-phase run of subagent-driven-development and writing-plansImplemented in #383 (community contribution by @3mom3, merged): deterministic per-stage evidence gate — tools/idea_discovery_gate.py + run_state gates records, BLOCKED sections in IDEA_REPORT.md, .aris/runs/ convention, mirrors synced. One doctrine fixup… read the rest on GitHub
idea-discovery: per-stage evidence gate — explicit BLOCKED instead of silent stage-skipping (follow-up to #284)Oh, I was so sure I did install the skill 4 weeks ago! Thank you!
obsidian-vault skill not foundThe `mattpocock/skills` repo does not have a skill called `obsidian-vault`. You might be thinking of Kepano's Agent Skills for use with Obsidian instead.
obsidian-vault skill not found<img width="1131" height="519" alt="Image" src="https://github.com/user-attachments/assets/3ef7c0c4-665c-4061-9f4c-967c9ae38917" />
The Writing-Plan have BugsYes this looks good. Can be called ncats-arax.
[New skill]: ncats-arax - bounded biomedical graph queries with inspectable sourcesYou're absolutely right that MCP server authors often duplicate parameter explanations in the `description` block, resulting in paying the token cost twice per session. While sending a PR to trim this specific server is a good move, you will likely hit this… read the rest on GitHub
`sequentialthinking`'s tool definition costs ~921 tokens/session; about half duplicates the schema's own parameter descriptionsThis issue exists in all TS servers in the repo. I'll try to add a another PR that address these at onece.
sequentialthinking: serverInfo.version hardcoded as "0.2.0" (published package is 2026.7.4)@l3onlau Thanks for checking — I'll take the `src/time` SDK v2 port. Plan (same shape as #4565 / #4564): - decorator handlers → `on_list_tools` / `on_call_tool` constructor callbacks - `McpError(ErrorData(...))` → `MCPError(code=..., message=...)` - bump to… read the rest on GitHub
time: ImportError on startup with mcp SDK 2.0.0 (McpError renamed to MCPError)Hey @tking007 and @slouffka — the initialize response failure you are hitting isn't just a Python dependency quirk; it is a direct collision with the new MCP 2026-07-28 stateless specification. By pulling mcp 2.0.0, the runtime is trying to execute the new… read the rest on GitHub
MCP client for fetch failed to startSame problem. Switched to Docker based fetch mcp server. It solved the problem for me but i'd prefer uvx setup fixed. At least you can do your work while it's broken :)
MCP client for fetch failed to startThe short-term cap is covered by #4572 / #4577, but `src/time` is the only one of the three Python servers with no SDK v2 port yet (fetch has #4565, git has #4564). @KarlLeen — you mentioned possibly doing a v2 port; are you working on it? If not, I'll take… read the rest on GitHub
time: ImportError on startup with mcp SDK 2.0.0 (McpError renamed to MCPError)Confirmed and fixed in 95d3add (pushed to `main`). Reproduction before the fix — one template row with `publication_date=not-stated`: Your diagnosis was exactly right: `not-stated` is 10 characters, so it satisfied the `len(publication) == 10` ISO-date guard… read the rest on GitHub
market-research-reports: validate_evidence_ledger.py crashes on documented publication_date="not-stated" (10 chars triggers ISO-date branch)This is a package compatibility and release-integrity failure: the published server permits resolution of an incompatible major SDK version. The immediate containment is to publish the supported `mcp<2` constraint for the current v1 implementation. The… read the rest on GitHub
fetch: ImportError on startup with mcp SDK 2.0.0 (McpError renamed to MCPError)Understood, and thanks for the clear rationale. Zero-dependency is a legitimate design constraint, and good to know cross-release regression is covered internally by superpowers-evals (I'll read it with interest). No adoption ask stands. Since the pack is… read the rest on GitHub
Measured requesting-code-review and writing-plans across the sonnet-5 release — receipts insideClosing as duplicate — carrying distilled context across session boundaries is tracked in #1192, and obra declined the new-slash-commands shape in #931. A handover step in finishing-a-development-branch would be an implementation detail of that same feature.
Enhance finishing-a-development-branch with a Session Handover StepThanks, but Superpowers is zero-dependency by design, and cross-release skill regression testing is already covered by our own eval harness (superpowers-evals). An external suite/Action/badge isn't something core would adopt — publishing your suites as your… read the rest on GitHub
Measured requesting-code-review and writing-plans across the sonnet-5 release — receipts insideFollowing up on my earlier claim: PR is up at #4572 (cap + `uv.lock` + regression test, matching #4563). Noting #4571 as well — that one changes only `pyproject.toml`. Happy for maintainers to compare and take whichever they prefer; no hard feelings either… read the rest on GitHub
time: ImportError on startup with mcp SDK 2.0.0 (McpError renamed to MCPError)I'd like to work on this. My plan: add a version cap in as the short-term fix to prevent Provide a command to run with `uvx <command>`. See `uvx --help` for more information. from resolving to 2.0.0 and breaking the import. Will submit a PR shortly.
time: ImportError on startup with mcp SDK 2.0.0 (McpError renamed to MCPError)I worked around it by adding param to uvx command: --with mcp<2 full command looks like: uvx --with mcp<2
fetch: ImportError on startup with mcp SDK 2.0.0 (McpError renamed to MCPError)Hi Aviv — sorry this sat unanswered for so long. Yes, we would like these, and the domain is squarely in scope. Some concrete answers. ## First, an apology and a connection Your PR #157 (`eqtl-catalogue-region-fetch`) was closed during a backlog sweep today —… read the rest on GitHub
Contributing statistical genetics skillsThank you for asking first — this is exactly the right way to approach it, and it saved you building a PR we would have had to decline. You deserve a straight answer, so: out of scope, and here is the line we are drawing. ## The answer The collection is… read the rest on GitHub
Scope question: is a vendor-agnostic "remote GPU training/eval ops" skill in scope?Done — landed in #215. You were right that `pyzotero` was the piece to reuse. Checking the current state: `skills/pyzotero/` is a full skill covering the Zotero Web API v3, including BibTeX export via `zot.add_parameters(format='bibtex')` and a… read the rest on GitHub
citation-management: optional integration with Zotero would be a plus IMHOThanks for the report — this has been addressed, and it landed essentially as you specified. You suggested four possible fixes; all four are now present. `references/eventbridge.md` exists (255 lines), and `SKILL.md:361` points at it: Its structure: So… read the rest on GitHub
benchling-integration: EventBridge capability claimed but not exposedThanks for the report — this was a valid catch, and it has since been fixed. `allowed-tools: Bash` did exist in this skill's history, so the mismatch you describe was real when you filed. The current `skills/bgpt-paper-search/SKILL.md` no longer declares… read the rest on GitHub
bgpt-paper-search: allowed-tools declares only Bash but workflow requires MCP search_papersClosing as resolved. `skills/pptx-posters/SKILL.md` was rewritten in 866c1df ("Redesign PPTX poster generation") and the numbered-step Quality Checklist described here no longer exists — the file is now organised into named sections (Scope, Hard gates,… read the rest on GitHub
pptx-posters: Quality Checklist missing Step 1 and Step 2aProposal drafted and filed as an issue in the Magister repo for easier sharing with @elliot-ylambda: Magister-Marketing/magister-marketing#900 — shared rubric/fixture/candidate schema, the two-grading-modes-over-one-rubric design, and 6 open decisions… read the rest on GitHub
Converge eval rubric schema with Magister's eval runner (3-layer rubrics, brand fixtures, config-as-candidate)@tobimax Confirmed working on macOS. Thank you, this cracked it. Adapted for macOS (no WSL layer needed): dropped sanitize.mjs verbatim next to my servers and invoke it directly: server-filesystem 2026.7.10 through the shim: dispatch fully restored, first… read the rest on GitHub
server-filesystem >=2025.11.25 (registerTool/outputSchema rewrite): 100% tool-call failure on Claude Desktop 1.24012.1 Windows — calls never dispatched to serveI fixed this using a workaround shim to sanitise the response from the MCP server. The root cause is the draft specification in the response header, which Claude Desktop has tightened causing it to error out or not even log it. Claude Desktop Config MCP… read the rest on GitHub
server-filesystem >=2025.11.25 (registerTool/outputSchema rewrite): 100% tool-call failure on Claude Desktop 1.24012.1 Windows — calls never dispatched to serveCost & time — the benchmark is triaxial Quality is one axis; cost and latency are the other two. Every run logs: - Tokens (input+output) — the price-stable base. Dollars = tokens × a versioned pricing table ("as of" date; account for batch/cached-input… read the rest on GitHub
Live marketing-model benchmark (Opus/Sonnet/GPT/Kimi…) powered by the eval frameworkPlacement decision (recorded) - Canonical / public leaderboard → marketing-skills.com. Neutral, open, MIT-credible — the citable authority asset and backlink magnet. Its value is *perceived neutrality*, so it must stay editorially independent… read the rest on GitHub
Live marketing-model benchmark (Opus/Sonnet/GPT/Kimi…) powered by the eval frameworkConfirming on macOS, with a divergence from the Windows findings. Full writeup with logs and screenshots: anthropics/claude-code#80094 ≥2025.11.25 (tested 2026.1.14 and 2026.7.10) via classic mcpServers config: matches your findings - clean initialize +… read the rest on GitHub
server-filesystem >=2025.11.25 (registerTool/outputSchema rewrite): 100% tool-call failure on Claude Desktop 1.24012.1 Windows — calls never dispatched to serveCross-reference: independently reported against the client at anthropics/claude-code#79986 (different reporter, Windows 10, direct-download install — same build 1.24012.1, same extension, identical zero-dispatch signature). Additional evidence including the… read the rest on GitHub
server-filesystem >=2025.11.25 (registerTool/outputSchema rewrite): 100% tool-call failure on Claude Desktop 1.24012.1 Windows — calls never dispatched to serveUpdate: we're proceeding with publication ahead of the one-week window rather than waiting the full week. The results stay open to correction — if you spot a methodology error, want a re-run at a newer commit, or want a reply included, comment any time and… read the rest on GitHub
Reliability (flakiness) benchmark results for your security-auditor subagent — one-week response window before publicationFixed in v2.2.4. The launcher resolves Python 3.10 or newer across py -3, python3, and python, and all bundled skill instructions use the managed runtime. Thank you for pushing the Windows portability issue.
[Bug]: Skill instructions hardcode `python3`; fail on Windows where only `py -3`/`python` exist (hook fixed in #68, skills not)the influencer-to-ambassador spectrum holds while you're writing the brief. it collapses at payout, where a gifted micro who's become an ambassador is a different disclosure question than when they were just gifted, and nothing re-runs the FTC check on that… read the rest on GitHub
New skill: influencer-marketing (expand the PR #417 contribution; standalone)Shipped in #457 (merged to development); releasing to main in v2.8.11.
video: reverse-engineer a viral edit into a reusable edit spec (edit-anatomy beat sheet)Thanks for the interest and for cataloging the bundle. We keep the README install paths limited to first-party targets (Claude Code, Codex, OpenClaw, Hermes) and do not add third-party hosted previews or tracked outreach links, so I'll pass on adding the… read the rest on GitHub
Optional quick preview for the 7-day content plannerShipped in #453 (merged to development); releasing to main in v2.8.10.
ad-creative: add AirDrop as a 4th iOS-native reveal ad surfacePR with the fix for all three: #451 (references this issue via `Fixes #450`).
validate-skills.sh passes invalid skills: consecutive hyphens + top-level version not caught (plus stale CLI tool count in AGENTS.md)Shipped in #448 (merged to development); releasing to main in v2.8.9.
prospecting: early-stage demand-signal discovery branch (find-first-customers) + compliance gapsShipped in #441 (merged to development); releasing to main in v2.8.8.
ad-creative: shareable creative review page (client approval artifact w/ in-feed mockups + concept toggles)یک بازار یابی در سطح پانزده کشور اطراف ایران
New skill: turn a content library into an installable agent corpus (Motion bootcamp pattern)Each stage could emit a typed receipt containing stage name/version, input artifact hashes, output path/hash, and completion status. The orchestrator validates the required receipt before invoking the next stage; missing or incompatible evidence yields an… read the rest on GitHub
idea-discovery: per-stage evidence gate — explicit BLOCKED instead of silent stage-skipping (follow-up to #284)Shipped in #436 (merged to development); releasing to main in v2.8.7.
ad-creative: creative strategy loop (Mode 4) + hook system — the Runneth workflow layer for MagisterScope revised per Corey — fold into ad-creative instead of a new skill. Rationale: the loop is about producing ad creative, and ad-creative already owns both ends (Grounded Inputs ≈ the three signals; Mode 2 ≈ half a retro). The middle — prioritization,… read the rest on GitHub
ad-creative: creative strategy loop (Mode 4) + hook system — the Runneth workflow layer for MagisterShipped in #428 (merged to development); releasing to main in v2.8.6.
ai-seo: citations vs. recommendations — AI visibility ladder, self-promotional listicle risk, attribution blind spotShipped in #425 (merged to development).
Extend iMessage video ad reference with Apple Notes + ChatGPT reveal surfaces (iOS ads pack)Shipped in #423 (merged to development).
Add carousel framework library to social skill (5 slide-by-slide narrative architectures)I am having the same issue here
install.sh hardcodes REPO_URL to a private org repo (404) instead of the public AgriciDaniel/claude-adsShipped in #412 (merged to development). Will reach main in the next release.
Add iMessage chat-reveal video ad format to ad-creativeThanks for pointing this out! Issue should now be fixed!
[DOC] database-lookup: Outdated AlphaFold v4 URLs break downloadThanks @YQYANG2233 — spot-on diagnosis; the root cause and your suggested fix were both exactly right. 🙏 Fixed in #326 (merged to `main`). To be safe I ran a `yaml.safe_load` scan over all 181 `SKILL.md` files: this was the only skill with invalid front… read the rest on GitHub
Invalid YAML in paper-poster-html/SKILL.md causes Codex to skip loading the skillFixed on `main` by the same modernization — `shell-scripting` is now 1.2.3 and skills load via auto-discovery (the marketplace entry no longer lists `/SKILL.md` paths). Please update from the pinned 1.2.1. Thanks!
shell-scripting skill entries point to SKILL.md files instead of parent directories, fail to loadThanks for the detailed report and the working repro, @lkjie — and you were right that something was off beyond your z.ai setup. Root cause: the judge read the LLM response from `ResultMessage.content`, which doesn't exist on that SDK type, so the text was… read the rest on GitHub
[BUG] use plugin-eval standard but cannot output with llmPull request: https://github.com/K-Dense-AI/scientific-agent-skills/pull/196
pptx-posters: Quality Checklist missing Step 1 and Step 2aFixed in private v2 commit 0c9d940. The plugin manifest description is now below the registry limit while preserving the important SEO/search/security terms.
Plugin description exceeds 500 character limit - fails org installationFixed in private v2 commit 49df040. drift_baseline.py no longer relies on /dev/stdout or stdin handoff; it passes a tempfile path to parse_html.py.
[Bug]: drift_baseline.py fails on Windows — '/dev/stdout' not a valid pathClosing — body misaligned with title due to an off-by-one bug in the filing script (zsh array indexing). Re-filed under a new issue with the correct title+body pair. Apologies for the noise.
benchling-integration: EventBridge capability claimed but not exposedClosing — body misaligned with title due to an off-by-one bug in the filing script (zsh array indexing). Re-filed under a new issue with the correct title+body pair. Apologies for the noise.
bgpt-paper-search: allowed-tools declares only Bash but workflow requires MCP search_papers环境 - 执行器:Claude Code v2.1.162(Claude Opus 4.8) - 审稿/头脑风暴:GPT-5.5,通过 Codex MCP(`claude mcp add codex -s user -- codex mcp-server`) - Codex CLI:0.135.0(`codex --version`) - Codex 桌面应用:26.527.31326 - ARIS 版本:最新 main 分支(已包含 #284 的 `allowed-tools` 修复) -… read the rest on GitHub
/idea-creator 跳过子 skill 调用(allowed-tools 缺少 `Skill`?),直接自己生成内容第 4 点(硬流程 enforcement)的 follow-up 已立项跟踪:#285 —— /idea-discovery 按 research-pipeline 的 done/accepted 先例加 per-stage evidence gate,缺 artifact/trace 显式 BLOCKED 而不是静默出报告。
/idea-creator 跳过子 skill 调用(allowed-tools 缺少 `Skill`?),直接自己生成内容感谢非常扎实的排查 🙏 逐条回答: 1. `allowed-tools` 缺 `Skill` —— 你抓到了一个真 bug(部分遗漏),已修 确认:`/idea-creator` 的 body 在三处明确指示调用其它 skill——Phase 4.2 "Run the `/novelty-check` workflow"、Phase 5.2 "Use `/run-experiment`"、Phase 5.3 "Use `/monitor-experiment`"——但 `allowed-tools` 没有… read the rest on GitHub
/idea-creator 跳过子 skill 调用(allowed-tools 缺少 `Skill`?),直接自己生成内容Done — fixed in 7f0f632. Replaced the stale GPT-5.4 prose with gpt-5.5 in the 17 skills that had only stale mentions, and preserved the 9 intentional ones exactly as you flagged (oracle-pro `gpt-5.4-pro`, the explicit legacy-fallback options, plus one dated… read the rest on GitHub
docs: stale "GPT-5.4" references in skill prose while REVIEWER_MODEL is already gpt-5.5Thanks for pointing that out. Fixed in version 1.2 of the skill.
benchling-integration: EventBridge capability claimed but no schema/example/reference providedFollow-up: while applying the local tempfile workaround I hit two more Windows-specific bugs in the same `drift_baseline.py` → `parse_html.py` chain. All three are needed together for any non-Latin-1 content (e.g. Czech, German, French diacritics) to… read the rest on GitHub
[Bug]: drift_baseline.py fails on Windows — '/dev/stdout' not a valid pathHAS ANYONE tried to do this and did it from the first time?
How to add it as skills in claude CLI?what gives cloning repo? the instructions is not clear too
How to add it as skills in claude CLI?adding skill via web version is outdated too
How to add it as skills in claude CLI?Closing — the skill request template wasn't filled in. If you'd like to propose a skill, please open a new issue using the Skill Request template with: skill name, what it should do, trigger phrases, and example use cases. See CONTRIBUTING.md for guidance.
Skill Request: [skill-name]Closing — the skill request template wasn't filled in. If you'd like to propose a skill, please open a new issue using the Skill Request template with: skill name, what it should do, trigger phrases, and example use cases. See CONTRIBUTING.md for guidance.
Skill Request: niche suggestionSubmitted in https://github.com/K-Dense-AI/scientific-agent-skills/pull/164 - quotes the description scalar so the Note: clause from PR #149 stops breaking YAML frontmatter parsing.
research-lookup: invalid YAML frontmatter — unquoted 'Note:' breaks description parsing (introduced in PR #149)Answering my own question: `npx skills update`
Infographics skill auto-reviewer is brokenCheers, thanks! Btw, what is the best way to handle updating (I'm using Claude code)?
Infographics skill auto-reviewer is brokenFixed in #516. A note on the second part of the report: The `references/filename.md` reference in `plugins/plugin-eval/skills/evaluation-methodology/SKILL.md` is not a real link — it's example text inside a "this is what a dead link looks like" anti-pattern… read the rest on GitHub
Two skills have 4 dead reference links: sast-configuration (3) and evaluation-methodology (1)Thanks for pointing this out. We just resolved in the latest commit. Please let us know if you have more concerns/feedback
Infographics skill auto-reviewer is brokenThanks for pointing this out! We'll update the model soon.
Infographics skill auto-reviewer is brokenboth things fixed in the latest commit — marketplace.json entry is in under 'documentation', and the phantom validator reference is now marked as planned/not included. should be good to merge now, but let me know if anything else needs attention
Skill suggestion: HADS — Human-AI Document StandardThanks for the suggestion and for following up with PR #458, @catcam! We've reviewed it and left a couple of small items to address — once those are taken care of we'll get it merged in.
Skill suggestion: HADS — Human-AI Document StandardAdded `marketplace.json` in v1.3.0! The file is at `.claude-plugin/marketplace.json` with install/uninstall commands, keywords, and repository metadata. Re: unified marketplace across skills — that's a great idea for the future. For now, each skill has its… read the rest on GitHub
feat: add marketplace.json for plugin system updatesThank you for brining this to our attention. We just updated the torch-geometric skill and this should be fixed now (along with some other improvements).
bug(torch-geometric): 2 referenced files missing from references/ directoryFull report saved to: GEO-SCHEMA-REPORT-ainspinejoint-s1020.md already solve it? Thx.
When creating a report file, a feature is needed to apply the URL nameHey @catcam — thanks for checking in before submitting, and nice work on the SKILL.md. I took a look at it and it's well-structured — the semantic tagging concept is practical, the reading/generating/validating sections give Claude concrete behaviors to… read the rest on GitHub
Skill suggestion: HADS — Human-AI Document StandardGreat breakdown @wshobson — the `this.ca` false positive is a perfect example of why scanner maturity matters. A single regex-based URL detector flagging standard JavaScript idioms erodes trust in the entire scanning pipeline. This is actually a known problem… read the rest on GitHub
[BUG] react-modernization has Gen Agent Trust Hub rating as FAILShipped in v1.2.0! 🎉 The `/ads apple` sub-skill is now live with all the checks you requested: - Campaign structure — BOFU (brand/competitor exact match) + MOFU (Search Match isolation — never mix with manual keywords) - Bid health — CPT vs install rate by… read the rest on GitHub
Feature Request: Apple Search Ads (ASA) Support@wshobson , sorry added to the wrong repo
validate-git-c: narrow metachar scan to subcommand tokens onlyBuilt a CLI that catches this pattern statically — scans SKILL.md, AGENTS.md, and other markdown/YAML files for `npm install`/`npx` commands and validates every package name against the live npm registry. Would have flagged `react-codeshift` and… read the rest on GitHub
[BUG] Non-existent npm packages in SKILLS.mdThanks for the detailed report, @maple5233! You were right — this turned out to be a systemic issue across the repo, not just `debugging-strategies`. What we fixed (47a5dbc): 1. Removed phantom resource references from 115 skill files — These `## Resources`,… read the rest on GitHub
[BUG] Missing Resources files in debugging-strategies skillHi @H4ST3, thanks for taking the time to file this — we appreciate the detailed write-up! After investigating, the file `validate-git-c.sh` and the related concepts mentioned here (`GIT_PART`, metacharacter scanning, the reorder fix) don't exist in this… read the rest on GitHub
validate-git-c: narrow metachar scan to subcommand tokens onlyThank you for reporting. We are looking into the issue. I'm closing this for now as this repo is for our open source package. Please report issues with K-Dense Web to [email protected] and we will immediately address them!
Bug: Cannot download all files from app.k-dense.ai after task completionSome issue when using e2e-testing-patterns
[BUG] Missing Resources files in debugging-strategies skillby the way: the link in issue template -> https://github.com/wshobson/agents/issues/.github/CODE_OF_CONDUCT.md got 404
[BUG] Missing Resources files in debugging-strategies skillThank you for the suggestion! You'll be happy to know that based on your feedback we just updated Claude Scientific Skills to include a Zotero skill built on top of pyzotero. This will now allow your agents to access your Zotero library!
Feature Request / Suggestion: Integrating Zotero via MCP for dynamic local literature accessHi @ajain-lila thanks for pointing that out! We rely heavily on the expert community to polish these skills. Please go ahead and implement the fix and we'll merge it into the main code.
Pymatgen skill has errroHey @theedov, thanks for the report! You're right — the Tab struct is the modern approach and our examples should reflect that. We've updated all three instances across the mobile-ios-design skill: - SKILL.md — TabView example now uses Tab() (iOS 18+) instead… read the rest on GitHub
[BUG] Deprecated version of TabView is used.@wshobson Apologies for the wrong link had multiple tab open and that lead to wrong URL getting added. Putting the correct one here for reference. https://skills.sh/wshobson/agents/react-modernization/security/agent-trust-hub
[BUG] react-modernization has Gen Agent Trust Hub rating as FAILHey @hb2708, thanks for taking the time to report this — we appreciate you looking out for the security of the skills ecosystem! After investigating, we're going to close this one. Here's what we found: ## Wrong skill referenced The URL in your issue body… read the rest on GitHub
[BUG] react-modernization has Gen Agent Trust Hub rating as FAILThanks for reporting this and for the clear write-up and workaround. We’ve opened a PR to fix this by: - Bumping plugin versions (so `claude plugin update` can detect updates) - Adding a CI check to enforce version bumps when category agent files change -… read the rest on GitHub
Plugin updates not detected by Claude Code possibly due to unchanged version numbersThanks for reporting. We'll check.
voltagent-core-dev doesn't include wordpress-masterCreated in upstream not in fork, apologies.
Improve description for api-designer agentClosing as I now see it is a duplicate of https://github.com/wshobson/agents/issues/116
[BUG] missing referenced fileshttps://github.com/VoltAgent/awesome-claude-code-subagents/blob/main/categories/01-core-development/frontend-developer.md Saved to a *.md file: --- name: frontend-developer description: Use this agent when you need to build, implement, or enhance user… read the rest on GitHub
frontend developer content wiped out by recent commitI added the seo-specialist subagent. Thanks again⚡️
Can't find the seo-specialistThanks for pointing that out. I’ll create and add one this week.
Can't find the seo-specialistNobody has commented on a prompt yet, in any of the 380 listed here. They come from collections where the discussion is about the whole collection, not about one prompt, so there is nothing per-prompt to quote. When there is, it shows up here on its own.
Threads we have not pulled the replies for
109 threads · title and author only, because the GitHub API gives us 60 requests an hourNo unread threads for prompts either.
- Not comments on AgentAlley. None of this was posted here. Every line was written somewhere else — on GitHub — by someone who has never heard of us, and we link back to where they wrote it. We do have a forum of our own at /forum; it is new, and nothing on this page comes from it.
- Not a rating. Plenty of these are bug reports and arguments. A listing being talked about means people use it, not that they all like it — read the comment and decide for yourself.
- Not everyone. 159 of 2,398 listings are on this page. The other 2,239 have no comments we could find, and they show nothing rather than something borrowed from their repository.
- Not counted twice. A comment that names three listings is one comment here, shown once, with all three named. That is why 236 comments add up to 302 mentions.
- Not counting the robots. 1 account here is a bot, and 1 line on this page was posted by it. That line is labelled and left in, because it is real — but a bot is not a person, and is not counted as one above.
- Not the full text. Each comment is quoted, cut short, and credited. The words belong to the person who wrote them.