Weekly Research— 2026-05-18 #126
Closed
Replies: 1 comment
-
|
This discussion was automatically closed because it expired on 2026-05-25T13:45:20.769Z.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Anthropic Platform Signals
The June 15 billing split is the most consequential Anthropic policy event in months — and it directly undercuts the plugin's current core pitch.
On May 13, 2026, Anthropic announced that effective June 15, all programmatic usage moves off subscription rate-limit pools into a separate monthly credit bucket metered at standard API list prices. Affected:
claude -p, Claude Code GitHub Actions, and Agent SDK consumers. Explicitly excluded and staying on subscription limits: interactive Claude Code in the terminal, Claude.ai chat, and Cowork.Credit amounts by plan:
Credits expire monthly, do not roll over, and cannot be pooled across team members. The community math (from MagnaCapax's canonical gist) shows a "one PR review per push, 4 pushes/day" CI workflow burns ~$25/month at Sonnet 4.6 rates — a Pro subscriber exhausts credits before month-end.
Why this matters for the plugin:
auth.md:127currently states the Anthropic-side policy is "stable" and the decision tree atauth.md:24describes the OAuth path as "preferred — free for subscribers." Both claims become false on June 15. The plugin needs updated documentation before that date.Background on the OAuth crackdown timeline (for context):
The official
@anthropic-ai/claude-codeCLI path documented inauth.md:7remains permitted. What changed is that it is no longer effectively free — it now burns from a finite monthly pool.Sources: [The Register]((www.theregister.com/redacted), [InfoWorld]((www.infoworld.com/redacted), MagnaCapax gist, [devtoolpicks.com]((devtoolpicks.com/redacted)
Claude Code Plugin Ecosystem
The ecosystem has grown dramatically; structural consolidation is happening around the official plugin model.
anthropics/claude-plugins-officialwith a formal architecture (slash commands + hooks + sub-agents + skills per plugin). A newblockedMarketplacesenterprise config key lets orgs restrict to approved sources.claude plugin disablerefuses if another enabled plugin depends on the target; projected per-turn context cost now shown in/plugin marketplace browse.--plugin-urlflag added: fetch a plugin archive from a URL for the current session without marketplace registration.claude-forgev3.0.2 (11 AI agents, 36 commands, 15 skills),ashlr-plugin(57% token reduction on Read/Grep/Edit/Bash),maestro-orchestrate(22-subagent orchestration),obra/superpowers(94k stars, accepted into the official marketplace).Structural note: Skills, commands, and hooks are now formally codified as distinct primitives that a single plugin can bundle together. This plugin currently uses pure-instruction skills only — no hooks or commands. Adding a hook (e.g., to re-apply the OAuth tweak automatically after a
gh aw compileevent) would be structurally possible.Sources: Claude Code changelog, [claudemarketplaces.com]((claudemarketplaces.com/redacted), [Releasebot]((releasebot.io/redacted)
gh-awUpstream ActivityVery active: 9 releases in the last 14 days. Several items are directly relevant.
slash_commandandlabel_commandtriggers go stable; glob patterns inadd-labelssafe outputsgh aw compile --stagedflag;gh aw fixcodemods;max-runsdefault raised 100 → 500gh aw lintcommand; first-party coding-agent skill forgh awCLIRetirement notice still active: Versions v0.68.4–v0.71.3 are being retired due to a billing bug — any users on those should upgrade.
Auth-related items (directly relevant to this plugin's tweak):
CLAUDE_CODE_OAUTH_TOKENis still not natively supported by gh-aw (removed in PR #16757, Feb 19, 2026). The post-compile two-pass sed tweak inauth.md:52–62remains the required bridge. Issue #16498 tracks re-introduction; PR #20473 (merged Mar 11) addedAuthDefinitionscaffolding that could host proper OAuth re-enablement — no ETA.Catalog activity (githubnext/agentics):
dictation-prompt(PR #325, May 5) — runs weekly or on manual dispatch; scans project docs, builds an NLP word-frequency histogram of project vocabulary, generatesDICTATION.md(~256 terms) for speech-to-text correction accuracy. Auto-merges the PR.repo-assistnow supports direct task invocation viagh aw run -F command=....Engine news: OpenCode is now a first-class gh-aw engine option (
engine: opencode), alongside Copilot, Claude, and Codex.Sources: github/gh-aw releases, githubnext/agentics, gh-aw Issue #16498, gh-aw Issue #31172
Competitive Landscape
Two new competitive signals this week.
microsoft/apm(Agent Package Manager) — the most direct competitive signal. Capabilities:apm installdeploys agents/skills/prompts to Claude Code, Copilot, Cursor, Codex, Gemini, and OpenCode targets via a singleapm.yml; auto-discovers harness targets from filesystem signals (.claude/,.github/copilot-instructions.md, etc.); supports versioned packages; auto-discovers.prompt.mdfiles as runnable scripts. Updated May 15, 2026. It installs agentic content into repos — the same core operation this plugin performs. Differentiation to clarify: this plugin is gh-aw-catalog-specific and subscription-auth-aware; APM is multi-target but auth-agnostic.Source: github.com/microsoft/apm
anthropics/claude-code-actionv1.0 — Major milestone released recently. Key changes: unifiedpromptinput replaces legacy separate inputs; all CLI options now flow throughclaude_args; automatic mode detection (interactive vs. automation); enhanced AWS Bedrock and Google Vertex AI compatibility. This is the competing "official" path for Claude in GitHub Actions. Updated May 15, 2026.Source: anthropics/claude-code-action releases
zircote/github-agentic-workflows(aw-author): Active, well-scoped plugin for authoring gh-aw markdown files (/aw-author new|generate|validate|improve|debug). Complementary rather than competing — they write workflows, this plugin installs them.Broader harness space: Harness AI Worker Agents now auto-generates pipeline YAML from chat. OpenCode emerging as a reference CI harness. Stripe's "Minions" (internal) cited at 1,000+ merged PRs/week as the benchmark for what's possible.
Subscription-Backed CI Signals
Community sentiment has shifted sharply negative following the May 13 announcement. The risk window is June 15.
anthropics/claude-code-actionGitHub issue received 147+ reactions.ANTHROPIC_API_KEYwith a hard monthly spend cap. The plugin's OAuth path survives but is no longer "free."Sources: MagnaCapax gist, [Zed blog]((zed.dev/redacted), [VentureBeat]((venturebeat.com/redacted), [dev.to analysis]((dev.to/redacted)
Strategic Suggestions
1. Update
auth.mdand the decision tree before June 15 — this is urgentauth.md:24currently says the OAuth path is "preferred — free for subscribers."auth.md:127calls the Anthropic-side policy "stable." Both need updating. The OAuth path remains permitted but is no longer free — it burns from a $20/month (Pro) or $100–$200/month (Max) non-rollover credit pool. Add a cost-estimation note (e.g., "a 4-push/day PR review workflow costs ~$25/month at Sonnet 4.6 rates — verify your plan's credit allotment before committing to the OAuth path for heavy CI use"). Update the decision tree to surface plan tier and estimated usage as a factor. Failing to update before June 15 means the plugin will install workflows that silently fail once subscribers exhaust credits.2. Add a
gh-awversion check to the OAuth tweak step with an exit for native supportauth.md:129documents that gh-aw PR #20473 (Mar 11) addedAuthDefinitionscaffolding that could host nativeCLAUDE_CODE_OAUTH_TOKENre-enablement (tracked in issue #16498). When that lands, the two-pass sed tweak inauth.md:52–62can be retired. Add a version-gated check toinstall-workflow/SKILL.mdStep 6: detect if the installedgh-awversion is >= the release that includes native OAuth support, and skip the tweak if so. This prevents the tweak being applied when it's no longer needed (and no longer correct). Document the threshold version inauth.mdas aTODO: bump when #16498 shipsnote.3. Differentiate clearly against
microsoft/apmin the README and discovery outputmicrosoft/apmnow does "install agentic content into repos" with multi-target support. The differentiation for this plugin is specific and worth making explicit: (a) it is gh-aw-catalog-aware — knows thegithubnext/agenticscatalog structure, proper workflow names, and theengine: claudefrontmatter requirement; (b) it is subscription-auth-aware — no other tool guides users through theclaude setup-token→ two-pass sed → grep verification flow; (c) it lives inside Claude Code natively (no extra CLI to install). Add a one-paragraph "Why not just use apm?" section to the README and update the first sentence ofdiscover-workflows/SKILL.mdto position against the multi-target "install anything anywhere" tools that don't know gh-aw's conventions.Enjoyable Anecdote
The newest entry in the
githubnext/agenticscatalog isdictation-prompt(PR #325, May 5). It runs weekly, scans your project's docs and source comments for unusual vocabulary, builds an NLP word-frequency histogram, and generates aDICTATION.mdfile of ~256 project-specific terms — names likegh-aw,awf,sk-ant-oat01,lock.yml— tuned to improve speech-to-text correction accuracy for developers who code by voice. It auto-merges the PR. It's a delightfully niche workflow: a coding assistant that helps you talk to your coding assistant more accurately. The catalog continues to expand beyond pure CI automation into territory that would have been too quirky to ship even a year ago.Research appendix — queries, commands, and tools used
Web search queries
anthropic platform policy changes oauth subscription june 2026anthropic agent sdk credit billing split june 15 2026anthropic consumer terms of service 2026 updateclaude code plugin ecosystem marketplace 2026 mayhesreallyhim awesome-claude-code new plugins may 2026claude code changelog v2.1.139 v2.1.143gh-aw upstream releases may 2026githubnext agentics catalog new workflows may 2026zircote aw-author github agentic workflows pluginanthropics claude-code-action v1.0 releasemicrosoft apm agent package manager githubsubscription claude ci community sentiment reddit hackernewsanthropic solo founder hiring ai tooling engineer 2026context engineering portfolio claude codeRepository files read
/skills/install-workflow/auth.md(lines 1–140)/skills/install-workflow/SKILL.md(lines 1–40).github/workflows/weekly-research.md/README.md(via explore agent)/skills/discover-workflows/SKILL.md(via explore agent)/skills/install-agent-team/SKILL.md(via explore agent)/catalog/agent-team/README.md(via explore agent)/.claude-plugin/plugin.json(via explore agent)Bash commands
git log --oneline -20(via explore agent)GitHub MCP tools
mcp__github__list_discussion_categories—verkyyi/github-agent-runner(to find the Ideas category ID)Beta Was this translation helpful? Give feedback.
All reactions