fix: update installation commands to reflect new package name

This commit is contained in:
Lauren ten Hoor
2026-02-12 00:42:15 +08:00
parent a4312c886a
commit 3d3d1cc2e4
3 changed files with 18 additions and 5 deletions

View File

@@ -95,7 +95,7 @@ npm pack --dry-run
npm pack
# Extract and inspect
tar -xzf openclaw-devclaw-0.1.0.tgz
tar -xzf laurentenhoor-devclaw-0.1.0.tgz
ls -la package/
```

View File

@@ -8,6 +8,10 @@
DevClaw is a plugin for [OpenClaw](https://openclaw.ai) that turns your orchestrator agent into a development manager. It hires developers, assigns tasks, reviews code, and keeps the pipeline moving — across as many projects as you have group chats. [Get started →](#getting-started)
```bash
openclaw plugins install @laurentenhoor/devclaw
```
---
## What it looks like
@@ -331,7 +335,12 @@ Deployment steps, test commands, coding standards, acceptance criteria — all i
### Install
```bash
cp -r devclaw ~/.openclaw/extensions/
openclaw plugins install @laurentenhoor/devclaw
```
Or for local development:
```bash
openclaw plugins install -l ./devclaw
```
### Set up through conversation

View File

@@ -15,8 +15,12 @@ Step-by-step setup: install the plugin, configure an agent, register projects, a
## Step 1: Install the plugin
```bash
# Copy to extensions directory (auto-discovered on next restart)
cp -r devclaw ~/.openclaw/extensions/
openclaw plugins install @laurentenhoor/devclaw
```
Or for local development:
```bash
openclaw plugins install -l ./devclaw
```
Verify:
@@ -232,7 +236,7 @@ Change which model powers each level in `openclaw.json` — see [Configuration](
| Responsibility | Who | Details |
|---|---|---|
| Plugin installation | You (once) | `cp -r devclaw ~/.openclaw/extensions/` |
| Plugin installation | You (once) | `openclaw plugins install @laurentenhoor/devclaw` |
| Agent + workspace setup | Plugin (`setup`) | Creates agent, configures models, writes workspace files |
| Channel binding migration | Plugin (`setup` with `migrateFrom`) | Automatically moves channel-wide bindings between agents |
| Label setup | Plugin (`project_register`) | 8 labels, created idempotently via IssueProvider |