@vxnus/siduri 2.0.15 → 2.0.17

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.
@@ -5,7 +5,7 @@ exports.BUILTIN_ORGAN_MANIFESTS = [
5
5
  {
6
6
  name: '@siduri-x/self',
7
7
  organType: 'behavior',
8
- version: '2.0.3',
8
+ version: '2.0.4',
9
9
  displayName: 'Self & Persona (Identity & Directives)',
10
10
  description: 'Autonomous persona compiler, relational stances, and .self asset loader',
11
11
  entrypoint: './dist/index.js',
@@ -79,7 +79,7 @@ exports.BUILTIN_ORGAN_MANIFESTS = [
79
79
  {
80
80
  name: '@siduri-x/brain',
81
81
  organType: 'brain',
82
- version: '2.0.2',
82
+ version: '2.0.3',
83
83
  displayName: 'Brain (Cognition & Planning)',
84
84
  description: 'Provider-neutral LLM reasoning, response planning, and proposal generation',
85
85
  entrypoint: './dist/index.js',
@@ -298,7 +298,7 @@ exports.BUILTIN_ORGAN_MANIFESTS = [
298
298
  {
299
299
  name: '@siduri-x/memory',
300
300
  organType: 'memory',
301
- version: '2.0.3',
301
+ version: '2.0.4',
302
302
  displayName: 'Memory (Long-term Recall & State)',
303
303
  description: 'Relational semantic claims with Full-Text Search (FTS5) and companion isolation',
304
304
  entrypoint: './dist/index.js',
@@ -17,5 +17,6 @@ export interface InstanceGeneratorOptions {
17
17
  selectedManifests: OrganManifest[];
18
18
  organConfigs?: Record<string, any>;
19
19
  coreVersion?: string;
20
+ cliVersion?: string;
20
21
  }
21
22
  export declare function generateInstanceFiles(options: InstanceGeneratorOptions): GeneratedInstanceFiles;
package/dist/generator.js CHANGED
@@ -75,7 +75,8 @@ function generateInstanceFiles(options) {
75
75
  const instanceName = options.name || 'my-siduri';
76
76
  const companionSlug = instanceName.toLowerCase().replace(/[^a-z0-9_-]/g, '') || 'default';
77
77
  const instanceId = options.id || 'default';
78
- const coreVersion = options.coreVersion || '^2.0.5';
78
+ const coreVersion = options.coreVersion || '^2.0.6';
79
+ const cliVersion = options.cliVersion || '^2.0.17';
79
80
  const manifests = options.selectedManifests;
80
81
  const hasMemory = manifests.some((m) => m.organType === 'memory');
81
82
  const hasVoice = manifests.some((m) => m.organType === 'voice');
@@ -98,7 +99,7 @@ function generateInstanceFiles(options) {
98
99
  db: 'siduri db',
99
100
  };
100
101
  const devDependencies = {
101
- '@vxnus/siduri': coreVersion,
102
+ '@vxnus/siduri': cliVersion,
102
103
  };
103
104
  const packageJsonObj = {
104
105
  name: instanceName.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-+|-+$/g, '') || 'my-siduri',
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import { OrganManifest } from './manifest';
3
- export declare const CLI_VERSION = "2.0.15";
3
+ export declare const CLI_VERSION = "2.0.17";
4
4
  import { colors } from './colors';
5
5
  export { colors };
6
6
  export declare function printHeader(): void;
package/dist/index.js CHANGED
@@ -26,7 +26,7 @@ const doctor_1 = require("./doctor");
26
26
  const db_1 = require("./db");
27
27
  const configurators_1 = require("./configurators");
28
28
  const execFile = (0, node_util_1.promisify)(node_child_process_1.execFile);
29
- exports.CLI_VERSION = '2.0.15';
29
+ exports.CLI_VERSION = '2.0.17';
30
30
  const colors_1 = require("./colors");
31
31
  Object.defineProperty(exports, "colors", { enumerable: true, get: function () { return colors_1.colors; } });
32
32
  function printHeader() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vxnus/siduri",
3
- "version": "2.0.15",
3
+ "version": "2.0.17",
4
4
  "description": "Experimental CLI for installing and configuring Siduri companions",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {