# Setup Guide ## Initial Setup ```bash cd ~/clawd/claude-agents-skills npm install ``` ## Adding Skills 1. Create folder: `skills/my-skill/` 2. Add `SKILL.md` with documentation 3. Add code/scripts as needed 4. Test locally 5. Commit: `git commit -m "skill(my-skill): description"` ## Adding Agents 1. Create folder: `agents/my-agent/` 2. Add `SOUL.md` with agent definition 3. Optional: Add `README.md`, scripts, configs 4. Test with `sessions_spawn` or `openclaw agent` 5. Commit: `git commit -m "agent(my-agent): description"` ## Configuration Create `.env`: ```bash GOOGLE_CLOUD_PROJECT="your-project" GOOGLE_APPLICATION_CREDENTIALS=~/.config/gcloud/key.json ``` ## Testing ```bash # Test skill cat skills/browser-testing/SKILL.md # Test agent openclaw help | grep gravl-pm ```