@kybernesis/create 0.1.1 → 0.1.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.
package/dist/util.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare const EVE_VERSION = "0.29.5";
1
+ export declare const EVE_VERSION = "0.30.8";
2
2
  export declare const REGISTRY_URL = "https://registry.kybernesis.ai/r/{name}.json";
3
3
  export declare const DEFAULT_ISSUER = "https://agent.kybernesis.ai";
4
4
  export declare const green: (s: string) => string;
package/dist/util.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { spawnSync } from "node:child_process";
2
2
  import { createInterface } from "node:readline/promises";
3
- export const EVE_VERSION = "0.29.5";
3
+ export const EVE_VERSION = "0.30.8";
4
4
  export const REGISTRY_URL = "https://registry.kybernesis.ai/r/{name}.json";
5
5
  export const DEFAULT_ISSUER = "https://agent.kybernesis.ai";
6
6
  const TTY = process.stdout.isTTY === true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kybernesis/create",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "The Kybernesis agent scaffolder and FDE toolkit: one command to a governed, remembering, multiplayer, self-testing eve agent — plus doctor and upgrade.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -10,9 +10,21 @@
10
10
  "url": "https://github.com/KybernesisAI/platform.git",
11
11
  "directory": "packages/create"
12
12
  },
13
- "keywords": ["eve", "kybernesis", "cli", "scaffold", "agent", "create"],
14
- "files": ["dist", "NOTICE"],
15
- "bin": { "kyb": "./dist/cli.js" },
13
+ "keywords": [
14
+ "eve",
15
+ "kybernesis",
16
+ "cli",
17
+ "scaffold",
18
+ "agent",
19
+ "create"
20
+ ],
21
+ "files": [
22
+ "dist",
23
+ "NOTICE"
24
+ ],
25
+ "bin": {
26
+ "kyb": "./dist/cli.js"
27
+ },
16
28
  "exports": {
17
29
  "./package.json": "./package.json"
18
30
  },
@@ -25,5 +37,7 @@
25
37
  "@types/node": "24.x",
26
38
  "typescript": "7.0.2"
27
39
  },
28
- "engines": { "node": ">=20" }
40
+ "engines": {
41
+ "node": ">=20"
42
+ }
29
43
  }