archgraph-argo 0.10.3 → 0.10.5
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/install-argo.ps1 +6 -2
- package/package.json +2 -2
package/install-argo.ps1
CHANGED
|
@@ -485,10 +485,14 @@ export async function apply(ctx, config) {
|
|
|
485
485
|
output: {
|
|
486
486
|
schema: {
|
|
487
487
|
type: 'object',
|
|
488
|
-
properties: {
|
|
488
|
+
properties: {
|
|
489
|
+
content: { type: 'array', items: {} },
|
|
490
|
+
structuredContent: {},
|
|
491
|
+
},
|
|
489
492
|
required: ['content'],
|
|
490
493
|
additionalProperties: false,
|
|
491
494
|
},
|
|
495
|
+
render: (_args, value) => value.content,
|
|
492
496
|
},
|
|
493
497
|
execute: async (args, exec) => {
|
|
494
498
|
const sessionCwd = exec && exec.agent && exec.agent.session
|
|
@@ -721,7 +725,7 @@ if ($SkipDsh) {
|
|
|
721
725
|
Write-DshManagedBlock -Path $patchPath -Block $block -MarkerStart '# BEGIN ArchGraph ARGO deployment' -MarkerEnd '# END ArchGraph ARGO deployment'
|
|
722
726
|
}
|
|
723
727
|
|
|
724
|
-
Write-Host "[19/19]
|
|
728
|
+
Write-Host "[19/19] 1argo\agents -> $DshHome\.agent-presets\<id> (DeepSeek Harness agent presets)"
|
|
725
729
|
New-DshAgentPresets -DshHome $DshHome -AgentsSrc (Join-Path $argoDir 'agents')
|
|
726
730
|
|
|
727
731
|
Write-Host ' Restart `dsh web` to activate the MCP bridge and the wakeup plugin;'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "archgraph-argo",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.5",
|
|
4
4
|
"description": "Deploy the ArchGraph ARGO toolchain, skills, and rules (schema, scripts, argo-init skill, global rule) with one command.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
@@ -29,6 +29,6 @@
|
|
|
29
29
|
"node": ">=18"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"archgraph-argo": "^0.10.
|
|
32
|
+
"archgraph-argo": "^0.10.3"
|
|
33
33
|
}
|
|
34
34
|
}
|