@frenchtoastman/oh-my-groundcontrol 0.0.21 → 0.0.22
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/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -23169,12 +23169,12 @@ function deriveTask(agent) {
|
|
|
23169
23169
|
return AGENT_TASK_MAP[agent] ?? "general";
|
|
23170
23170
|
}
|
|
23171
23171
|
function deriveTags(agent) {
|
|
23172
|
-
const tags = [
|
|
23172
|
+
const tags = [];
|
|
23173
23173
|
if (agent)
|
|
23174
|
-
tags.push(agent);
|
|
23174
|
+
tags.push(`agent:${agent}`);
|
|
23175
23175
|
const task = deriveTask(agent);
|
|
23176
23176
|
if (task)
|
|
23177
|
-
tags.push(task);
|
|
23177
|
+
tags.push(`task:${task}`);
|
|
23178
23178
|
return tags;
|
|
23179
23179
|
}
|
|
23180
23180
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frenchtoastman/oh-my-groundcontrol",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"description": "An OpenCode plugin for multi-agent orchestration for structured planning with NASA-style guardrails.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|