@laurentenhoor/devclaw 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,6 +8,10 @@
8
8
 
9
9
  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)
10
10
 
11
+ ```bash
12
+ openclaw plugins install @laurentenhoor/devclaw
13
+ ```
14
+
11
15
  ---
12
16
 
13
17
  ## What it looks like
@@ -331,7 +335,12 @@ Deployment steps, test commands, coding standards, acceptance criteria — all i
331
335
  ### Install
332
336
 
333
337
  ```bash
334
- cp -r devclaw ~/.openclaw/extensions/
338
+ openclaw plugins install @laurentenhoor/devclaw
339
+ ```
340
+
341
+ Or for local development:
342
+ ```bash
343
+ openclaw plugins install -l ./devclaw
335
344
  ```
336
345
 
337
346
  ### Set up through conversation
@@ -15,8 +15,12 @@ Step-by-step setup: install the plugin, configure an agent, register projects, a
15
15
  ## Step 1: Install the plugin
16
16
 
17
17
  ```bash
18
- # Copy to extensions directory (auto-discovered on next restart)
19
- cp -r devclaw ~/.openclaw/extensions/
18
+ openclaw plugins install @laurentenhoor/devclaw
19
+ ```
20
+
21
+ Or for local development:
22
+ ```bash
23
+ openclaw plugins install -l ./devclaw
20
24
  ```
21
25
 
22
26
  Verify:
@@ -232,7 +236,7 @@ Change which model powers each level in `openclaw.json` — see [Configuration](
232
236
 
233
237
  | Responsibility | Who | Details |
234
238
  |---|---|---|
235
- | Plugin installation | You (once) | `cp -r devclaw ~/.openclaw/extensions/` |
239
+ | Plugin installation | You (once) | `openclaw plugins install @laurentenhoor/devclaw` |
236
240
  | Agent + workspace setup | Plugin (`setup`) | Creates agent, configures models, writes workspace files |
237
241
  | Channel binding migration | Plugin (`setup` with `migrateFrom`) | Automatically moves channel-wide bindings between agents |
238
242
  | Label setup | Plugin (`project_register`) | 8 labels, created idempotently via IssueProvider |
@@ -0,0 +1,55 @@
1
+ {
2
+ "id": "devclaw",
3
+ "name": "DevClaw",
4
+ "description": "Multi-project dev/qa pipeline orchestration for OpenClaw. Developer tiers, atomic task management, session health, and audit logging.",
5
+ "configSchema": {
6
+ "type": "object",
7
+ "properties": {
8
+ "models": {
9
+ "type": "object",
10
+ "description": "Model mapping per role and tier",
11
+ "properties": {
12
+ "dev": {
13
+ "type": "object",
14
+ "description": "Developer tier models",
15
+ "properties": {
16
+ "junior": { "type": "string" },
17
+ "medior": { "type": "string" },
18
+ "senior": { "type": "string" }
19
+ }
20
+ },
21
+ "qa": {
22
+ "type": "object",
23
+ "description": "QA tier models",
24
+ "properties": {
25
+ "reviewer": { "type": "string" },
26
+ "tester": { "type": "string" }
27
+ }
28
+ }
29
+ }
30
+ },
31
+ "projectExecution": {
32
+ "type": "string",
33
+ "enum": ["parallel", "sequential"],
34
+ "description": "Project execution mode. Default: parallel."
35
+ },
36
+ "notifications": {
37
+ "type": "object",
38
+ "description": "Per-event-type notification toggles. All default to true — set to false to suppress.",
39
+ "properties": {
40
+ "workerStart": { "type": "boolean" },
41
+ "workerComplete": { "type": "boolean" }
42
+ }
43
+ },
44
+ "work_heartbeat": {
45
+ "type": "object",
46
+ "description": "Token-free interval-based heartbeat service.",
47
+ "properties": {
48
+ "enabled": { "type": "boolean" },
49
+ "intervalSeconds": { "type": "number" },
50
+ "maxPickupsPerTick": { "type": "number" }
51
+ }
52
+ }
53
+ }
54
+ }
55
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@laurentenhoor/devclaw",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Multi-project dev/qa pipeline orchestration for OpenClaw",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "openclaw": {
29
29
  "extensions": [
30
- "./index.ts"
30
+ "./dist/index.js"
31
31
  ]
32
32
  },
33
33
  "main": "./dist/index.js",
@@ -35,7 +35,8 @@
35
35
  "files": [
36
36
  "dist/",
37
37
  "roles/",
38
- "docs/"
38
+ "docs/",
39
+ "openclaw.plugin.json"
39
40
  ],
40
41
  "publishConfig": {
41
42
  "access": "public"