diff --git a/CHANGELOG.md b/CHANGELOG.md index 6344931..5d6724a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ All notable changes to Base Platform Tools will be documented in this file. ### Added - Migrated the `caff` and `sort-in-place` Bash utility CLIs from - `codeforester/base`. + `basefoundry/base`. - Added the initial public repository scaffold for Base Platform Tools. - Added the Base-managed project manifest and validation contract. - Added the tooling boundary documentation. diff --git a/README.md b/README.md index d4a1753..29ecab3 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ the first migrated Bash utility CLIs from Base: Clone this repository next to Base: ```bash -git clone https://github.com/codeforester/base-platform-tools.git +git clone https://github.com/basefoundry/base-platform-tools.git ``` When Base is installed and the workspace is configured, this project should be diff --git a/cli/bash/commands/caff/README.md b/cli/bash/commands/caff/README.md index 1a71250..bb01482 100644 --- a/cli/bash/commands/caff/README.md +++ b/cli/bash/commands/caff/README.md @@ -6,6 +6,6 @@ against that process. Public invocation is exposed by the launcher at `bin/caff`; the implementation lives here so command code, documentation, and tests stay together. -This utility was migrated from `codeforester/base`. It belongs in Base Platform +This utility was migrated from `basefoundry/base`. It belongs in Base Platform Tools because it is a small operational helper, not part of Base's core workspace orchestration surface. diff --git a/cli/bash/commands/sort-in-place/README.md b/cli/bash/commands/sort-in-place/README.md index 6946df8..a14221f 100644 --- a/cli/bash/commands/sort-in-place/README.md +++ b/cli/bash/commands/sort-in-place/README.md @@ -6,6 +6,6 @@ Public invocation is exposed by the launcher at `bin/sort-in-place`; the implementation lives here so command code, documentation, and tests stay together. -This utility was migrated from `codeforester/base`. It belongs in Base Platform +This utility was migrated from `basefoundry/base`. It belongs in Base Platform Tools because it is a small operational helper, not part of Base's core workspace orchestration surface. diff --git a/docs/tooling-boundary.md b/docs/tooling-boundary.md index f99a174..d2f53b6 100644 --- a/docs/tooling-boundary.md +++ b/docs/tooling-boundary.md @@ -81,7 +81,7 @@ Unsupported platforms should include a short reason. ## Migration Policy The initial migrated utilities are `caff` and `sort-in-place`, which came from -`codeforester/base`. +`basefoundry/base`. When a utility moves here: diff --git a/tests/validate.sh b/tests/validate.sh index 3a5ff72..af3885f 100755 --- a/tests/validate.sh +++ b/tests/validate.sh @@ -82,8 +82,8 @@ main() { require_text bin/sort-in-place 'BASE_HOME' || failed=1 require_text cli/README.md 'Base owns `basectl`' || failed=1 require_text cli/bash/README.md '#!/usr/bin/env basectl' || failed=1 - require_text cli/bash/commands/caff/README.md 'migrated from `codeforester/base`' || failed=1 - require_text cli/bash/commands/sort-in-place/README.md 'migrated from `codeforester/base`' || failed=1 + require_text cli/bash/commands/caff/README.md 'migrated from `basefoundry/base`' || failed=1 + require_text cli/bash/commands/sort-in-place/README.md 'migrated from `basefoundry/base`' || failed=1 require_text cli/bash/commands/caff/tests/caff.bats 'tests/bats_helper.bash' || failed=1 require_text cli/bash/commands/sort-in-place/tests/sort-in-place.bats 'tests/bats_helper.bash' || failed=1 require_text cli/python/README.md 'base_platform_tools.' || failed=1