@orderful/droid 0.55.0 → 0.55.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/CHANGELOG.md +6 -0
- package/dist/tools/propose-plan/.claude-plugin/plugin.json +1 -1
- package/dist/tools/propose-plan/TOOL.yaml +1 -1
- package/dist/tools/propose-plan/skills/propose-plan/SKILL.md +2 -2
- package/package.json +1 -1
- package/src/tools/propose-plan/.claude-plugin/plugin.json +1 -1
- package/src/tools/propose-plan/TOOL.yaml +1 -1
- package/src/tools/propose-plan/skills/propose-plan/SKILL.md +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @orderful/droid
|
|
2
2
|
|
|
3
|
+
## 0.55.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#332](https://github.com/Orderful/droid/pull/332) [`d7ce424`](https://github.com/Orderful/droid/commit/d7ce42407f4a0ae8d20306d954a74cd18aeef703) Thanks [@frytyler](https://github.com/frytyler)! - Clarify propose-plan skill: config.tool should use canonical tool names (e.g. `create_org`) without client-specific prefixes like `mcp__server__`
|
|
8
|
+
|
|
3
9
|
## 0.55.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "droid-propose-plan",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Produce structured plans with evidence and actions for human approval in Orderful Agents. Use when an agent must propose write operations that require human-in-the-loop review before execution.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Orderful",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
name: propose-plan
|
|
2
2
|
description: "Produce structured plans with evidence and actions for human approval in Orderful Agents. Use when an agent must propose write operations that require human-in-the-loop review before execution."
|
|
3
|
-
version: 0.1.
|
|
3
|
+
version: 0.1.1
|
|
4
4
|
status: beta
|
|
5
5
|
audience:
|
|
6
6
|
- all
|
|
@@ -47,7 +47,7 @@ Produce a single JSON object matching the schema in `references/output-schema.js
|
|
|
47
47
|
{
|
|
48
48
|
"type": "mcp_call",
|
|
49
49
|
"config": {
|
|
50
|
-
"tool": "string —
|
|
50
|
+
"tool": "string — canonical tool name (e.g. create_org), without client-specific prefixes"
|
|
51
51
|
},
|
|
52
52
|
"description": "string — human-readable description of what this action does",
|
|
53
53
|
"payload": "string — JSON-stringified arguments to pass to the tool"
|
|
@@ -72,7 +72,7 @@ Produce a single JSON object matching the schema in `references/output-schema.js
|
|
|
72
72
|
| Field | Purpose |
|
|
73
73
|
| ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
74
74
|
| `type` | Action category. Use `mcp_call` for MCP tool invocations. |
|
|
75
|
-
| `config` | Identifies which tool to call. For `mcp_call`: `{ "tool": "create_org" }`. Use the tool name
|
|
75
|
+
| `config` | Identifies which tool to call. For `mcp_call`: `{ "tool": "create_org" }`. Use the canonical tool name — not client-specific prefixes like `mcp__server__`. The execution layer resolves routing. |
|
|
76
76
|
| `description` | Human-readable summary. The reviewer sees this before expanding the payload. Write it for someone who won't read the raw payload. |
|
|
77
77
|
| `payload` | JSON-stringified arguments passed to the tool. Stringify the object — `JSON.stringify({...})` — don't nest it raw. |
|
|
78
78
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "droid-propose-plan",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Produce structured plans with evidence and actions for human approval in Orderful Agents. Use when an agent must propose write operations that require human-in-the-loop review before execution.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Orderful",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
name: propose-plan
|
|
2
2
|
description: "Produce structured plans with evidence and actions for human approval in Orderful Agents. Use when an agent must propose write operations that require human-in-the-loop review before execution."
|
|
3
|
-
version: 0.1.
|
|
3
|
+
version: 0.1.1
|
|
4
4
|
status: beta
|
|
5
5
|
audience:
|
|
6
6
|
- all
|
|
@@ -47,7 +47,7 @@ Produce a single JSON object matching the schema in `references/output-schema.js
|
|
|
47
47
|
{
|
|
48
48
|
"type": "mcp_call",
|
|
49
49
|
"config": {
|
|
50
|
-
"tool": "string —
|
|
50
|
+
"tool": "string — canonical tool name (e.g. create_org), without client-specific prefixes"
|
|
51
51
|
},
|
|
52
52
|
"description": "string — human-readable description of what this action does",
|
|
53
53
|
"payload": "string — JSON-stringified arguments to pass to the tool"
|
|
@@ -72,7 +72,7 @@ Produce a single JSON object matching the schema in `references/output-schema.js
|
|
|
72
72
|
| Field | Purpose |
|
|
73
73
|
| ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
74
74
|
| `type` | Action category. Use `mcp_call` for MCP tool invocations. |
|
|
75
|
-
| `config` | Identifies which tool to call. For `mcp_call`: `{ "tool": "create_org" }`. Use the tool name
|
|
75
|
+
| `config` | Identifies which tool to call. For `mcp_call`: `{ "tool": "create_org" }`. Use the canonical tool name — not client-specific prefixes like `mcp__server__`. The execution layer resolves routing. |
|
|
76
76
|
| `description` | Human-readable summary. The reviewer sees this before expanding the payload. Write it for someone who won't read the raw payload. |
|
|
77
77
|
| `payload` | JSON-stringified arguments passed to the tool. Stringify the object — `JSON.stringify({...})` — don't nest it raw. |
|
|
78
78
|
|