alex-feel/claude-code-toolbox — Summary
alex-feel/claude-code-toolbox is a YAML-declarative environment configuration framework for Claude Code that lets users define a complete development environment (agents, MCP servers, slash commands, hooks, skills, model settings, permissions, status line) in a single YAML file and install everything with one command across Windows, macOS, and Linux. Unlike all other starters in the batch that ship pre-built agent/command/skill sets, this framework is a meta-installer: it reads a YAML config pointing at a user-defined repository and installs whatever that config specifies. It ships Python scripts (setup_environment.py, install_claude.py), platform-specific shell/PowerShell scripts, and a comprehensive configuration guide. The YAML supports: base-url for remote resource resolution, configuration-inheritance (extend/override parent configs), dependency-management (apt/brew/choco), file-downloads, private repository support (GitHub/GitLab tokens), and all 4 Claude Code hook types (command, HTTP, prompt, agent).
differs_from_seeds: No seed ships a meta-installer framework — all seeds ship pre-built content. Most similar to agent-os (bash-bundle installer) but inverted: agent-os ships content + installs it; alex-feel ships the installer + reads user-defined content from a YAML. The YAML-driven environment definition (config.yaml → my-env global command) most closely resembles kiro's .kiro/ project configuration approach but for Claude Code. Configuration inheritance (extend parent configs) is a unique feature not present in any seed.