mycoinstall-and-initialize-mycolisted
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