rebrand: Comis → AdaptAble (name + folder) - #2
Open
kanjustin wants to merge 2 commits into
Open
Conversation
Rename the product everywhere it is user-visible: - comis/manifest.json: name, description, action title, command description (what Chrome shows on the toolbar and the extensions page) - comis/popup.html: <h1> wordmark - comis/popup.js, comis/parser.js: status, refusal, and help copy - docs + web app metadata The comis/ directory name is intentionally left as-is. Chrome derives an unpacked extension's ID from its path, so moving the folder breaks the existing registration (ERR_FILE_NOT_FOUND) and resets chrome.storage. Keeping the path means a plain reload picks up the new name -- no re-install, no data loss. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Complete the rebrand by renaming the extension directory and every path that references it: README (Load unpacked step, pack script), DEMO, ARCHITECTURE, EVALUATION, evals/run.mjs, tests, build scripts, and package.json (name, pack:adaptable, adaptable.zip). No "comis" string remains anywhere in the repo. NOTE: Chrome derives an unpacked extension's ID from its folder path, so this requires a one-time Remove + Load unpacked from adaptable/. There is no way to move the directory and keep the old registration. Co-Authored-By: Claude Opus 4.8 (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.
Renames the product from Comis to AdaptAble throughout the repo. No
comisstring remains anywhere.Commits
manifest.json(name, description, toolbar title),popup.html<h1>wordmark,popup.js/parser.jsuser-facing copy, docs, web app metadata.comis/→adaptable/(viagit mv, history preserved), plus every referencing path: README (Load unpacked step + pack script), DEMO, ARCHITECTURE, EVALUATION,evals/run.mjs, tests, build scripts,package.json(name,pack:adaptable,adaptable.zip).Unchanged
The
vv-CSS prefix and__VV_SIMPLIFYglobal — internal abbreviations users never see; rewriting page-injected styles adds risk for no benefit.Chrome derives an unpacked extension's ID from its folder path, so moving the directory invalidates the existing registration. In
chrome://extensions:adaptable/folderSaved settings reset, since the extension ID changes. There is no way to move the folder and keep the old registration.
Verification
npm testpasses (exit 0). Everymanifest.jsonreference resolves (popup, both content scripts, all 4 icons), and all build/eval/test paths resolve againstadaptable/.Supersedes #1.