chore: rebrand companion-os to clanker-agent

- Rename all package names from companion-* to clanker-*
- Update npm scopes from @mariozechner to @harivansh-afk
- Rename config directories .companion -> .clanker
- Rename environment variables COMPANION_* -> CLANKER_*
- Update all documentation, README files, and install scripts
- Rename package directories (companion-channels, companion-grind, companion-teams)
- Update GitHub URLs to harivansh-afk/clanker-agent
- Preserve full git history from companion-cloud monorepo
This commit is contained in:
Harivansh Rathi 2026-03-26 16:22:52 -04:00
parent f93fe7d1a0
commit 67168d8289
356 changed files with 2249 additions and 10223 deletions

View file

@ -71,29 +71,29 @@ When closing issues via commit:
- GitHub CLI for issues/PRs
- Add package labels to issues/PRs: pkg:agent, pkg:ai, pkg:coding-agent, pkg:mom, pkg:pods, pkg:tui, pkg:web-ui
## Testing companion Interactive Mode with tmux
## Testing clanker Interactive Mode with tmux
To test companion's TUI in a controlled terminal environment:
To test clanker's TUI in a controlled terminal environment:
```bash
# Create tmux session with specific dimensions
tmux new-session -d -s companion-test -x 80 -y 24
tmux new-session -d -s clanker-test -x 80 -y 24
# Start companion from source
tmux send-keys -t companion-test "cd /Users/badlogic/workspaces/companion-mono && ./companion-test.sh" Enter
# Start clanker from source
tmux send-keys -t clanker-test "cd /Users/badlogic/workspaces/clanker-agent && ./clanker-test.sh" Enter
# Wait for startup, then capture output
sleep 3 && tmux capture-pane -t companion-test -p
sleep 3 && tmux capture-pane -t clanker-test -p
# Send input
tmux send-keys -t companion-test "your prompt here" Enter
tmux send-keys -t clanker-test "your prompt here" Enter
# Send special keys
tmux send-keys -t companion-test Escape
tmux send-keys -t companion-test C-o # ctrl+o
tmux send-keys -t clanker-test Escape
tmux send-keys -t clanker-test C-o # ctrl+o
# Cleanup
tmux kill-session -t companion-test
tmux kill-session -t clanker-test
```
## Style
@ -127,8 +127,8 @@ Use these sections under `## [Unreleased]`:
### Attribution
- **Internal changes (from issues)**: `Fixed foo bar ([#123](https://github.com/badlogic/companion-mono/issues/123))`
- **External contributions**: `Added feature X ([#456](https://github.com/badlogic/companion-mono/pull/456) by [@username](https://github.com/username))`
- **Internal changes (from issues)**: `Fixed foo bar ([#123](https://github.com/badlogic/clanker-agent/issues/123))`
- **External contributions**: `Added feature X ([#456](https://github.com/badlogic/clanker-agent/pull/456) by [@username](https://github.com/username))`
## Adding a New LLM Provider (packages/ai)