@tryaura/aura-cli 0.1.0 → 0.2.0

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/README.md CHANGED
@@ -4,8 +4,9 @@ Composable CLI runtime for Aura distributions. The package exports `runCli` from
4
4
  official plugin composition from `@tryaura/aura-cli/plugins`. Installing it globally also provides
5
5
  the official `aura` command.
6
6
 
7
- The packages are prepared at `0.1.0` but are not published to npm yet. Until the first release,
8
- use the repository's `pnpm verify:packages` command to build and exercise local tarballs.
7
+ ```sh
8
+ npm install -g @tryaura/aura-cli
9
+ ```
9
10
 
10
11
  See the [distro authoring guide](https://tryaura.sh/docs/guides/distributions) for branding, plugin
11
12
  composition, distribution defaults, bundled runtime presets, compiled binaries, and testkit usage.
package/dist/bin/aura.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
- import { n as OFFICIAL_REGISTRY_OPTIONS, t as OFFICIAL_PLUGINS } from "../plugins-n3DS8XXi.js";
3
- import { t as runCli } from "../run-pMPxJqFQ.js";
2
+ import { n as OFFICIAL_REGISTRY_OPTIONS, t as OFFICIAL_PLUGINS } from "../plugins-SZegBVXF.js";
3
+ import { t as runCli } from "../run.boundary-BtMqQAEQ.js";
4
4
  //#endregion
5
5
  //#region src/bin.ts
6
6
  await runCli({
@@ -8,7 +8,8 @@ await runCli({
8
8
  command: "aura",
9
9
  description: "Agent Unification & Repair Assistant",
10
10
  displayName: "Aura",
11
- version: "0.1.0"
11
+ docsUrl: "https://tryaura.sh/docs/introduction",
12
+ version: "0.2.0"
12
13
  },
13
14
  plugins: OFFICIAL_PLUGINS,
14
15
  registry: OFFICIAL_REGISTRY_OPTIONS
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { a as CliRuntime, i as CliRegistryOptions, n as CliDistro, r as CliExitCode, t as CliBranding } from "./types-DmBu6g0d.js";
1
+ import { a as CliRuntime, i as CliRegistryOptions, n as CliDistro, r as CliExitCode, t as CliBranding } from "./types--E7zqKfw.js";
2
2
  import { AdapterSupport, AuraConfigurationProvenance, FindingLocation, FindingPresentation, Fixability, HttpFailureReason, HttpPostRequest, HttpPostResult, JsonObject, Scope, Severity, TelemetryEvent, TelemetrySink, TelemetrySink as TelemetrySink$1 } from "@tryaura/aura-sdk";
3
3
  //#region src/http-telemetry-sink.d.ts
4
4
  /** A privacy-safe reason one HTTP delivery was dropped. */
@@ -93,6 +93,14 @@ interface ReportDiagnostic {
93
93
  readonly path?: string | undefined;
94
94
  readonly phase: "check" | "detect" | "files" | "fix" | "parse" | "read" | "support";
95
95
  }
96
+ interface ReportRepositoryPreset {
97
+ readonly path: string;
98
+ readonly status: "applied" | "held";
99
+ }
100
+ /** Configuration state that affects how a check document should be interpreted. */
101
+ interface ReportConfiguration {
102
+ readonly repositoryPreset?: ReportRepositoryPreset | undefined;
103
+ }
96
104
  type ReportStatus = "clean" | "empty" | "error" | "operational-error" | "warning";
97
105
  interface ReportFixOperation {
98
106
  readonly conflict?: string | undefined;
@@ -111,6 +119,7 @@ interface ReportFix {
111
119
  }
112
120
  interface CheckReportV1 {
113
121
  readonly apps: readonly ReportApp[];
122
+ readonly configuration?: ReportConfiguration | undefined;
114
123
  readonly diagnostics: readonly ReportDiagnostic[];
115
124
  readonly findings: readonly ReportFinding[];
116
125
  readonly fixes?: readonly ReportFix[] | undefined;
@@ -122,6 +131,7 @@ interface CheckReportV1 {
122
131
  }
123
132
  type CheckReport = CheckReportV1;
124
133
  interface CheckExplanationV1 {
134
+ readonly configuration?: ReportConfiguration | undefined;
125
135
  readonly enabled: boolean;
126
136
  readonly explain: string;
127
137
  readonly fixability: Fixability;
@@ -149,4 +159,4 @@ type CheckExplanation = CheckExplanationV1;
149
159
  declare function runCli(distro: CliDistro, runtime?: CliRuntime): Promise<CliExitCode>;
150
160
  declare function createHttpTelemetrySink(options: HttpTelemetrySinkOptions): TelemetrySink$1;
151
161
  //#endregion
152
- export { type CheckCounts, type CheckExplanation, type CheckExplanationV1, type CheckReport, type CheckReportV1, type CheckSummary, type CliBranding, type CliDistro, type CliExitCode, type CliRegistryOptions, type CliRuntime, type HttpTelemetryDeliveryFailure, type HttpTelemetrySinkOptions, type PassedCheck, type ReportApp, type ReportDiagnostic, type ReportFinding, type ReportFix, type ReportFixOperation, type ReportStatus, type TelemetryEvent, type TelemetrySink, createHttpTelemetrySink, runCli };
162
+ export { type CheckCounts, type CheckExplanation, type CheckExplanationV1, type CheckReport, type CheckReportV1, type CheckSummary, type CliBranding, type CliDistro, type CliExitCode, type CliRegistryOptions, type CliRuntime, type HttpTelemetryDeliveryFailure, type HttpTelemetrySinkOptions, type PassedCheck, type ReportApp, type ReportConfiguration, type ReportDiagnostic, type ReportFinding, type ReportFix, type ReportFixOperation, type ReportRepositoryPreset, type ReportStatus, type TelemetryEvent, type TelemetrySink, createHttpTelemetrySink, runCli };
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import { i as vetHttpUrl, n as clampHttpTimeout, r as failureReason, t as runCli } from "./run-pMPxJqFQ.js";
2
- //#region ../core/src/http-post.ts
1
+ import { i as vetHttpUrl, n as clampHttpTimeout, r as failureReason, t as runCli } from "./run.boundary-BtMqQAEQ.js";
2
+ //#region ../core/src/http-post.boundary.ts
3
3
  /**
4
4
  * Creates a bounded, TLS-only JSON POST that never rejects.
5
5
  *
@@ -1,4 +1,4 @@
1
- import { i as CliRegistryOptions } from "../types-DmBu6g0d.js";
1
+ import { i as CliRegistryOptions } from "../types--E7zqKfw.js";
2
2
  import { AuraPlugin } from "@tryaura/aura-sdk";
3
3
  //#region src/plugins.d.ts
4
4
  declare const checksCorePlugin: AuraPlugin;
@@ -1,2 +1,2 @@
1
- import { a as codexPlugin, i as claudeCodePlugin, n as OFFICIAL_REGISTRY_OPTIONS, o as cursorPlugin, r as checksCorePlugin, s as officialContentPlugin, t as OFFICIAL_PLUGINS } from "../plugins-n3DS8XXi.js";
1
+ import { a as codexPlugin, i as claudeCodePlugin, n as OFFICIAL_REGISTRY_OPTIONS, o as cursorPlugin, r as checksCorePlugin, s as officialContentPlugin, t as OFFICIAL_PLUGINS } from "../plugins-SZegBVXF.js";
2
2
  export { OFFICIAL_PLUGINS, OFFICIAL_REGISTRY_OPTIONS, checksCorePlugin, claudeCodePlugin, codexPlugin, cursorPlugin, officialContentPlugin };