improve repository hygiene - #238
Merged
Merged
Conversation
nahiyankhan
marked this pull request as ready for review
July 18, 2026 06:17
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.
Category: infrastructure
User Impact: Public examples and local tooling are easier to understand and use outside the repository's original development environment.
Problem: A few fixtures, comments, and local artifacts carried environment-specific details or unnecessary brand assets. The context-control model adapter also assumed a specific provider and local authentication flow.
Solution: Replace those details with neutral examples, expose context-control through standard OpenAI-compatible configuration, and tighten repository hygiene around generated event tapes and maintenance metadata.
Validation:
pnpm check: passedpnpm test: passed, 184 passed and 1 skippedpnpm build: passed in the pre-push hookChangeset: not needed because the changes affect tests, private tooling, CI comments, and repository metadata rather than the published Ghost package behavior.
Ghost Review:
ghost check --base origin/main: not available in the current CLIghost review --base origin/main: not run because the repository root has no.ghost/manifest.ymlFile changes
.github/workflows/release.yml
Simplifies the Homebrew automation comment and removes stale migration wording.
.gitignore
Ignores local Ghost event tapes across package layouts.
CODEOWNERS
Removes unused template boilerplate and keeps the active default owner.
apps/docs/src/components/docs/icons.tsx
Removes an unused product-logo asset.
packages/context-control/README.md
Documents portable OpenAI-compatible model configuration.
packages/context-control/cli.mjs
Generalizes the environment-loading comment for model adapters.
packages/context-control/lib/model.mjs
Replaces the provider-specific adapter with an environment-configured OpenAI-compatible adapter.
packages/context-control/test/context-control.test.ts
Covers required portable adapter configuration.
packages/ghost/test/cli.test.ts
Replaces product-specific fixture names, paths, and token examples with a fictional iOS package while preserving routing and validation coverage.
packages/vessel-react/fingerprint/.events
Removes a committed local selection event tape.
packages/vessel-react/scripts/resolve-dts-paths.mjs
Rewords the dependency rationale without environment-specific infrastructure details.
Screenshots/Demos: N/A