-
Notifications
You must be signed in to change notification settings - Fork 19
Description
Problem
When installing altimate-code in a fresh GitHub Codespace:
-
/discover-and-add-mcpscommand doesn't exist — A toast notification tells users to "Run /discover-and-add-mcps to enable and add them" but this slash command doesn't exist. The actual tool ismcp_discover. -
"Too Many Requests" infinite retry loop — In Codespaces,
GITHUB_TOKENis auto-available (machine-scoped for repo ops). Thegithub-modelsprovider auto-enables using this token, but GitHub Models has strict rate limits. This causes immediate 429 errors with exponential retry backoff (seen: attempt chore(deps-dev): Bump @parcel/watcher-darwin-arm64 from 2.5.1 to 2.5.6 #11, 33m 55s wait), making the tool unusable. -
No devcontainer configuration — No
.devcontainer/exists, so Codespaces has no standardized setup.
Expected
- Toast message should reference the actual mechanism to add MCP servers
GITHUB_TOKENin Codespaces should NOT auto-enablegithub-models/github-copilotproviders (the token lacks model inference permissions)- Retry loop should have a max attempt cap
- Devcontainer config should exist for reproducible Codespaces environments
Reported by
Brian Waligorski (Slack, 2026-03-23)