← ClaudeAtlas

mycoinstall-and-initialize-mycolisted

Use this skill when installing Myco for the first time, initializing Myco in a new project, or troubleshooting a broken installation. Activate even if the user just asks "how do I get started with Myco" or "how do I add Myco to my project" without explicitly saying "install." Covers the full lifecycle: bootstrapping the CLI via the install script, verifying health with `myco doctor`, and managing updates and removal.
goondocks-co/myco · ★ 13 · AI & Automation · score 79
Install: claude install-skill goondocks-co/myco
# Install and Initialize Myco ## Prerequisites - Node.js installed (Myco requires Node.js ≥ 18) - Git repository initialized for the target project - At least one supported agent installed (Claude Code, Cursor, Windsurf, Codex, Gemini CLI, or VS Code Copilot) ## Steps ### 1. Bootstrap the CLI Install the Myco CLI globally via the install script: ```bash curl -fsSL https://myco.sh/install.sh | bash ``` Or via npm: ```bash npm install -g myco ``` Verify the installation: ```bash myco --version ``` **CLI Help Behavior:** All Myco commands return usage information via `--help` before processing configuration. This means `myco init --help` or `myco update --help` will display command usage immediately without reading `.myco/myco.yaml` or validating the project state first. ### 2. Initialize Myco in a Project Navigate to the project root directory: ```bash cd /path/to/your/project ``` Start the Myco daemon. The daemon runs as a background process and manages session capture, intelligence processing, and Team Host connectivity. The daemon UI provides configuration and monitoring: ```bash myco daemon start ``` The daemon starts automatically on first session capture if not already running. You can also trigger startup explicitly before your first agent session: ```bash myco stats # Starts daemon if not running, shows current status ``` **Project Root Safety**: The daemon includes safety guards to prevent initialization in dangerous locations like `$HOME`. Choose a