fix(docs): use tokscale.ai everywhere; drop stale .com/.dev refs - #768
Merged
Conversation
The only production origin is tokscale.ai, but the EN README pointed token revocation at tokscale.com/settings and used tokscale.dev for the custom-pricing $schema (mirrored into the pricing custom.rs test fixture). Users following the revocation steps would hit the wrong host. Switch all to tokscale.ai. Left intact: the frontend requestSessionCsrf test that deliberately asserts the tokscale.dev origin is rejected (it documents that the domain does not exist).
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
t1000040
pushed a commit
to tmobi-internal/tokscale
that referenced
this pull request
Jun 30, 2026
…hoyeo#768) The only production origin is tokscale.ai, but the EN README pointed token revocation at tokscale.com/settings and used tokscale.dev for the custom-pricing $schema (mirrored into the pricing custom.rs test fixture). Users following the revocation steps would hit the wrong host. Switch all to tokscale.ai. Left intact: the frontend requestSessionCsrf test that deliberately asserts the tokscale.dev origin is rejected (it documents that the domain does not exist).
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.
The only production origin is tokscale.ai, but EN docs/code carried stale domains:
README.md:504— token-revocation pointed attokscale.com/settings→ tokscale.ai/settings (users following it after creating CI tokens hit the wrong host; matchesauth.rsdefault + frontend metadata)README.md:439+crates/tokscale-core/src/pricing/custom.rs:417— custom-pricing$schemausedtokscale.dev→ tokscale.ai ($schema is informational;loads_valid_filetest still passes)Left intact:
packages/frontend/__tests__/lib/requestSessionCsrf.test.ts— it deliberately asserts thetokscale.devorigin is rejected (documents the domain doesn't exist).The same .com/.dev refs in the ja/ko/zh-cn ports are fixed in #767.
🤖 Generated with Claude Code
Summary by cubic
Use
tokscale.aieverywhere in docs and a test fixture to match the production origin. Fixes a wrong settings link and an outdated custom-pricing $schema URL.README.md: token revocation link → https://tokscale.ai/settings; custom-pricing$schema→ https://tokscale.ai/custom-pricing.schema.json.crates/tokscale-coretest fixture:$schemaupdated totokscale.ai; kept the CSRF test that rejectstokscale.dev.Written for commit fafde8a. Summary will update on new commits.