openclaw-code-agent 2.0.3 → 2.0.5

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 OpenClaw Contributors
3
+ Copyright (c) 2026 Mark Goldenstein
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -2,7 +2,7 @@
2
2
  "id": "openclaw-code-agent",
3
3
  "name": "OpenClaw Code Agent",
4
4
  "description": "Orchestrate coding agent sessions from OpenClaw",
5
- "version": "2.0.3",
5
+ "version": "2.0.5",
6
6
  "configSchema": {
7
7
  "type": "object",
8
8
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-code-agent",
3
- "version": "2.0.3",
3
+ "version": "2.0.5",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -1,42 +1,20 @@
1
1
  ---
2
2
  name: Code Agent Orchestration
3
3
  description: Skill for orchestrating coding agent sessions from OpenClaw. Covers launching, monitoring, multi-turn interaction, lifecycle management, notifications, and parallel work patterns.
4
- metadata: {"openclaw": {"requires": {"plugins": ["openclaw-code-agent"]}}}
4
+ metadata:
5
+ openclaw:
6
+ homepage: https://github.com/goldmar/openclaw-code-agent
7
+ requires:
8
+ bins:
9
+ - openclaw
10
+ install:
11
+ - kind: node
12
+ package: openclaw-code-agent
13
+ bins: []
5
14
  ---
6
15
 
7
16
  # Code Agent Orchestration
8
17
 
9
- ## Requirements
10
-
11
- This skill requires the `openclaw-code-agent` plugin. Install it first:
12
-
13
- ```bash
14
- openclaw plugins install openclaw-code-agent
15
- openclaw plugins enable openclaw-code-agent
16
- openclaw gateway restart
17
- ```
18
-
19
- Then configure your notification channel in `~/.openclaw/openclaw.json`:
20
-
21
- ```json
22
- {
23
- "plugins": {
24
- "entries": {
25
- "openclaw-code-agent": {
26
- "enabled": true,
27
- "config": {
28
- "fallbackChannel": "telegram|my-bot|123456789"
29
- }
30
- }
31
- }
32
- }
33
- }
34
- ```
35
-
36
- Replace `my-bot` with your Telegram bot name and `123456789` with your chat ID. Full config reference: [github.com/goldmar/openclaw-code-agent](https://github.com/goldmar/openclaw-code-agent)
37
-
38
- ---
39
-
40
18
  You orchestrate coding agent sessions via the `openclaw-code-agent`. Each session is an autonomous agent that executes code tasks in the background.
41
19
 
42
20
  ---