@questionbase/deskfree 0.3.0-alpha.31 → 0.3.0-alpha.32
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 +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/deskfree/SKILL.md +4 -9
- package/skills/deskfree/references/tools.md +13 -18
package/dist/index.js
CHANGED
|
@@ -8021,7 +8021,7 @@ var ORCHESTRATOR_TOOLS = {
|
|
|
8021
8021
|
},
|
|
8022
8022
|
PROPOSE: {
|
|
8023
8023
|
name: "deskfree_propose",
|
|
8024
|
-
description: "Propose a plan for human approval. Nothing is created until the human reviews and approves in a modal. One initiative per call \u2014 make multiple calls for multiple initiatives.
|
|
8024
|
+
description: "Propose a plan for human approval. Nothing is created until the human reviews and approves in a modal. One initiative per call \u2014 make multiple calls for multiple initiatives. Put all steps and details in the instructions field using simple markdown (bold, lists, inline code). Do NOT use markdown headers (#) \u2014 use **bold text** instead for section labels.",
|
|
8025
8025
|
parameters: Type.Object({
|
|
8026
8026
|
initiative: Type.Optional(
|
|
8027
8027
|
Type.Union(
|
|
@@ -8060,12 +8060,12 @@ var ORCHESTRATOR_TOOLS = {
|
|
|
8060
8060
|
}),
|
|
8061
8061
|
instructions: Type.Optional(
|
|
8062
8062
|
Type.String({
|
|
8063
|
-
description: "Detailed instructions: what to do, why, what done looks like, known constraints"
|
|
8063
|
+
description: "Detailed instructions in simple markdown (bold, lists, inline code \u2014 no # headers). Include: what to do, steps, why, what done looks like, known constraints."
|
|
8064
8064
|
})
|
|
8065
8065
|
),
|
|
8066
8066
|
substeps: Type.Optional(
|
|
8067
8067
|
Type.Array(Type.String(), {
|
|
8068
|
-
description: "
|
|
8068
|
+
description: "DEPRECATED \u2014 put steps in the instructions field as markdown instead. This field is ignored.",
|
|
8069
8069
|
minItems: 1,
|
|
8070
8070
|
maxItems: 20
|
|
8071
8071
|
})
|
|
@@ -8184,7 +8184,7 @@ var SHARED_TOOLS = {
|
|
|
8184
8184
|
},
|
|
8185
8185
|
PROPOSE: {
|
|
8186
8186
|
name: "deskfree_propose",
|
|
8187
|
-
description: "Propose a plan for human approval. Nothing is created until the human reviews and approves in a modal. One initiative per call \u2014 make multiple calls for multiple initiatives.
|
|
8187
|
+
description: "Propose a plan for human approval. Nothing is created until the human reviews and approves in a modal. One initiative per call \u2014 make multiple calls for multiple initiatives. Put all steps and details in the instructions field using simple markdown (bold, lists, inline code). Do NOT use markdown headers (#) \u2014 use **bold text** instead for section labels.",
|
|
8188
8188
|
parameters: Type.Object({
|
|
8189
8189
|
initiative: Type.Optional(
|
|
8190
8190
|
Type.Union(
|
|
@@ -8223,12 +8223,12 @@ var SHARED_TOOLS = {
|
|
|
8223
8223
|
}),
|
|
8224
8224
|
instructions: Type.Optional(
|
|
8225
8225
|
Type.String({
|
|
8226
|
-
description: "Detailed instructions: what to do, why, what done looks like, known constraints"
|
|
8226
|
+
description: "Detailed instructions in simple markdown (bold, lists, inline code \u2014 no # headers). Include: what to do, steps, why, what done looks like, known constraints."
|
|
8227
8227
|
})
|
|
8228
8228
|
),
|
|
8229
8229
|
substeps: Type.Optional(
|
|
8230
8230
|
Type.Array(Type.String(), {
|
|
8231
|
-
description: "
|
|
8231
|
+
description: "DEPRECATED \u2014 put steps in the instructions field as markdown instead. This field is ignored.",
|
|
8232
8232
|
minItems: 1,
|
|
8233
8233
|
maxItems: 20
|
|
8234
8234
|
})
|
|
@@ -8879,7 +8879,7 @@ You are the orchestrator. Your job: turn human intent into approved tasks, then
|
|
|
8879
8879
|
|
|
8880
8880
|
You do NOT claim tasks or do work directly. Sub-agents handle execution.
|
|
8881
8881
|
- When a human writes in a task thread, you receive it with recent context. Use \`deskfree_reopen_task\` if it needs more work.
|
|
8882
|
-
- Write task instructions as
|
|
8882
|
+
- Write task instructions as rich markdown (bold, lists, inline code \u2014 no # headers). Brief a contractor who has never seen the codebase.
|
|
8883
8883
|
- Estimate token cost per task \u2014 consider files to read, reasoning, output.
|
|
8884
8884
|
- One initiative per proposal \u2014 make multiple calls for multiple initiatives.`;
|
|
8885
8885
|
var DESKFREE_WORKER_DIRECTIVE = `## DeskFree Worker
|