@kyo-so/cli 0.16.8 → 0.16.10

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.
@@ -1,5 +1,9 @@
1
- export declare const CURRENT_SKILL_DIGEST = "sha256:1ea8914f4657741fcd544822326f80e82033078f8e2b11b1f5aad420072dcb39";
1
+ export declare const CURRENT_SKILL_DIGEST = "sha256:3e11ba3cb7998c631d17d772f8f3493a9bbb7822db08cc5d67751a56b35c34f4";
2
2
  export declare const KNOWN_SKILL_DIGESTS_BY_VERSION: {
3
+ readonly "0.16.9": readonly [{
4
+ readonly digest: "sha256:1ea8914f4657741fcd544822326f80e82033078f8e2b11b1f5aad420072dcb39";
5
+ readonly kind: "historical";
6
+ }];
3
7
  readonly "0.15.2": readonly [{
4
8
  readonly digest: "sha256:d28acaadf490df9e58e12f195804f181a683d0d33344275d7989efbee26a4504";
5
9
  readonly kind: "historical";
@@ -9,3 +9,10 @@ export type ManualMcpInvocationInspection = {
9
9
  reason: string;
10
10
  };
11
11
  export declare function inspectManualMcpInvocation(value: unknown): ManualMcpInvocationInspection;
12
+ /**
13
+ * Whether an inspected package spec carries the alias. Only a package runner
14
+ * launched from a checkout whose own package name is `@kyo-so/cli` can resolve
15
+ * that workspace instead of the published package, so an unaliased spec is
16
+ * reported rather than repaired.
17
+ */
18
+ export declare function packageSpecCarriesAlias(packageSpec: string | undefined): boolean;
@@ -1,4 +1,7 @@
1
1
  export declare const KYOSO_PACKAGE_NAME = "@kyo-so/cli";
2
+ export declare const KYOSO_PACKAGE_ALIAS = "kyoso-cli";
3
+ /** Prefix of an aliased specifier, so callers never rebuild `@npm:` themselves. */
4
+ export declare const KYOSO_PACKAGE_ALIAS_PREFIX = "kyoso-cli@npm:";
2
5
  export declare const KYOSO_EXECUTABLE_NAME = "kyoso";
3
6
  export type KyosoPackageRunner = "npx" | "bunx";
4
7
  export type KyosoPackageCommand = {
@@ -10,9 +10,9 @@ export declare const PLUGIN_RUNTIME_COMPATIBILITY_SCHEMA_VERSION = 2;
10
10
  export declare const MINIMUM_SUPPORTED_CODEX_VERSION = "0.144.0-alpha.4";
11
11
  export declare const PLUGIN_RUNTIME_EXPECTED_CONTRACT: {
12
12
  readonly distribution: {
13
- readonly pluginVersion: "0.7.15";
13
+ readonly pluginVersion: "0.7.18";
14
14
  readonly mcpCommand: "npx";
15
- readonly mcpPackagePin: "@kyo-so/cli@0.16.7";
15
+ readonly mcpPackagePin: "@kyo-so/cli@0.16.9";
16
16
  readonly mcpExecutable: "kyoso";
17
17
  };
18
18
  readonly marketplace: {
@@ -131,9 +131,9 @@ export declare const pluginRuntimeContract: {
131
131
  readonly pluginListTopLevelKeys: readonly ["installed", "available"];
132
132
  readonly expectedContract: {
133
133
  readonly distribution: {
134
- readonly pluginVersion: "0.7.15";
134
+ readonly pluginVersion: "0.7.18";
135
135
  readonly mcpCommand: "npx";
136
- readonly mcpPackagePin: "@kyo-so/cli@0.16.7";
136
+ readonly mcpPackagePin: "@kyo-so/cli@0.16.9";
137
137
  readonly mcpExecutable: "kyoso";
138
138
  };
139
139
  readonly marketplace: {
@@ -7,4 +7,4 @@ export declare const JUDGE_MAX_OUTPUT_TOKENS = 4096;
7
7
  export declare const RAW_OUTPUT_MAX_CHARS = 16384;
8
8
  export declare const TRACE_DIR = ".kyoso/traces";
9
9
  export declare const KYOSO_CHILD_AGENT = "KYOSO_CHILD_AGENT";
10
- export declare const KYOSO_VERSION = "0.16.8";
10
+ export declare const KYOSO_VERSION = "0.16.10";