[claude-code-user-docs-review] 🔍 Claude Code User Documentation Review - 2026-08-03 #49994
Closed
Replies: 1 comment
|
This discussion was automatically closed because it expired on 2026-08-04T13:32:16.221Z.
|
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.
Executive Summary
Reviewing gh-aw's core docs from the perspective of a Claude Code user (no GitHub Copilot) finds zero critical blockers — a workflow can be running within minutes. But onboarding defaults, the
gh aw initCLI, and auth documentation consistently steer new users toward Copilot, and Claude requires separate pay-per-token billing with no way to reuse an existing Claude Pro/Max subscription. This is run 36 of a daily-tracking series; the overall score (7.5/10) and the core gaps below have held stable across all prior runs (see cache-memory trend history).Severity Findings
Critical (0) / Major (3) / Minor (4) — click to expand
Critical: None found. A Claude Code user can set up and run a workflow end-to-end using only public documentation.
Major:
CLAUDE_CODE_OAUTH_TOKENis explicitly unsupported and silently ignored; only a separately-billedANTHROPIC_API_KEYworks, unlike Copilot's zero-extra-account-setup path. (docs/src/content/docs/setup/quick-start.mdx:141-148)gh aw initdefaults to Copilot-specific artifacts (.github/agents/agentic-workflows.mdcustom agent, skill file) unless--engine claudeis passed; this flag is documented only in the CLI reference, not surfaced in quick-start's Prerequisites or the README's own hidden agent-setup block. (docs/src/content/docs/setup/cli.md:150;README.md:13-45)engine:from frontmatter silently defaults to Copilot; a Claude Code user hand-writing or copying a workflow snippet without an explicitengine: claudeline is routed to a different engine with no warning. (docs/src/content/docs/introduction/how-they-work.mdx:24-37)Minor:
4. Copilot-first ordering throughout README and quick-start prerequisites, with no why-Claude-vs-Copilot guidance for a user choosing an engine. (
README.md:49,75)5.
add-wizard's Copilot PAT setup is documented in rich, step-by-step detail (prefilled token-creation URL, org-billing vs PAT choice); no equivalent depth exists for Claude/Codex/Gemini auth in the same CLI reference. (docs/src/content/docs/setup/cli.md:179)6.
web-searchtool behavior per engine is ambiguous — the doc says some engines need third-party MCP servers without naming which ones, and only specifies Codex's disabled-by-default behavior explicitly. (docs/src/content/docs/reference/tools.md:65-67)7.
tools.timeoutdefault values are documented for only 2 of 4 engines (Claude: 60s, Codex: 120s); Copilot and Gemini defaults are unstated. (docs/src/content/docs/reference/tools.md:157)Engine & Tool Matrix
copilot-requests: write, detailed wizard flow (cli.md:179)ANTHROPIC_API_KEYonly, no OAuth reuse (quick-start.mdx:141-148)OPENAI_API_KEY/CODEX_API_KEY(how-they-work.mdx:24-37).github/workflows/*.mdTool classification: of the built-in tools in
tools.md, none are strictly Copilot-only or Claude-only this run — core tool parity is strong. The one clearly engine-specific behavior isweb-search, disabled by default only for Codex.Auth Gaps
ANTHROPIC_API_KEY(Anthropic Console) even for users with an existing Claude Pro/Max/Teams subscription;CLAUDE_CODE_OAUTH_TOKENis explicitly rejected if set. (quick-start.mdx:141-148)ANTHROPIC_API_KEYend-to-end the way Copilot's PAT is prevalidated/prefilled duringadd-wizard. (cli.md:179)gh aw init's Copilot-artifact default (custom agent + skill files) is a one-way surprise for Claude users unless they already know to pass--engine claude; this isn't mentioned in quick-start's own setup steps. (cli.md:150)Recommended Actions
Priority 1 (blocks confident adoption):
gh aw init --engine claudedirectly in quick-start's own steps, not just the CLI reference, so Copilot-specific artifacts aren't created by default for non-Copilot users.Priority 2 (reduces friction):
tools.timeout/web-searchdefaults for all four engines, not just two.Priority 3 (nice-to-have):
cli.mdthe same step-by-step depth currently given only to Copilot's PAT wizard flow.All reactions