init: create claude-agents-skills hub with structure

This commit is contained in:
2026-03-01 09:52:53 +01:00
commit 72d0676416
4 changed files with 172 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
# 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
```