Install
$ agentstack add skill-demerzels-lab-elsamultiskillagent-rei ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Rei Qwen3 Coder
Rei provides Qwen3 Coder via an OpenAI-compatible endpoint at coder.reilabs.org.
Setup via Script
./skills/rei/scripts/setup.sh YOUR_REI_API_KEY
This adds the provider, adds it to the model allowlist, and restarts the gateway.
Setup via Agent
Ask your agent:
> "Set up Rei with API key: YOUR_KEY"
The agent will read this skill and run the setup script for you.
Switching Models
Via chat:
/model rei
/model opus
Via script:
./skills/rei/scripts/switch.sh rei
./skills/rei/scripts/switch.sh opus
Via agent: > "Switch to Rei" or "Switch back to Opus"
Revert
If something breaks, restore the backup:
./skills/rei/scripts/revert.sh
Manual Setup
Add to ~/.clawdbot/clawdbot.json:
{
"models": {
"providers": {
"rei": {
"baseUrl": "https://coder.reilabs.org/v1",
"apiKey": "YOUR_API_KEY",
"api": "openai-completions",
"headers": { "User-Agent": "Clawdbot/1.0" },
"models": [{
"id": "rei-qwen3-coder",
"name": "Rei Qwen3 Coder",
"contextWindow": 200000,
"maxTokens": 8192
}]
}
}
},
"agents": {
"defaults": {
"models": {
"rei/rei-qwen3-coder": { "alias": "rei" }
}
}
}
}
Then restart: clawdbot gateway restart
Troubleshooting
403 errors: The User-Agent: Clawdbot/1.0 header is required. The setup script adds this automatically. If you configured manually, make sure the header is present.
"Model not allowed": Rei must be in agents.defaults.models to switch to it. The setup script handles this. For manual setup, add the allowlist entry shown above.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Demerzels-lab
- Source: Demerzels-lab/elsamultiskillagent
- License: MIT
- Homepage: https://www.elsamultiskillagent.site/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.