@tryaura/aura-cli 0.5.1 → 0.5.3

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/aura.js CHANGED
@@ -9,7 +9,7 @@ await runCli({
9
9
  description: "Agent Unification & Repair Assistant",
10
10
  displayName: "Aura",
11
11
  docsUrl: "https://tryaura.sh/docs/quickstart",
12
- version: "0.5.1"
12
+ version: "0.5.3"
13
13
  },
14
14
  plugins: OFFICIAL_PLUGINS,
15
15
  registry: OFFICIAL_REGISTRY_OPTIONS
package/dist/index.js CHANGED
@@ -73,12 +73,13 @@ function createHttpTelemetrySink(options) {
73
73
  const events = buffered.splice(0);
74
74
  for (let start = 0; start < events.length; start += maxBatch) {
75
75
  if (signal.aborted) break;
76
+ const batch = {
77
+ events: events.slice(start, start + maxBatch),
78
+ kind: "aura-telemetry",
79
+ schemaVersion: 1
80
+ };
76
81
  await deliver(post, {
77
- body: JSON.stringify({
78
- events: events.slice(start, start + maxBatch),
79
- kind: "aura-telemetry",
80
- schemaVersion: 1
81
- }),
82
+ body: JSON.stringify(batch),
82
83
  ...options.headers === void 0 ? {} : { headers: options.headers },
83
84
  signal,
84
85
  timeoutMs,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tryaura/aura-cli",
3
- "version": "0.5.1",
3
+ "version": "0.5.3",
4
4
  "description": "The composable Aura CLI runtime and official plugin distribution.",
5
5
  "keywords": [
6
6
  "agent",
@@ -50,7 +50,7 @@
50
50
  "toml-eslint-parser": "^1.0.3",
51
51
  "typanion": "3.14.0",
52
52
  "undici": "7.29.0",
53
- "@tryaura/aura-sdk": "0.5.1"
53
+ "@tryaura/aura-sdk": "0.5.3"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@types/node": "24.13.3",
@@ -60,9 +60,9 @@
60
60
  "@tryaura/adapter-claude-code": "0.0.0",
61
61
  "@tryaura/adapter-cursor": "0.0.0",
62
62
  "@tryaura/adapter-codex": "0.0.0",
63
- "@tryaura/checks-core": "0.0.0",
64
63
  "@tryaura/content-official": "0.0.0",
65
- "@tryaura/core": "0.0.0"
64
+ "@tryaura/core": "0.0.0",
65
+ "@tryaura/checks-core": "0.0.0"
66
66
  },
67
67
  "engines": {
68
68
  "node": ">=24"