archgraph-argo 0.10.3 → 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.
Files changed (2) hide show
  1. package/install-argo.ps1 +5 -1
  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: { content: { type: 'array', items: {} } },
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",
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": {
@@ -29,6 +29,6 @@
29
29
  "node": ">=18"
30
30
  },
31
31
  "dependencies": {
32
- "archgraph-argo": "^0.10.2"
32
+ "archgraph-argo": "^0.10.3"
33
33
  }
34
34
  }