Files
DeepSeek-TUI/docs/THIRD_PARTY_NOTICES.md
Hunter Bown 92547e460f chore: use the public name Codewhale in prose (identifiers untouched) (#5742)
* chore: use the public name Codewhale in prose

Replace the word CodeWhale with the ratified public name Codewhale in
public prose only: docs/**, all 15 TUI locale packs, and user-facing
Rust string literals in crates/tui/src (update/help/status/error copy
plus the tests that assert on that copy).

Compatibility identifiers are untouched: the Hmbown/CodeWhale GitHub
slug and every URL containing it, Hmbown.CodeWhale (winget), Windows
install paths (%LOCALAPPDATA%\Programs\CodeWhale\bin), clone
directories (cd CodeWhale), user-agent and header strings, gherkin step
names, test fixtures, doc comments, CHANGELOG history, README URLs.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014aDEyM2a4pPZ9qqMDrP5YX
Signed-off-by: CodeWhale Bot <bot@codewhale.net>

* chore: bundled plan skill prose uses the public name Codewhale

Signed-off-by: CodeWhale Bot <bot@codewhale.net>

---------

Signed-off-by: CodeWhale Bot <bot@codewhale.net>
Co-authored-by: CodeWhale Bot <bot@codewhale.net>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-08-31 22:11:19 -07:00

2.9 KiB

Third-party notices

Codewhale is MIT licensed (see LICENSE). Portions of it are adapted from other open-source projects. Their copyright and permission notices are reproduced here, and each adapted file carries an attribution header pointing back to its origin.

Rust crate dependencies are covered by cargo deny (see deny.toml) and are not duplicated here; this file records source-level adaptations, where the licence obligation travels with the code rather than with a package.


pi-mono — credential resolution design

  • Project: pi-mono (https://github.com/earendil-works/pi-mono)
  • Author: Mario Zechner
  • Licence: MIT
  • Used in: crates/tui/src/credentials/ and crates/tui/src/config/credential_resolve.rs
  • What was taken: the design of packages/ai/src/auth/ — one type-tagged credential per provider, modify as the only serialized write path, a single stated precedence rule enforced in one place, an injectable auth context, and a resolution result that names its source. This is a design port into idiomatic synchronous Rust over Codewhale's existing stores, not a line-for-line copy; several doc comments are adapted closely.
MIT License

Copyright (c) 2025 Mario Zechner

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Other source-level adaptations

These predate this file. Each already names its origin in a header comment on the adapting file; they are listed here so the set is discoverable from one place. Their licence text has not been reproduced below — that is a gap, not a claim that none is required.

Codewhale file Adapted from
crates/tui/src/tui/frame_rate_limiter.rs codex-rs/tui/src/tui/frame_rate_limiter.rs, openai/codex
crates/tui/src/tui/display_refresh.rs Grok CLI's host display-refresh probe
patches/unicode-width-0.2.2/ vendored patch; upstream LICENSE-MIT retained in-tree