@frockbot/plugin-authoring 0.3.2 → 0.3.3
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/package.json +2 -2
- package/src/agent.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/plugin-authoring",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@frockbot/kernel-contracts": "0.3.
|
|
24
|
+
"@frockbot/kernel-contracts": "0.3.3",
|
|
25
25
|
"cordis": "4.0.0-rc.8"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
package/src/agent.ts
CHANGED
|
@@ -119,6 +119,7 @@ export function createPackageAuthorTool(
|
|
|
119
119
|
): ToolDefinition {
|
|
120
120
|
return {
|
|
121
121
|
name: "package_author",
|
|
122
|
+
namespace: "frockbot",
|
|
122
123
|
// A general work tool: the full toolset an `executor` subagent gets, and
|
|
123
124
|
// not part of the narrow reach of `browserUse`, `computerUse`, or the two
|
|
124
125
|
// video roles. See `@frockbot/plugin-subagents` `SUBAGENT_TOOL_REACH_V1`.
|
|
@@ -212,6 +213,7 @@ export function createPackageUndoTool(
|
|
|
212
213
|
): ToolDefinition {
|
|
213
214
|
return {
|
|
214
215
|
name: "package_undo",
|
|
216
|
+
namespace: "frockbot",
|
|
215
217
|
admission: { subagentRoles: ["executor"] },
|
|
216
218
|
description:
|
|
217
219
|
"Undo your latest Package setup change, or restore an earlier Composition generation. This only changes Package setup; it never undoes actions taken through Connections. The resulting generation activates on the next Turn.",
|
|
@@ -290,6 +292,7 @@ export function createPackageInspectSelfTool(
|
|
|
290
292
|
): ToolDefinition {
|
|
291
293
|
return {
|
|
292
294
|
name: "package_inspect_self",
|
|
295
|
+
namespace: "frockbot",
|
|
293
296
|
admission: { subagentRoles: ["executor"] },
|
|
294
297
|
description:
|
|
295
298
|
"Read your exact Package execution context contract, current Composition (including your stored Package source), and latest authoring or activation failure per authored Package.",
|