218 lines
3.7 KiB
Markdown
218 lines
3.7 KiB
Markdown
# 🐾 QwenClaw v2.0 - Rebuilt from OpenClaw
|
|
|
|
**Qwen Code CLI's ALWAYS-ON AI Assistant**
|
|
|
|
QwenClaw is now a complete rebuild based on [OpenClaw](https://github.com/openclaw/openclaw), adapted specifically for Qwen Code CLI as the main AI provider.
|
|
|
|
---
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# Install
|
|
npm install -g qwenclaw
|
|
|
|
# Or use from source
|
|
cd qwenclaw
|
|
npm link
|
|
|
|
# Setup
|
|
qwenclaw setup
|
|
|
|
# Start using
|
|
qwenclaw start
|
|
qwenclaw send "Check my tasks"
|
|
```
|
|
|
|
---
|
|
|
|
## Features
|
|
|
|
### 81 Skills Available
|
|
|
|
| Category | Skills |
|
|
|----------|--------|
|
|
| **Content** | Research writer, changelog generator |
|
|
| **Development** | Code mentor, plugin dev, testing |
|
|
| **Design** | UI/UX Pro Max, shadcn/ui patterns |
|
|
| **Automation** | GUI automation (Playwright) |
|
|
| **Multi-Agent** | Agents Council (Claude, Codex, Qwen) |
|
|
| **Economic** | ClawWork (220 GDP tasks, 44 sectors) |
|
|
| **Tools** | QwenBot, file operations |
|
|
|
|
### Qwen Code CLI Integration
|
|
|
|
- ✅ Uses Qwen Code CLI as main AI provider
|
|
- ✅ Always-on daemon mode
|
|
- ✅ Persistent sessions
|
|
- ✅ Web dashboard (http://127.0.0.1:4632)
|
|
- ✅ Multi-agent orchestration via Agents Council
|
|
- ✅ Economic accountability via ClawWork
|
|
- ✅ FULL RAG capabilities
|
|
|
|
---
|
|
|
|
## Commands
|
|
|
|
```bash
|
|
qwenclaw start # Start daemon
|
|
qwenclaw status # Check status
|
|
qwenclaw send "task" # Send task
|
|
qwenclaw skills # List skills
|
|
qwenclaw setup # Setup wizard
|
|
qwenclaw help # Show help
|
|
```
|
|
|
|
---
|
|
|
|
## Architecture
|
|
|
|
```
|
|
QwenClaw
|
|
├── Qwen Code CLI (Main Provider)
|
|
├── Agents Council (Multi-Agent)
|
|
│ ├── Qwen Code
|
|
│ ├── Claude Code
|
|
│ └── Codex
|
|
├── ClawWork (Economic Layer)
|
|
│ ├── 220 GDP Tasks
|
|
│ └── 44 Economic Sectors
|
|
└── FULL RAG
|
|
├── Vector Store
|
|
└── Document Retrieval
|
|
```
|
|
|
|
---
|
|
|
|
## Installation
|
|
|
|
### From npm (recommended)
|
|
|
|
```bash
|
|
npm install -g qwenclaw
|
|
qwenclaw setup
|
|
qwenclaw start
|
|
```
|
|
|
|
### From source
|
|
|
|
```bash
|
|
git clone https://github.rommark.dev/admin/QwenClaw-with-Auth.git
|
|
cd QwenClaw-with-Auth
|
|
npm install
|
|
npm link
|
|
qwenclaw setup
|
|
```
|
|
|
|
---
|
|
|
|
## Configuration
|
|
|
|
QwenClaw auto-configures during setup. Manual config location:
|
|
|
|
```
|
|
~/.qwen/qwenclaw/settings.json
|
|
```
|
|
|
|
Default settings:
|
|
- Provider: Qwen Code CLI
|
|
- Web Dashboard: http://127.0.0.1:4632
|
|
- Auto-start: enabled
|
|
- Skills: 81 enabled
|
|
|
|
---
|
|
|
|
## Usage Examples
|
|
|
|
### Send Task
|
|
|
|
```bash
|
|
qwenclaw send "Summarize my GitHub notifications"
|
|
```
|
|
|
|
### Multi-Agent Code Review
|
|
|
|
```bash
|
|
qwenclaw send "Start code review council for my PR"
|
|
```
|
|
|
|
### Economic Tasks
|
|
|
|
```bash
|
|
qwenclaw send "Check my ClawWork balance and start a task"
|
|
```
|
|
|
|
### GUI Automation
|
|
|
|
```bash
|
|
qwenclaw send "Screenshot https://example.com"
|
|
```
|
|
|
|
---
|
|
|
|
## Skills (Selection)
|
|
|
|
### Development
|
|
- Code mentor
|
|
- Plugin development
|
|
- Test-driven development
|
|
- Code review
|
|
|
|
### Automation
|
|
- GUI automation (Playwright)
|
|
- Web scraping
|
|
- File operations
|
|
|
|
### Multi-Agent
|
|
- Agents Council orchestration
|
|
- Cross-agent collaboration
|
|
|
|
### Economic
|
|
- ClawWork integration
|
|
- 220 GDP validation tasks
|
|
- 44 professional sectors
|
|
|
|
---
|
|
|
|
## Troubleshooting
|
|
|
|
### Daemon not starting
|
|
|
|
```bash
|
|
# Check Qwen Code CLI is installed
|
|
qwen --version
|
|
|
|
# Restart daemon
|
|
qwenclaw start
|
|
```
|
|
|
|
### Skills not available
|
|
|
|
```bash
|
|
# List enabled skills
|
|
qwenclaw skills
|
|
|
|
# Re-run setup
|
|
qwenclaw setup
|
|
```
|
|
|
|
---
|
|
|
|
## Resources
|
|
|
|
- **Repository:** https://github.rommark.dev/admin/QwenClaw-with-Auth
|
|
- **OpenClaw:** https://github.com/openclaw/openclaw
|
|
- **Qwen Code:** https://github.com/QwenLM/Qwen-Code
|
|
- **Agents Council:** https://github.com/MrLesk/agents-council
|
|
- **ClawWork:** https://github.com/HKUDS/ClawWork
|
|
|
|
---
|
|
|
|
## License
|
|
|
|
MIT License - Based on OpenClaw (MIT)
|
|
|
|
---
|
|
|
|
**Built with 🐾 for Qwen Code CLI**
|