aos-harness 0.3.1 → 0.3.2

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.
@@ -216,9 +216,9 @@ export default function (pi: ExtensionAPI) {
216
216
  const autoProfile = process.env.AOS_PROFILE;
217
217
  const autoBrief = process.env.AOS_BRIEF;
218
218
  if (autoProfile && autoBrief && projectRoot) {
219
- // Defer to let Pi finish initialization
219
+ // Defer to let Pi finish initialization, then send the command as user message
220
220
  setTimeout(() => {
221
- pi.runCommand("aos-run", "");
221
+ pi.sendUserMessage("/aos-run");
222
222
  }, 500);
223
223
  }
224
224
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aos-harness",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Agentic Orchestration System — assemble AI agents into deliberation and execution teams",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -36,7 +36,7 @@
36
36
  "test": "bun run src/index.ts validate"
37
37
  },
38
38
  "dependencies": {
39
- "@aos-harness/runtime": "0.3.1",
39
+ "@aos-harness/runtime": "0.3.2",
40
40
  "js-yaml": "^4.1.0"
41
41
  },
42
42
  "devDependencies": {