chore: update platform count in user-facing copy to 600+ - #177
Open
moekatib wants to merge 1 commit into
Open
Conversation
The CLI advertised "400+ platforms" in its help output, onboarding copy, and generated agent instructions. Two spots were staler still at "200+". The live count is 606 (api.withone.ai/open/count/platforms). Updates 13 strings across help text, init/login banners, onboard copy, the guide, the bundled skill, and the README. Copy only, no behavior change. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
The CLI tells users it connects to 400+ platforms. The live count is 606 (
api.withone.ai/open/count/platforms). Two spots were staler still, at 200+.This updates 13 strings to
600+. Copy only, no behavior change.Where it showed
src/cli.tsone --helpdescription + platforms hintsrc/commands/init.tssrc/commands/login.tssrc/commands/onboard.tssrc/lib/guide-content.tsone guideskills/one/SKILL.mdREADME.mdone platformssection (was 200+)The onboard and skill strings matter most: they get written into user projects, so the stale number propagates into agent context.
Note on the 200+ instances
A grep for
400+alone misses them. Worth grepping[0-9]+\+ platformsrather than a specific number next time this is refreshed.Verification
npm run buildandnpm run typecheckcleanone --helpprints 600+ on both linesnpm test385 pass / 6 fail, and the same 6 (resolveConfig) fail identically on a cleanorigin/maincheckout, so they are pre-existing and unrelatedLeft alone deliberately:
Connect 2+ platforms to unlock cross-platform workflowsin the guide, which is a real threshold and not a catalog count.🤖 Generated with Claude Code