Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cli/bash/commands/caff/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion cli/bash/commands/sort-in-place/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion docs/tooling-boundary.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
4 changes: 2 additions & 2 deletions tests/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.<tool>' || failed=1
Expand Down
Loading