archgraph-argo 0.10.2 → 0.10.4
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 +5 -1
- package/package.json +4 -1
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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "archgraph-argo",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.4",
|
|
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": {
|
|
@@ -27,5 +27,8 @@
|
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
29
|
"node": ">=18"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"archgraph-argo": "^0.10.3"
|
|
30
33
|
}
|
|
31
34
|
}
|