@integrity-labs/agt-cli 0.28.293 → 0.28.295
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/bin/agt.js +3 -3
- package/dist/{chunk-D6SMNBPT.js → chunk-VT2HBF2H.js} +2 -2
- package/dist/lib/manager-worker.js +126 -61
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/index.js +4 -0
- package/package.json +1 -1
- /package/dist/{chunk-D6SMNBPT.js.map → chunk-VT2HBF2H.js.map} +0 -0
package/dist/mcp/index.js
CHANGED
|
@@ -21748,6 +21748,9 @@ server.tool(
|
|
|
21748
21748
|
source_integration: external_exports.string().optional().describe('Integration name (e.g., "linear", "github") when source is "integration"'),
|
|
21749
21749
|
source_external_id: external_exports.string().optional().describe('ID in the external system (e.g., "ENG-123")'),
|
|
21750
21750
|
source_url: external_exports.string().optional().describe("Deep link URL to the external source"),
|
|
21751
|
+
deliver_to: external_exports.string().optional().describe(
|
|
21752
|
+
"Optional: the Slack user id of the person who asked for this (the requester), so you can notify/deliver to them when the task needs their input or is done. Omit to default to whoever you are talking to right now (auto-detected from the conversation this card came from)."
|
|
21753
|
+
),
|
|
21751
21754
|
project_id: external_exports.string().uuid().optional().describe(
|
|
21752
21755
|
"Optional project to file this task under (id from projects_list). Groups the task with related tasks/artefacts across agents. Reuse an existing project where one fits; use projects_create only after checking projects_list and confirming with the human."
|
|
21753
21756
|
)
|
|
@@ -21768,6 +21771,7 @@ server.tool(
|
|
|
21768
21771
|
source_integration: params.source_integration,
|
|
21769
21772
|
source_external_id: params.source_external_id,
|
|
21770
21773
|
source_url: params.source_url,
|
|
21774
|
+
deliver_to: params.deliver_to,
|
|
21771
21775
|
project_id: params.project_id
|
|
21772
21776
|
}
|
|
21773
21777
|
]
|
package/package.json
CHANGED
|
File without changes
|