@vxnus/siduri 0.0.8 → 0.0.9

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.
Files changed (61) hide show
  1. package/README.md +11 -1
  2. package/dist/builtin-manifests.js +12 -12
  3. package/dist/clean-machine-e2e.test.js +12 -12
  4. package/dist/doctor-db.test.js +9 -3
  5. package/dist/generator.d.ts +2 -0
  6. package/dist/generator.js +289 -33
  7. package/dist/generator.test.js +20 -1
  8. package/dist/index.d.ts +1 -1
  9. package/dist/index.js +31 -3
  10. package/dist/release-check.js +12 -12
  11. package/dist/web-dist/404/index.html +1 -0
  12. package/dist/web-dist/404.html +1 -0
  13. package/dist/web-dist/__next.__PAGE__.txt +34 -0
  14. package/dist/web-dist/__next._full.txt +27 -0
  15. package/dist/web-dist/__next._tree.txt +3 -0
  16. package/dist/web-dist/_next/static/_zOqKpMPc6RDqk04fUScI/_buildManifest.js +11 -0
  17. package/dist/web-dist/_next/static/_zOqKpMPc6RDqk04fUScI/_clientMiddlewareManifest.js +1 -0
  18. package/dist/web-dist/_next/static/_zOqKpMPc6RDqk04fUScI/_ssgManifest.js +1 -0
  19. package/dist/web-dist/_next/static/chunks/0cz1d0mv5g_q7.js +1 -0
  20. package/dist/web-dist/_next/static/chunks/0uwih7sydv413.js +1 -0
  21. package/dist/web-dist/_next/static/chunks/1_yae15ffa5f6.js +1 -0
  22. package/dist/web-dist/_next/static/chunks/1hz3jco387c-k.js +1 -0
  23. package/dist/web-dist/_next/static/chunks/2bu5_paf4sm3x.css +1 -0
  24. package/dist/web-dist/_next/static/chunks/2kcqevsmv6kh2.js +31 -0
  25. package/dist/web-dist/_next/static/chunks/2s3d1bfr0l4b0.js +1 -0
  26. package/dist/web-dist/_next/static/chunks/32z87id9k6i2z.js +22 -0
  27. package/dist/web-dist/_next/static/chunks/39nefv-hczfy7.js +30 -0
  28. package/dist/web-dist/_next/static/chunks/3bx2gs3idjmo1.js +1 -0
  29. package/dist/web-dist/_next/static/chunks/turbopack-3eipe4c-imn5l.js +1 -0
  30. package/dist/web-dist/_next/static/media/favicon.2vob68tjqpejf.ico +0 -0
  31. package/dist/web-dist/_not-found/__next._full.txt +17 -0
  32. package/dist/web-dist/_not-found/__next._not-found.__PAGE__.txt +23 -0
  33. package/dist/web-dist/_not-found/__next._tree.txt +3 -0
  34. package/dist/web-dist/_not-found/index.html +1 -0
  35. package/dist/web-dist/_not-found/index.txt +17 -0
  36. package/dist/web-dist/chat/__next._full.txt +18 -0
  37. package/dist/web-dist/chat/__next._tree.txt +3 -0
  38. package/dist/web-dist/chat/__next.chat.__PAGE__.txt +24 -0
  39. package/dist/web-dist/chat/index.html +1 -0
  40. package/dist/web-dist/chat/index.txt +18 -0
  41. package/dist/web-dist/favicon.ico +0 -0
  42. package/dist/web-dist/index.html +1 -0
  43. package/dist/web-dist/index.txt +27 -0
  44. package/dist/web-dist/live2d/akaituno/akaituno.8192/texture_00.png +0 -0
  45. package/dist/web-dist/live2d/akaituno/akaituno.cdi3.json +296 -0
  46. package/dist/web-dist/live2d/akaituno/akaituno.moc3 +0 -0
  47. package/dist/web-dist/live2d/akaituno/akaituno.model3.json +42 -0
  48. package/dist/web-dist/live2d/akaituno/akaituno.physics3.json +839 -0
  49. package/dist/web-dist/live2d/akaituno/eye_color.exp3.json +12 -0
  50. package/dist/web-dist/live2d/akaituno/eyes_zetubou.exp3.json +12 -0
  51. package/dist/web-dist/live2d/akaituno/face_aozame.exp3.json +12 -0
  52. package/dist/web-dist/live2d/akaituno/hair_open.exp3.json +12 -0
  53. package/dist/web-dist/live2d/live2dcubismcore.min.js +9 -0
  54. package/dist/web-dist/operator/__next._full.txt +18 -0
  55. package/dist/web-dist/operator/__next._tree.txt +3 -0
  56. package/dist/web-dist/operator/__next.operator.__PAGE__.txt +24 -0
  57. package/dist/web-dist/operator/index.html +1 -0
  58. package/dist/web-dist/operator/index.txt +18 -0
  59. package/dist/web-template.d.ts +2 -0
  60. package/dist/web-template.js +547 -0
  61. package/package.json +7 -7
package/dist/index.js CHANGED
@@ -15,6 +15,7 @@ exports.runCreateWizard = runCreateWizard;
15
15
  exports.runCliDoctor = runCliDoctor;
16
16
  exports.runCliDb = runCliDb;
17
17
  const node_child_process_1 = require("node:child_process");
18
+ const node_fs_1 = __importDefault(require("node:fs"));
18
19
  const promises_1 = require("node:fs/promises");
19
20
  const node_path_1 = __importDefault(require("node:path"));
20
21
  const node_util_1 = require("node:util");
@@ -25,7 +26,7 @@ const doctor_1 = require("./doctor");
25
26
  const db_1 = require("./db");
26
27
  const configurators_1 = require("./configurators");
27
28
  const execFile = (0, node_util_1.promisify)(node_child_process_1.execFile);
28
- exports.CLI_VERSION = '0.0.8';
29
+ exports.CLI_VERSION = '0.0.9';
29
30
  exports.colors = {
30
31
  cyan: '\u001b[36m',
31
32
  dim: '\u001b[2m',
@@ -218,12 +219,31 @@ async function runCreateWizard(targetDir) {
218
219
  });
219
220
  await (0, promises_1.mkdir)(projectDir, { recursive: true });
220
221
  await (0, promises_1.mkdir)(node_path_1.default.join(projectDir, 'src'), { recursive: true });
222
+ const publicDir = node_path_1.default.join(projectDir, 'public');
223
+ await (0, promises_1.mkdir)(publicDir, { recursive: true });
221
224
  await (0, promises_1.writeFile)(node_path_1.default.join(projectDir, 'package.json'), files['package.json'], 'utf8');
222
225
  await (0, promises_1.writeFile)(node_path_1.default.join(projectDir, 'siduri.config.json'), files['siduri.config.json'], 'utf8');
223
226
  await (0, promises_1.writeFile)(node_path_1.default.join(projectDir, 'siduri.schema.json'), files['siduri.schema.json'], 'utf8');
224
227
  await (0, promises_1.writeFile)(node_path_1.default.join(projectDir, '.env.example'), files['.env.example'], 'utf8');
225
228
  await (0, promises_1.writeFile)(node_path_1.default.join(projectDir, 'README.md'), files['README.md'], 'utf8');
226
229
  await (0, promises_1.writeFile)(node_path_1.default.join(projectDir, 'src/index.js'), files['src/index.js'], 'utf8');
230
+ // Copy full Next.js apps/web production build if present
231
+ const webDistCandidates = [
232
+ node_path_1.default.resolve(__dirname, 'web-dist'),
233
+ node_path_1.default.resolve(__dirname, '../dist/web-dist'),
234
+ node_path_1.default.resolve(__dirname, '../../apps/web/out'),
235
+ node_path_1.default.resolve(process.cwd(), 'apps/web/out'),
236
+ ];
237
+ const foundWebDist = webDistCandidates.find((p) => node_fs_1.default.existsSync(p));
238
+ if (foundWebDist) {
239
+ node_fs_1.default.cpSync(foundWebDist, publicDir, { recursive: true });
240
+ }
241
+ else {
242
+ await (0, promises_1.writeFile)(node_path_1.default.join(publicDir, 'index.html'), files['public/index.html'], 'utf8');
243
+ }
244
+ if (files['docker-compose.yml']) {
245
+ await (0, promises_1.writeFile)(node_path_1.default.join(projectDir, 'docker-compose.yml'), files['docker-compose.yml'], 'utf8');
246
+ }
227
247
  if (files.createAssetsBodyDir) {
228
248
  await (0, promises_1.mkdir)(node_path_1.default.join(projectDir, 'assets/body/model'), { recursive: true });
229
249
  }
@@ -241,8 +261,16 @@ async function runCreateWizard(targetDir) {
241
261
  printSection('Instance Ready');
242
262
  console.log(`Your Siduri companion is ready! Next steps:\n`);
243
263
  console.log(` cd ${node_path_1.default.relative(process.cwd(), projectDir) || '.'}`);
244
- console.log(` cp .env.example .env ${exports.colors.dim}# Fill in required API keys/credentials${exports.colors.reset}`);
245
- console.log(` npm start ${exports.colors.dim}# Start your standalone companion${exports.colors.reset}\n`);
264
+ console.log(` cp .env.example .env ${exports.colors.dim}# Fill in required API keys/credentials${exports.colors.reset}`);
265
+ if (files['docker-compose.yml']) {
266
+ console.log(` npm run services:up ${exports.colors.dim}# Start local Docker services (PostgreSQL / VOICEVOX)${exports.colors.reset}`);
267
+ }
268
+ const hasMemory = selectedManifests.some((m) => m.organType === 'memory');
269
+ if (hasMemory) {
270
+ console.log(` npx @vxnus/siduri db push ${exports.colors.dim}# Push PostgreSQL memory schema${exports.colors.reset}`);
271
+ }
272
+ console.log(` npm run doctor ${exports.colors.dim}# Run diagnostic health probes${exports.colors.reset}`);
273
+ console.log(` npm start ${exports.colors.dim}# Start Web Companion & Memory Console at http://localhost:3000${exports.colors.reset}\n`);
246
274
  }
247
275
  async function runCliDoctor(targetDir) {
248
276
  printHeader();
@@ -17,18 +17,18 @@ function runReleaseCheck(repoRoot = node_path_1.default.resolve(__dirname, '../.
17
17
  node_fs_1.default.rmSync(tempPackDir, { recursive: true, force: true });
18
18
  node_fs_1.default.mkdirSync(tempPackDir, { recursive: true });
19
19
  const canonicalPackages = [
20
- { name: '@siduri-x/core', dir: 'packages/core', isOrgan: false, tarName: 'siduri-x-core-1.0.0.tgz' },
21
- { name: '@siduri-x/brain', dir: 'packages/organs/brain', isOrgan: true, tarName: 'siduri-x-brain-1.0.0.tgz' },
22
- { name: '@siduri-x/memory', dir: 'packages/organs/memory', isOrgan: true, tarName: 'siduri-x-memory-1.0.0.tgz' },
23
- { name: '@siduri-x/knowledge', dir: 'packages/organs/knowledge', isOrgan: true, tarName: 'siduri-x-knowledge-1.0.0.tgz' },
24
- { name: '@siduri-x/behavior', dir: 'packages/organs/behavior', isOrgan: true, tarName: 'siduri-x-behavior-1.0.0.tgz' },
25
- { name: '@siduri-x/ear', dir: 'packages/organs/ear', isOrgan: true, tarName: 'siduri-x-ear-1.0.0.tgz' },
26
- { name: '@siduri-x/vision', dir: 'packages/organs/vision', isOrgan: true, tarName: 'siduri-x-vision-1.0.0.tgz' },
27
- { name: '@siduri-x/hands', dir: 'packages/organs/hands', isOrgan: true, tarName: 'siduri-x-hands-1.0.0.tgz' },
28
- { name: '@siduri-x/body', dir: 'packages/organs/body', isOrgan: true, tarName: 'siduri-x-body-1.0.0.tgz' },
29
- { name: '@siduri-x/voice', dir: 'packages/organs/voice', isOrgan: true, tarName: 'siduri-x-voice-1.0.0.tgz' },
30
- { name: '@siduri-x/observation', dir: 'packages/organs/observation', isOrgan: true, tarName: 'siduri-x-observation-1.0.0.tgz' },
31
- { name: '@vxnus/siduri', dir: 'cli', isOrgan: false, tarName: 'vxnus-siduri-0.0.8.tgz' },
20
+ { name: '@siduri-x/core', dir: 'packages/core', isOrgan: false, tarName: 'siduri-x-core-1.0.1.tgz' },
21
+ { name: '@siduri-x/brain', dir: 'packages/organs/brain', isOrgan: true, tarName: 'siduri-x-brain-1.0.1.tgz' },
22
+ { name: '@siduri-x/memory', dir: 'packages/organs/memory', isOrgan: true, tarName: 'siduri-x-memory-1.0.1.tgz' },
23
+ { name: '@siduri-x/knowledge', dir: 'packages/organs/knowledge', isOrgan: true, tarName: 'siduri-x-knowledge-1.0.1.tgz' },
24
+ { name: '@siduri-x/behavior', dir: 'packages/organs/behavior', isOrgan: true, tarName: 'siduri-x-behavior-1.0.1.tgz' },
25
+ { name: '@siduri-x/ear', dir: 'packages/organs/ear', isOrgan: true, tarName: 'siduri-x-ear-1.0.1.tgz' },
26
+ { name: '@siduri-x/vision', dir: 'packages/organs/vision', isOrgan: true, tarName: 'siduri-x-vision-1.0.1.tgz' },
27
+ { name: '@siduri-x/hands', dir: 'packages/organs/hands', isOrgan: true, tarName: 'siduri-x-hands-1.0.1.tgz' },
28
+ { name: '@siduri-x/body', dir: 'packages/organs/body', isOrgan: true, tarName: 'siduri-x-body-1.0.1.tgz' },
29
+ { name: '@siduri-x/voice', dir: 'packages/organs/voice', isOrgan: true, tarName: 'siduri-x-voice-1.0.1.tgz' },
30
+ { name: '@siduri-x/observation', dir: 'packages/organs/observation', isOrgan: true, tarName: 'siduri-x-observation-1.0.1.tgz' },
31
+ { name: '@vxnus/siduri', dir: 'cli', isOrgan: false, tarName: 'vxnus-siduri-0.0.9.tgz' },
32
32
  ];
33
33
  let packagesChecked = 0;
34
34
  let tarballsInspected = 0;
@@ -0,0 +1 @@
1
+ <!DOCTYPE html><html lang="en" class="h-full antialiased dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/2bu5_paf4sm3x.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/2kcqevsmv6kh2.js"/><script src="/_next/static/chunks/1_yae15ffa5f6.js" async=""></script><script src="/_next/static/chunks/3bx2gs3idjmo1.js" async=""></script><script src="/_next/static/chunks/32z87id9k6i2z.js" async=""></script><script src="/_next/static/chunks/turbopack-3eipe4c-imn5l.js" async=""></script><script src="/_next/static/chunks/0uwih7sydv413.js" async="" crossorigin=""></script><link rel="preload" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&amp;family=Noto+Sans+JP:wght@400;500;700&amp;family=Noto+Serif+JP:wght@400;500;700&amp;display=swap" as="style"/><meta name="robots" content="noindex"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><title>404: This page could not be found.</title><title>Siduri — Local-First Companion</title><meta name="description" content="Siduri — a local-first companion with explicit memory, grounded knowledge, and optional presence."/><link rel="icon" href="/favicon.ico?favicon.2vob68tjqpejf.ico" sizes="256x256" type="image/x-icon"/><link rel="icon" href="/favicon.ico"/><link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&amp;family=Noto+Sans+JP:wght@400;500;700&amp;family=Noto+Serif+JP:wght@400;500;700&amp;display=swap" rel="stylesheet"/><script src="/_next/static/chunks/0cz1d0mv5g_q7.js" noModule=""></script></head><body class="min-h-full flex flex-col bg-[#0b0b0e] text-[#eee8df] selection:bg-[#d99a68]/30 selection:text-[#f4c28d]"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/2kcqevsmv6kh2.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[81869,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"default\"]\n3:I[57830,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"default\"]\n4:I[44101,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n8:I[44101,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"ViewportBoundary\"]\na:I[44101,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"MetadataBoundary\"]\nc:I[4626,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"default\",1]\n:HL[\"/_next/static/chunks/2bu5_paf4sm3x.css\",\"style\"]\n:HL[\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500\u0026family=Noto+Sans+JP:wght@400;500;700\u0026family=Noto+Serif+JP:wght@400;500;700\u0026display=swap\",\"style\"]\n7:X\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_not-found\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{},\"$undefined\",\"$undefined\",4608]},\"$undefined\",\"$undefined\",4608]},\"$undefined\",\"$undefined\",4624],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/2bu5_paf4sm3x.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0uwih7sydv413.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"h-full antialiased dark\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"link\",null,{\"rel\":\"preconnect\",\"href\":\"https://fonts.googleapis.com\"}],[\"$\",\"link\",null,{\"rel\":\"preconnect\",\"href\":\"https://fonts.gstatic.com\",\"crossOrigin\":\"anonymous\"}],[\"$\",\"link\",null,{\"href\":\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500\u0026family=Noto+Sans+JP:wght@400;500;700\u0026family=Noto+Serif+JP:wght@400;500;700\u0026display=swap\",\"rel\":\"stylesheet\"}]]}],[\"$\",\"body\",null,{\"className\":\"min-h-full flex flex-col bg-[#0b0b0e] text-[#eee8df] selection:bg-[#d99a68]/30 selection:text-[#f4c28d]\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,null]},null,false,\"$7\"]},null,false,null],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/2bu5_paf4sm3x.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"S\":true,\"h\":null,\"r\":\"$undefined\",\"s\":\"$undefined\",\"a\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"_zOqKpMPc6RDqk04fUScI\"}\n"])</script><script>self.__next_f.push([1,"7:C\n9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"d:I[89236,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"IconMark\"]\n6:null\nb:[[\"$\",\"title\",\"0\",{\"children\":\"Siduri — Local-First Companion\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Siduri — a local-first companion with explicit memory, grounded knowledge, and optional presence.\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.2vob68tjqpejf.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"link\",\"3\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\"}],[\"$\",\"$Ld\",\"4\",{}]]\n"])</script></body></html>
@@ -0,0 +1 @@
1
+ <!DOCTYPE html><html lang="en" class="h-full antialiased dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/2bu5_paf4sm3x.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/2kcqevsmv6kh2.js"/><script src="/_next/static/chunks/1_yae15ffa5f6.js" async=""></script><script src="/_next/static/chunks/3bx2gs3idjmo1.js" async=""></script><script src="/_next/static/chunks/32z87id9k6i2z.js" async=""></script><script src="/_next/static/chunks/turbopack-3eipe4c-imn5l.js" async=""></script><script src="/_next/static/chunks/0uwih7sydv413.js" async="" crossorigin=""></script><link rel="preload" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&amp;family=Noto+Sans+JP:wght@400;500;700&amp;family=Noto+Serif+JP:wght@400;500;700&amp;display=swap" as="style"/><meta name="robots" content="noindex"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><title>404: This page could not be found.</title><title>Siduri — Local-First Companion</title><meta name="description" content="Siduri — a local-first companion with explicit memory, grounded knowledge, and optional presence."/><link rel="icon" href="/favicon.ico?favicon.2vob68tjqpejf.ico" sizes="256x256" type="image/x-icon"/><link rel="icon" href="/favicon.ico"/><link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&amp;family=Noto+Sans+JP:wght@400;500;700&amp;family=Noto+Serif+JP:wght@400;500;700&amp;display=swap" rel="stylesheet"/><script src="/_next/static/chunks/0cz1d0mv5g_q7.js" noModule=""></script></head><body class="min-h-full flex flex-col bg-[#0b0b0e] text-[#eee8df] selection:bg-[#d99a68]/30 selection:text-[#f4c28d]"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/2kcqevsmv6kh2.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[81869,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"default\"]\n3:I[57830,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"default\"]\n4:I[44101,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n8:I[44101,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"ViewportBoundary\"]\na:I[44101,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"MetadataBoundary\"]\nc:I[4626,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"default\",1]\n:HL[\"/_next/static/chunks/2bu5_paf4sm3x.css\",\"style\"]\n:HL[\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500\u0026family=Noto+Sans+JP:wght@400;500;700\u0026family=Noto+Serif+JP:wght@400;500;700\u0026display=swap\",\"style\"]\n7:X\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_not-found\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{},\"$undefined\",\"$undefined\",4608]},\"$undefined\",\"$undefined\",4608]},\"$undefined\",\"$undefined\",4624],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/2bu5_paf4sm3x.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0uwih7sydv413.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"h-full antialiased dark\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"link\",null,{\"rel\":\"preconnect\",\"href\":\"https://fonts.googleapis.com\"}],[\"$\",\"link\",null,{\"rel\":\"preconnect\",\"href\":\"https://fonts.gstatic.com\",\"crossOrigin\":\"anonymous\"}],[\"$\",\"link\",null,{\"href\":\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500\u0026family=Noto+Sans+JP:wght@400;500;700\u0026family=Noto+Serif+JP:wght@400;500;700\u0026display=swap\",\"rel\":\"stylesheet\"}]]}],[\"$\",\"body\",null,{\"className\":\"min-h-full flex flex-col bg-[#0b0b0e] text-[#eee8df] selection:bg-[#d99a68]/30 selection:text-[#f4c28d]\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,null]},null,false,\"$7\"]},null,false,null],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/2bu5_paf4sm3x.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"S\":true,\"h\":null,\"r\":\"$undefined\",\"s\":\"$undefined\",\"a\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"_zOqKpMPc6RDqk04fUScI\"}\n"])</script><script>self.__next_f.push([1,"7:C\n9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"d:I[89236,[\"/_next/static/chunks/0uwih7sydv413.js\"],\"IconMark\"]\n6:null\nb:[[\"$\",\"title\",\"0\",{\"children\":\"Siduri — Local-First Companion\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Siduri — a local-first companion with explicit memory, grounded knowledge, and optional presence.\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.2vob68tjqpejf.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"link\",\"3\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\"}],[\"$\",\"$Ld\",\"4\",{}]]\n"])</script></body></html>
@@ -0,0 +1,34 @@
1
+ 1:"$Sreact.fragment"
2
+ 2:I[80413,["/_next/static/chunks/0uwih7sydv413.js","/_next/static/chunks/2s3d1bfr0l4b0.js"],""]
3
+ e:X
4
+ 0:{"buildId":"_zOqKpMPc6RDqk04fUScI","data":[{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"home-page","children":[["$","header",null,{"className":"home-nav","children":["$","div",null,{"className":"home-container home-nav-inner","children":[["$","$L2",null,{"href":"/","className":"brand-link","aria-label":"Siduri Home","children":[["$","span",null,{"className":"siduri-glyph","children":"✦"}],["$","span",null,{"children":"SIDURI"}]]}],["$","nav",null,{"className":"nav-links","aria-label":"Main Navigation","children":[["$","$L2",null,{"href":"/chat","children":"Chat"}],["$","$L2",null,{"href":"/operator","children":"Operator Console"}]]}],["$","div",null,{"children":["$","$L2",null,{"href":"/chat","className":"nav-cta","children":["Open Chat ",["$","span",null,{"children":"→"}]]}]}]]}]}],["$","main",null,{"children":[["$","section",null,{"className":"py-24 md:py-32 border-b border-[var(--siduri-border-subtle)] relative overflow-hidden","children":["$","div",null,{"className":"home-container relative z-10","children":["$","div",null,{"className":"max-w-3xl","children":[["$","div",null,{"className":"inline-flex items-center gap-2 px-3 py-1 rounded-full border border-[var(--siduri-border-ember)] bg-[var(--siduri-tint-low)] text-[var(--siduri-ember-light)] text-[10px] font-mono tracking-widest uppercase mb-8","children":[["$","span",null,{"className":"w-1.5 h-1.5 rounded-full bg-[var(--siduri-online)] shadow-[0_0_8px_rgba(127,199,154,0.6)]"}],"Local-First Companion · Explicit Architecture"]}],["$","h1",null,{"className":"text-4xl sm:text-5xl md:text-6xl font-normal font-serif text-[var(--siduri-text-primary)] tracking-tight leading-[1.15] mb-6","children":"A companion designed to remember deliberately."}],["$","p",null,{"className":"text-base sm:text-lg text-[var(--siduri-text-secondary)] font-sans leading-relaxed mb-10 max-w-2xl font-light","children":"Local-first context, inspectable memory governance, grounded evidence, and optional visual presence — engineered with explicit boundaries between identity and presentation."}],["$","div",null,{"className":"flex flex-wrap items-center gap-4","children":[["$","$L2",null,{"href":"/chat","className":"inline-flex items-center gap-3 px-6 py-3.5 rounded-xl bg-[var(--siduri-ember)] text-[#1b1619] font-sans font-semibold text-sm tracking-wide transition-all hover:brightness-110 shadow-[0_4px_20px_rgba(217,154,104,0.2)]","children":["Launch Private Chat",["$","span",null,{"className":"font-mono text-base","children":"→"}]]}],["$","$L2",null,{"href":"/operator","className":"inline-flex items-center gap-2.5 px-6 py-3.5 rounded-xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)] text-[var(--siduri-text-primary)] font-sans font-medium text-sm transition-all hover:border-[var(--siduri-border-ember)] hover:bg-[var(--siduri-tint-low)]","children":[["$","span",null,{"children":"⌘"}],"Inspect Runtime"]}]]}]]}]}]}],["$","section",null,{"className":"py-20 md:py-28 border-b border-[var(--siduri-border-subtle)] bg-[#0e0e12]","children":["$","div",null,{"className":"home-container","children":[["$","div",null,{"className":"mb-14","children":[["$","p",null,{"className":"text-[10px] font-mono uppercase tracking-widest text-[var(--siduri-ember)] mb-2","children":"Core Principles"}],["$","h2",null,{"className":"text-2xl sm:text-3xl font-serif font-normal text-[var(--siduri-text-primary)]","children":"Governed intelligence with verifiable state."}]]}],["$","div",null,{"className":"grid grid-cols-1 md:grid-cols-2 gap-6","children":[["$","div",null,{"className":"p-8 rounded-2xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)] transition-all hover:border-[rgba(255,255,255,0.15)]","children":[["$","div",null,{"className":"w-10 h-10 rounded-xl border border-[var(--siduri-border-ember)] bg-[var(--siduri-tint-low)] text-[var(--siduri-ember)] grid place-items-center font-serif text-lg mb-6","children":"✦"}],["$","h3",null,{"className":"text-lg font-medium text-[var(--siduri-text-primary)] mb-3","children":"Explicit Memory Governance"}],"$L3"]}],"$L4","$L5","$L6"]}]]}]}],"$L7","$L8","$L9"]}],"$La"]}],["$Lb"],"$Lc"]}],"isPartial":"$@d","staleTime":"$e","varyParams":null},{"rsc":"$Lf","isPartial":"$@10","staleTime":"$e","varyParams":null},{"rsc":"$L11","isPartial":"$@12","staleTime":"$e","varyParams":null}],"isUpgradeableISRFallback":false,"a":"$@13","rootVaryParams":null,"needsRuntimeRequest":"$@14"}
5
+ 16:I[44101,["/_next/static/chunks/0uwih7sydv413.js"],"OutletBoundary"]
6
+ 17:"$Sreact.suspense"
7
+ 19:I[44101,["/_next/static/chunks/0uwih7sydv413.js"],"ViewportBoundary"]
8
+ 1a:I[44101,["/_next/static/chunks/0uwih7sydv413.js"],"MetadataBoundary"]
9
+ 1b:I[89236,["/_next/static/chunks/0uwih7sydv413.js"],"IconMark"]
10
+ 1c:I[81869,["/_next/static/chunks/0uwih7sydv413.js"],"default"]
11
+ 1d:I[57830,["/_next/static/chunks/0uwih7sydv413.js"],"default"]
12
+ :HL["/_next/static/chunks/2bu5_paf4sm3x.css","style"]
13
+ :HL["https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap","style"]
14
+ 3:["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed","children":"Memory is never silently accumulated. Facts, preferences, and behavioral directives are proposed in conversation and become permanent only upon explicit receipt approval."}]
15
+ 4:["$","div",null,{"className":"p-8 rounded-2xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)] transition-all hover:border-[rgba(255,255,255,0.15)]","children":[["$","div",null,{"className":"w-10 h-10 rounded-xl border border-emerald-500/30 bg-emerald-500/10 text-emerald-400 grid place-items-center font-mono text-sm mb-6","children":"[#]"}],["$","h3",null,{"className":"text-lg font-medium text-[var(--siduri-text-primary)] mb-3","children":"Grounded Knowledge & Citations"}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed","children":"Assertions remain tethered to source evidence. Claims carry verifiable citations with intact uncertainty indicators rather than fabricating authority."}]]}]
16
+ 5:["$","div",null,{"className":"p-8 rounded-2xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)] transition-all hover:border-[rgba(255,255,255,0.15)]","children":[["$","div",null,{"className":"w-10 h-10 rounded-xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-elevated)] text-[var(--siduri-text-primary)] grid place-items-center font-mono text-sm mb-6","children":"◈"}],["$","h3",null,{"className":"text-lg font-medium text-[var(--siduri-text-primary)] mb-3","children":"Local-First Runtime Boundaries"}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed","children":"A modular monolith with strict domain boundaries. Identity, semantic memory, observation capture, and response gating run in your environment with no external leakage."}]]}]
17
+ 6:["$","div",null,{"className":"p-8 rounded-2xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)] transition-all hover:border-[rgba(255,255,255,0.15)]","children":[["$","div",null,{"className":"w-10 h-10 rounded-xl border border-amber-500/30 bg-amber-500/10 text-amber-300 grid place-items-center font-serif text-lg mb-6","children":"S"}],["$","h3",null,{"className":"text-lg font-medium text-[var(--siduri-text-primary)] mb-3","children":"On-Demand Visual Presence"}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed","children":"Presentation is decoupled from core reasoning. Interact in pure text, or activate in-browser Live2D embodiment rendered reactively via WebGL when desired."}]]}]
18
+ 7:["$","section",null,{"className":"py-20 md:py-28 border-b border-[var(--siduri-border-subtle)]","children":["$","div",null,{"className":"home-container","children":[["$","div",null,{"className":"max-w-2xl mb-14","children":[["$","p",null,{"className":"text-[10px] font-mono uppercase tracking-widest text-[var(--siduri-ember)] mb-2","children":"Execution Pipeline"}],["$","h2",null,{"className":"text-2xl sm:text-3xl font-serif font-normal text-[var(--siduri-text-primary)] mb-4","children":"Transparent from input to experience."}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed","children":"Every user utterance flows through an inspectable pipeline enforcing strict policy gating before generating speech or avatar expressions."}]]}],["$","div",null,{"className":"p-8 md:p-10 rounded-2xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)]","children":["$","div",null,{"className":"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-5 gap-4 relative","children":[["$","div",null,{"className":"p-5 rounded-xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-elevated)] flex flex-col justify-between","children":["$","div",null,{"children":[["$","span",null,{"className":"text-[9px] font-mono text-[var(--siduri-ember)] tracking-widest block mb-2","children":"01 / INPUT"}],["$","strong",null,{"className":"text-sm font-medium text-[var(--siduri-text-primary)] block mb-1","children":"User Context"}],["$","p",null,{"className":"text-xs text-[var(--siduri-text-muted)] leading-normal","children":"Channel & role-validated interaction."}]]}]}],["$","div",null,{"className":"p-5 rounded-xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-elevated)] flex flex-col justify-between","children":["$","div",null,{"children":[["$","span",null,{"className":"text-[9px] font-mono text-[var(--siduri-ember)] tracking-widest block mb-2","children":"02 / RETRIEVAL"}],["$","strong",null,{"className":"text-sm font-medium text-[var(--siduri-text-primary)] block mb-1","children":"Active Self & Memory"}],["$","p",null,{"className":"text-xs text-[var(--siduri-text-muted)] leading-normal","children":"Approved facts, directives & evidence."}]]}]}],["$","div",null,{"className":"p-5 rounded-xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-elevated)] flex flex-col justify-between","children":["$","div",null,{"children":[["$","span",null,{"className":"text-[9px] font-mono text-[var(--siduri-ember)] tracking-widest block mb-2","children":"03 / REASONING"}],["$","strong",null,{"className":"text-sm font-medium text-[var(--siduri-text-primary)] block mb-1","children":"Structured Planning"}],["$","p",null,{"className":"text-xs text-[var(--siduri-text-muted)] leading-normal","children":"Candidate speech, proposals & actions."}]]}]}],["$","div",null,{"className":"p-5 rounded-xl border border-[var(--siduri-border-ember)] bg-[var(--siduri-tint-low)] flex flex-col justify-between","children":["$","div",null,{"children":[["$","span",null,{"className":"text-[9px] font-mono text-[var(--siduri-ember-highlight)] tracking-widest block mb-2","children":"04 / GATE"}],["$","strong",null,{"className":"text-sm font-medium text-[var(--siduri-text-primary)] block mb-1","children":"Security & Disclosure"}],["$","p",null,{"className":"text-xs text-[var(--siduri-text-secondary)] leading-normal","children":"Explicit staging & boundary approval."}]]}]}],["$","div",null,{"className":"p-5 rounded-xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-elevated)] flex flex-col justify-between","children":["$","div",null,{"children":[["$","span",null,{"className":"text-[9px] font-mono text-[var(--siduri-online)] tracking-widest block mb-2","children":"05 / OUTPUT"}],["$","strong",null,{"className":"text-sm font-medium text-[var(--siduri-text-primary)] block mb-1","children":"Experience Event"}],"$L15"]}]}]]}]}]]}]}]
19
+ 8:["$","section",null,{"className":"py-20 md:py-28 border-b border-[var(--siduri-border-subtle)] bg-[#0e0e12]","children":["$","div",null,{"className":"home-container grid grid-cols-1 lg:grid-cols-2 gap-12 items-center","children":[["$","div",null,{"children":[["$","p",null,{"className":"text-[10px] font-mono uppercase tracking-widest text-[var(--siduri-ember)] mb-2","children":"Governed State"}],["$","h2",null,{"className":"text-2xl sm:text-3xl font-serif font-normal text-[var(--siduri-text-primary)] mb-5","children":"Every memory is an auditable receipt."}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed mb-6","children":"When you share preferences or rules with Siduri, they are staged as structured candidates. You decide what enters long-term memory with explicit single-click approval."}],["$","ul",null,{"className":"space-y-3 text-xs text-[var(--siduri-text-muted)] font-mono","children":[["$","li",null,{"className":"flex items-center gap-2.5","children":[["$","span",null,{"className":"text-[var(--siduri-online)]","children":"✓"}],"Structured subject / predicate / value storage"]}],["$","li",null,{"className":"flex items-center gap-2.5","children":[["$","span",null,{"className":"text-[var(--siduri-online)]","children":"✓"}],"Full revocation and override controls"]}],["$","li",null,{"className":"flex items-center gap-2.5","children":[["$","span",null,{"className":"text-[var(--siduri-online)]","children":"✓"}],"Session-isolated candidate staging"]}]]}]]}],["$","div",null,{"className":"p-6 sm:p-8 rounded-2xl border border-[var(--siduri-border-ember)] bg-[var(--siduri-surface)] shadow-[0_10px_35px_rgba(0,0,0,0.4)]","children":[["$","div",null,{"className":"flex items-center justify-between border-b border-[var(--siduri-border-subtle)] pb-4 mb-6","children":[["$","div",null,{"className":"flex items-center gap-2.5","children":[["$","span",null,{"className":"w-2 h-2 rounded-full bg-[var(--siduri-warning)] shadow-[0_0_8px_rgba(226,179,110,0.6)]"}],["$","span",null,{"className":"text-[11px] font-mono tracking-wider text-[var(--siduri-text-primary)] uppercase","children":"Memory Proposal #prp-842"}]]}],["$","span",null,{"className":"px-2 py-0.5 rounded text-[9px] font-mono bg-amber-500/10 text-amber-400 border border-amber-500/30 uppercase","children":"Pending Review"}]]}],["$","div",null,{"className":"space-y-3.5 mb-6 text-xs font-mono","children":[["$","div",null,{"className":"flex justify-between py-1 border-b border-[rgba(255,255,255,0.04)]","children":[["$","span",null,{"className":"text-[var(--siduri-text-muted)]","children":"Subject"}],["$","span",null,{"className":"text-[var(--siduri-text-primary)]","children":"User / Preference"}]]}],["$","div",null,{"className":"flex justify-between py-1 border-b border-[rgba(255,255,255,0.04)]","children":[["$","span",null,{"className":"text-[var(--siduri-text-muted)]","children":"Directive"}],["$","span",null,{"className":"text-[var(--siduri-text-primary)] font-sans","children":"Keep technical explanations concise and evidence-grounded"}]]}],["$","div",null,{"className":"flex justify-between py-1 border-b border-[rgba(255,255,255,0.04)]","children":[["$","span",null,{"className":"text-[var(--siduri-text-muted)]","children":"Provenance"}],["$","span",null,{"className":"text-[var(--siduri-text-secondary)]","children":"Direct chat teaching"}]]}],["$","div",null,{"className":"flex justify-between py-1","children":[["$","span",null,{"className":"text-[var(--siduri-text-muted)]","children":"Sensitivity"}],["$","span",null,{"className":"text-[var(--siduri-online)]","children":"Private / Operator"}]]}]]}],["$","div",null,{"className":"flex items-center gap-3 pt-2","children":[["$","button",null,{"type":"button","className":"flex-1 py-2 rounded-lg bg-[var(--siduri-online)] text-[#16251a] text-xs font-semibold tracking-wide cursor-default transition-all","children":"Approve Receipt"}],["$","button",null,{"type":"button","className":"flex-1 py-2 rounded-lg border border-[var(--siduri-border-subtle)] bg-[var(--siduri-elevated)] text-[var(--siduri-text-muted)] text-xs font-medium cursor-default","children":"Reject"}]]}]]}]]}]}]
20
+ 9:["$","section",null,{"className":"py-20 md:py-28 border-b border-[var(--siduri-border-subtle)]","children":["$","div",null,{"className":"home-container text-center max-w-2xl mx-auto","children":[["$","div",null,{"className":"inline-grid w-14 h-14 place-items-center rounded-2xl border border-[var(--siduri-border-ember)] bg-[var(--siduri-tint-low)] text-[var(--siduri-ember-highlight)] font-serif text-2xl mb-6 mx-auto shadow-[0_0_30px_rgba(217,154,104,0.15)]","children":"✦"}],["$","p",null,{"className":"text-[10px] font-mono uppercase tracking-widest text-[var(--siduri-ember)] mb-2","children":"Embodied Experience"}],["$","h2",null,{"className":"text-3xl sm:text-4xl font-serif font-normal text-[var(--siduri-text-primary)] mb-5","children":"Presence, when wanted."}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed mb-8","children":"Keep the conversation text-only for quiet focus, or activate an on-demand Live2D companion surface directly in your browser. Rendering runs locally via WebGL with zero background software dependencies."}],["$","div",null,{"className":"inline-flex items-center gap-2 px-3.5 py-1.5 rounded-full border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)] text-[10px] font-mono text-[var(--siduri-text-muted)]","children":[["$","span",null,{"className":"w-1.5 h-1.5 rounded-full bg-[var(--siduri-ember)]"}],"Cubism Web Runtime · Browser-Isolated · On-Demand"]}]]}]}]
21
+ a:["$","footer",null,{"className":"py-14 bg-[#09090c]","children":["$","div",null,{"className":"home-container flex flex-col sm:flex-row items-center justify-between gap-6","children":[["$","div",null,{"className":"flex items-center gap-3","children":[["$","span",null,{"className":"siduri-glyph w-6 h-6 text-xs","children":"✦"}],["$","span",null,{"className":"font-bold tracking-widest text-xs text-[var(--siduri-text-primary)]","children":"SIDURI"}],["$","span",null,{"className":"text-[10px] font-mono text-[var(--siduri-text-muted)]","children":"v0.2.0-y"}]]}],["$","p",null,{"className":"text-xs text-[var(--siduri-text-dim)] font-sans text-center sm:text-left","children":"Local-first AI companion runtime with inspectable boundaries."}],["$","div",null,{"className":"flex items-center gap-5 text-xs text-[var(--siduri-text-muted)]","children":[["$","$L2",null,{"href":"/chat","className":"hover:text-[var(--siduri-text-primary)]","children":"Chat"}],["$","$L2",null,{"href":"/operator","className":"hover:text-[var(--siduri-text-primary)]","children":"Operator"}]]}]]}]}]
22
+ b:["$","script","script-0",{"src":"/_next/static/chunks/2s3d1bfr0l4b0.js","async":true}]
23
+ c:["$","$L16",null,{"children":["$","$17",null,{"name":"Next.MetadataOutlet","children":"$@18"}]}]
24
+ f:["$","$1","h",{"children":[null,["$","$L19",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L1a",null,{"children":["$","$17",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Siduri — Local-First Companion"}],["$","meta","1",{"name":"description","content":"Siduri — a local-first companion with explicit memory, grounded knowledge, and optional presence."}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","link","3",{"rel":"icon","href":"/favicon.ico"}],["$","$L1b","4",{}]]}]}]}],null]}]
25
+ 11:["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/2bu5_paf4sm3x.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0uwih7sydv413.js","async":true}]],["$","html",null,{"lang":"en","className":"h-full antialiased dark","children":[["$","head",null,{"children":[["$","link",null,{"rel":"preconnect","href":"https://fonts.googleapis.com"}],["$","link",null,{"rel":"preconnect","href":"https://fonts.gstatic.com","crossOrigin":"anonymous"}],["$","link",null,{"href":"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap","rel":"stylesheet"}]]}],["$","body",null,{"className":"min-h-full flex flex-col bg-[#0b0b0e] text-[#eee8df] selection:bg-[#d99a68]/30 selection:text-[#f4c28d]","children":["$","$L1c",null,{"parallelRouterKey":"children","template":["$","$L1d",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]]}]]}]
26
+ 15:["$","p",null,{"className":"text-xs text-[var(--siduri-text-muted)] leading-normal","children":"Voice, subtitles & optional Live2D."}]
27
+ 18:null
28
+ 14:true
29
+ e:300
30
+ e:C
31
+ 13:0
32
+ 10:"$undefined"
33
+ 12:"$undefined"
34
+ d:"$undefined"
@@ -0,0 +1,27 @@
1
+ 1:"$Sreact.fragment"
2
+ 2:I[81869,["/_next/static/chunks/0uwih7sydv413.js"],"default"]
3
+ 3:I[57830,["/_next/static/chunks/0uwih7sydv413.js"],"default"]
4
+ 4:I[80413,["/_next/static/chunks/0uwih7sydv413.js","/_next/static/chunks/2s3d1bfr0l4b0.js"],""]
5
+ e:I[4626,["/_next/static/chunks/0uwih7sydv413.js"],"default",1]
6
+ :HL["/_next/static/chunks/2bu5_paf4sm3x.css","style"]
7
+ :HL["https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap","style"]
8
+ 0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{},"$undefined","$undefined",4608]},"$undefined","$undefined",4624],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/2bu5_paf4sm3x.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0uwih7sydv413.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"h-full antialiased dark","children":[["$","head",null,{"children":[["$","link",null,{"rel":"preconnect","href":"https://fonts.googleapis.com"}],["$","link",null,{"rel":"preconnect","href":"https://fonts.gstatic.com","crossOrigin":"anonymous"}],["$","link",null,{"href":"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap","rel":"stylesheet"}]]}],["$","body",null,{"className":"min-h-full flex flex-col bg-[#0b0b0e] text-[#eee8df] selection:bg-[#d99a68]/30 selection:text-[#f4c28d]","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"home-page","children":[["$","header",null,{"className":"home-nav","children":["$","div",null,{"className":"home-container home-nav-inner","children":[["$","$L4",null,{"href":"/","className":"brand-link","aria-label":"Siduri Home","children":[["$","span",null,{"className":"siduri-glyph","children":"✦"}],["$","span",null,{"children":"SIDURI"}]]}],["$","nav",null,{"className":"nav-links","aria-label":"Main Navigation","children":[["$","$L4",null,{"href":"/chat","children":"Chat"}],["$","$L4",null,{"href":"/operator","children":"Operator Console"}]]}],["$","div",null,{"children":["$","$L4",null,{"href":"/chat","className":"nav-cta","children":["Open Chat ",["$","span",null,{"children":"→"}]]}]}]]}]}],["$","main",null,{"children":[["$","section",null,{"className":"py-24 md:py-32 border-b border-[var(--siduri-border-subtle)] relative overflow-hidden","children":["$","div",null,{"className":"home-container relative z-10","children":["$","div",null,{"className":"max-w-3xl","children":[["$","div",null,{"className":"inline-flex items-center gap-2 px-3 py-1 rounded-full border border-[var(--siduri-border-ember)] bg-[var(--siduri-tint-low)] text-[var(--siduri-ember-light)] text-[10px] font-mono tracking-widest uppercase mb-8","children":[["$","span",null,{"className":"w-1.5 h-1.5 rounded-full bg-[var(--siduri-online)] shadow-[0_0_8px_rgba(127,199,154,0.6)]"}],"Local-First Companion · Explicit Architecture"]}],["$","h1",null,{"className":"text-4xl sm:text-5xl md:text-6xl font-normal font-serif text-[var(--siduri-text-primary)] tracking-tight leading-[1.15] mb-6","children":"A companion designed to remember deliberately."}],["$","p",null,{"className":"text-base sm:text-lg text-[var(--siduri-text-secondary)] font-sans leading-relaxed mb-10 max-w-2xl font-light","children":"Local-first context, inspectable memory governance, grounded evidence, and optional visual presence — engineered with explicit boundaries between identity and presentation."}],"$L5"]}]}]}],"$L6","$L7","$L8","$L9"]}],"$La"]}],["$Lb"],"$Lc"]}],{},null,false,null]},null,false,null],"$Ld",false]],"m":"$undefined","G":["$e",["$Lf"]],"S":true,"h":null,"r":"$undefined","s":"$undefined","a":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"_zOqKpMPc6RDqk04fUScI"}
9
+ 11:I[44101,["/_next/static/chunks/0uwih7sydv413.js"],"OutletBoundary"]
10
+ 12:"$Sreact.suspense"
11
+ 14:I[44101,["/_next/static/chunks/0uwih7sydv413.js"],"ViewportBoundary"]
12
+ 16:I[44101,["/_next/static/chunks/0uwih7sydv413.js"],"MetadataBoundary"]
13
+ 5:["$","div",null,{"className":"flex flex-wrap items-center gap-4","children":[["$","$L4",null,{"href":"/chat","className":"inline-flex items-center gap-3 px-6 py-3.5 rounded-xl bg-[var(--siduri-ember)] text-[#1b1619] font-sans font-semibold text-sm tracking-wide transition-all hover:brightness-110 shadow-[0_4px_20px_rgba(217,154,104,0.2)]","children":["Launch Private Chat",["$","span",null,{"className":"font-mono text-base","children":"→"}]]}],["$","$L4",null,{"href":"/operator","className":"inline-flex items-center gap-2.5 px-6 py-3.5 rounded-xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)] text-[var(--siduri-text-primary)] font-sans font-medium text-sm transition-all hover:border-[var(--siduri-border-ember)] hover:bg-[var(--siduri-tint-low)]","children":[["$","span",null,{"children":"⌘"}],"Inspect Runtime"]}]]}]
14
+ 6:["$","section",null,{"className":"py-20 md:py-28 border-b border-[var(--siduri-border-subtle)] bg-[#0e0e12]","children":["$","div",null,{"className":"home-container","children":[["$","div",null,{"className":"mb-14","children":[["$","p",null,{"className":"text-[10px] font-mono uppercase tracking-widest text-[var(--siduri-ember)] mb-2","children":"Core Principles"}],["$","h2",null,{"className":"text-2xl sm:text-3xl font-serif font-normal text-[var(--siduri-text-primary)]","children":"Governed intelligence with verifiable state."}]]}],["$","div",null,{"className":"grid grid-cols-1 md:grid-cols-2 gap-6","children":[["$","div",null,{"className":"p-8 rounded-2xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)] transition-all hover:border-[rgba(255,255,255,0.15)]","children":[["$","div",null,{"className":"w-10 h-10 rounded-xl border border-[var(--siduri-border-ember)] bg-[var(--siduri-tint-low)] text-[var(--siduri-ember)] grid place-items-center font-serif text-lg mb-6","children":"✦"}],["$","h3",null,{"className":"text-lg font-medium text-[var(--siduri-text-primary)] mb-3","children":"Explicit Memory Governance"}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed","children":"Memory is never silently accumulated. Facts, preferences, and behavioral directives are proposed in conversation and become permanent only upon explicit receipt approval."}]]}],["$","div",null,{"className":"p-8 rounded-2xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)] transition-all hover:border-[rgba(255,255,255,0.15)]","children":[["$","div",null,{"className":"w-10 h-10 rounded-xl border border-emerald-500/30 bg-emerald-500/10 text-emerald-400 grid place-items-center font-mono text-sm mb-6","children":"[#]"}],["$","h3",null,{"className":"text-lg font-medium text-[var(--siduri-text-primary)] mb-3","children":"Grounded Knowledge & Citations"}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed","children":"Assertions remain tethered to source evidence. Claims carry verifiable citations with intact uncertainty indicators rather than fabricating authority."}]]}],["$","div",null,{"className":"p-8 rounded-2xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)] transition-all hover:border-[rgba(255,255,255,0.15)]","children":[["$","div",null,{"className":"w-10 h-10 rounded-xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-elevated)] text-[var(--siduri-text-primary)] grid place-items-center font-mono text-sm mb-6","children":"◈"}],["$","h3",null,{"className":"text-lg font-medium text-[var(--siduri-text-primary)] mb-3","children":"Local-First Runtime Boundaries"}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed","children":"A modular monolith with strict domain boundaries. Identity, semantic memory, observation capture, and response gating run in your environment with no external leakage."}]]}],["$","div",null,{"className":"p-8 rounded-2xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)] transition-all hover:border-[rgba(255,255,255,0.15)]","children":[["$","div",null,{"className":"w-10 h-10 rounded-xl border border-amber-500/30 bg-amber-500/10 text-amber-300 grid place-items-center font-serif text-lg mb-6","children":"S"}],["$","h3",null,{"className":"text-lg font-medium text-[var(--siduri-text-primary)] mb-3","children":"On-Demand Visual Presence"}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed","children":"Presentation is decoupled from core reasoning. Interact in pure text, or activate in-browser Live2D embodiment rendered reactively via WebGL when desired."}]]}]]}]]}]}]
15
+ 7:["$","section",null,{"className":"py-20 md:py-28 border-b border-[var(--siduri-border-subtle)]","children":["$","div",null,{"className":"home-container","children":[["$","div",null,{"className":"max-w-2xl mb-14","children":[["$","p",null,{"className":"text-[10px] font-mono uppercase tracking-widest text-[var(--siduri-ember)] mb-2","children":"Execution Pipeline"}],["$","h2",null,{"className":"text-2xl sm:text-3xl font-serif font-normal text-[var(--siduri-text-primary)] mb-4","children":"Transparent from input to experience."}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed","children":"Every user utterance flows through an inspectable pipeline enforcing strict policy gating before generating speech or avatar expressions."}]]}],["$","div",null,{"className":"p-8 md:p-10 rounded-2xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)]","children":["$","div",null,{"className":"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-5 gap-4 relative","children":[["$","div",null,{"className":"p-5 rounded-xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-elevated)] flex flex-col justify-between","children":["$","div",null,{"children":[["$","span",null,{"className":"text-[9px] font-mono text-[var(--siduri-ember)] tracking-widest block mb-2","children":"01 / INPUT"}],["$","strong",null,{"className":"text-sm font-medium text-[var(--siduri-text-primary)] block mb-1","children":"User Context"}],["$","p",null,{"className":"text-xs text-[var(--siduri-text-muted)] leading-normal","children":"Channel & role-validated interaction."}]]}]}],["$","div",null,{"className":"p-5 rounded-xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-elevated)] flex flex-col justify-between","children":["$","div",null,{"children":[["$","span",null,{"className":"text-[9px] font-mono text-[var(--siduri-ember)] tracking-widest block mb-2","children":"02 / RETRIEVAL"}],["$","strong",null,{"className":"text-sm font-medium text-[var(--siduri-text-primary)] block mb-1","children":"Active Self & Memory"}],["$","p",null,{"className":"text-xs text-[var(--siduri-text-muted)] leading-normal","children":"Approved facts, directives & evidence."}]]}]}],["$","div",null,{"className":"p-5 rounded-xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-elevated)] flex flex-col justify-between","children":["$","div",null,{"children":[["$","span",null,{"className":"text-[9px] font-mono text-[var(--siduri-ember)] tracking-widest block mb-2","children":"03 / REASONING"}],["$","strong",null,{"className":"text-sm font-medium text-[var(--siduri-text-primary)] block mb-1","children":"Structured Planning"}],["$","p",null,{"className":"text-xs text-[var(--siduri-text-muted)] leading-normal","children":"Candidate speech, proposals & actions."}]]}]}],["$","div",null,{"className":"p-5 rounded-xl border border-[var(--siduri-border-ember)] bg-[var(--siduri-tint-low)] flex flex-col justify-between","children":["$","div",null,{"children":[["$","span",null,{"className":"text-[9px] font-mono text-[var(--siduri-ember-highlight)] tracking-widest block mb-2","children":"04 / GATE"}],["$","strong",null,{"className":"text-sm font-medium text-[var(--siduri-text-primary)] block mb-1","children":"Security & Disclosure"}],["$","p",null,{"className":"text-xs text-[var(--siduri-text-secondary)] leading-normal","children":"Explicit staging & boundary approval."}]]}]}],["$","div",null,{"className":"p-5 rounded-xl border border-[var(--siduri-border-subtle)] bg-[var(--siduri-elevated)] flex flex-col justify-between","children":["$","div",null,{"children":[["$","span",null,{"className":"text-[9px] font-mono text-[var(--siduri-online)] tracking-widest block mb-2","children":"05 / OUTPUT"}],["$","strong",null,{"className":"text-sm font-medium text-[var(--siduri-text-primary)] block mb-1","children":"Experience Event"}],"$L10"]}]}]]}]}]]}]}]
16
+ 8:["$","section",null,{"className":"py-20 md:py-28 border-b border-[var(--siduri-border-subtle)] bg-[#0e0e12]","children":["$","div",null,{"className":"home-container grid grid-cols-1 lg:grid-cols-2 gap-12 items-center","children":[["$","div",null,{"children":[["$","p",null,{"className":"text-[10px] font-mono uppercase tracking-widest text-[var(--siduri-ember)] mb-2","children":"Governed State"}],["$","h2",null,{"className":"text-2xl sm:text-3xl font-serif font-normal text-[var(--siduri-text-primary)] mb-5","children":"Every memory is an auditable receipt."}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed mb-6","children":"When you share preferences or rules with Siduri, they are staged as structured candidates. You decide what enters long-term memory with explicit single-click approval."}],["$","ul",null,{"className":"space-y-3 text-xs text-[var(--siduri-text-muted)] font-mono","children":[["$","li",null,{"className":"flex items-center gap-2.5","children":[["$","span",null,{"className":"text-[var(--siduri-online)]","children":"✓"}],"Structured subject / predicate / value storage"]}],["$","li",null,{"className":"flex items-center gap-2.5","children":[["$","span",null,{"className":"text-[var(--siduri-online)]","children":"✓"}],"Full revocation and override controls"]}],["$","li",null,{"className":"flex items-center gap-2.5","children":[["$","span",null,{"className":"text-[var(--siduri-online)]","children":"✓"}],"Session-isolated candidate staging"]}]]}]]}],["$","div",null,{"className":"p-6 sm:p-8 rounded-2xl border border-[var(--siduri-border-ember)] bg-[var(--siduri-surface)] shadow-[0_10px_35px_rgba(0,0,0,0.4)]","children":[["$","div",null,{"className":"flex items-center justify-between border-b border-[var(--siduri-border-subtle)] pb-4 mb-6","children":[["$","div",null,{"className":"flex items-center gap-2.5","children":[["$","span",null,{"className":"w-2 h-2 rounded-full bg-[var(--siduri-warning)] shadow-[0_0_8px_rgba(226,179,110,0.6)]"}],["$","span",null,{"className":"text-[11px] font-mono tracking-wider text-[var(--siduri-text-primary)] uppercase","children":"Memory Proposal #prp-842"}]]}],["$","span",null,{"className":"px-2 py-0.5 rounded text-[9px] font-mono bg-amber-500/10 text-amber-400 border border-amber-500/30 uppercase","children":"Pending Review"}]]}],["$","div",null,{"className":"space-y-3.5 mb-6 text-xs font-mono","children":[["$","div",null,{"className":"flex justify-between py-1 border-b border-[rgba(255,255,255,0.04)]","children":[["$","span",null,{"className":"text-[var(--siduri-text-muted)]","children":"Subject"}],["$","span",null,{"className":"text-[var(--siduri-text-primary)]","children":"User / Preference"}]]}],["$","div",null,{"className":"flex justify-between py-1 border-b border-[rgba(255,255,255,0.04)]","children":[["$","span",null,{"className":"text-[var(--siduri-text-muted)]","children":"Directive"}],["$","span",null,{"className":"text-[var(--siduri-text-primary)] font-sans","children":"Keep technical explanations concise and evidence-grounded"}]]}],["$","div",null,{"className":"flex justify-between py-1 border-b border-[rgba(255,255,255,0.04)]","children":[["$","span",null,{"className":"text-[var(--siduri-text-muted)]","children":"Provenance"}],["$","span",null,{"className":"text-[var(--siduri-text-secondary)]","children":"Direct chat teaching"}]]}],["$","div",null,{"className":"flex justify-between py-1","children":[["$","span",null,{"className":"text-[var(--siduri-text-muted)]","children":"Sensitivity"}],["$","span",null,{"className":"text-[var(--siduri-online)]","children":"Private / Operator"}]]}]]}],["$","div",null,{"className":"flex items-center gap-3 pt-2","children":[["$","button",null,{"type":"button","className":"flex-1 py-2 rounded-lg bg-[var(--siduri-online)] text-[#16251a] text-xs font-semibold tracking-wide cursor-default transition-all","children":"Approve Receipt"}],["$","button",null,{"type":"button","className":"flex-1 py-2 rounded-lg border border-[var(--siduri-border-subtle)] bg-[var(--siduri-elevated)] text-[var(--siduri-text-muted)] text-xs font-medium cursor-default","children":"Reject"}]]}]]}]]}]}]
17
+ 9:["$","section",null,{"className":"py-20 md:py-28 border-b border-[var(--siduri-border-subtle)]","children":["$","div",null,{"className":"home-container text-center max-w-2xl mx-auto","children":[["$","div",null,{"className":"inline-grid w-14 h-14 place-items-center rounded-2xl border border-[var(--siduri-border-ember)] bg-[var(--siduri-tint-low)] text-[var(--siduri-ember-highlight)] font-serif text-2xl mb-6 mx-auto shadow-[0_0_30px_rgba(217,154,104,0.15)]","children":"✦"}],["$","p",null,{"className":"text-[10px] font-mono uppercase tracking-widest text-[var(--siduri-ember)] mb-2","children":"Embodied Experience"}],["$","h2",null,{"className":"text-3xl sm:text-4xl font-serif font-normal text-[var(--siduri-text-primary)] mb-5","children":"Presence, when wanted."}],["$","p",null,{"className":"text-sm text-[var(--siduri-text-secondary)] leading-relaxed mb-8","children":"Keep the conversation text-only for quiet focus, or activate an on-demand Live2D companion surface directly in your browser. Rendering runs locally via WebGL with zero background software dependencies."}],["$","div",null,{"className":"inline-flex items-center gap-2 px-3.5 py-1.5 rounded-full border border-[var(--siduri-border-subtle)] bg-[var(--siduri-surface)] text-[10px] font-mono text-[var(--siduri-text-muted)]","children":[["$","span",null,{"className":"w-1.5 h-1.5 rounded-full bg-[var(--siduri-ember)]"}],"Cubism Web Runtime · Browser-Isolated · On-Demand"]}]]}]}]
18
+ a:["$","footer",null,{"className":"py-14 bg-[#09090c]","children":["$","div",null,{"className":"home-container flex flex-col sm:flex-row items-center justify-between gap-6","children":[["$","div",null,{"className":"flex items-center gap-3","children":[["$","span",null,{"className":"siduri-glyph w-6 h-6 text-xs","children":"✦"}],["$","span",null,{"className":"font-bold tracking-widest text-xs text-[var(--siduri-text-primary)]","children":"SIDURI"}],["$","span",null,{"className":"text-[10px] font-mono text-[var(--siduri-text-muted)]","children":"v0.2.0-y"}]]}],["$","p",null,{"className":"text-xs text-[var(--siduri-text-dim)] font-sans text-center sm:text-left","children":"Local-first AI companion runtime with inspectable boundaries."}],["$","div",null,{"className":"flex items-center gap-5 text-xs text-[var(--siduri-text-muted)]","children":[["$","$L4",null,{"href":"/chat","className":"hover:text-[var(--siduri-text-primary)]","children":"Chat"}],["$","$L4",null,{"href":"/operator","className":"hover:text-[var(--siduri-text-primary)]","children":"Operator"}]]}]]}]}]
19
+ b:["$","script","script-0",{"src":"/_next/static/chunks/2s3d1bfr0l4b0.js","async":true,"nonce":"$undefined"}]
20
+ c:["$","$L11",null,{"children":["$","$12",null,{"name":"Next.MetadataOutlet","children":"$@13"}]}]
21
+ d:["$","$1","h",{"children":[null,["$","$L14",null,{"children":"$L15"}],["$","div",null,{"hidden":true,"children":["$","$L16",null,{"children":["$","$12",null,{"name":"Next.Metadata","children":"$L17"}]}]}],null]}]
22
+ f:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/2bu5_paf4sm3x.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]
23
+ 10:["$","p",null,{"className":"text-xs text-[var(--siduri-text-muted)] leading-normal","children":"Voice, subtitles & optional Live2D."}]
24
+ 15:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
25
+ 18:I[89236,["/_next/static/chunks/0uwih7sydv413.js"],"IconMark"]
26
+ 13:null
27
+ 17:[["$","title","0",{"children":"Siduri — Local-First Companion"}],["$","meta","1",{"name":"description","content":"Siduri — a local-first companion with explicit memory, grounded knowledge, and optional presence."}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","link","3",{"rel":"icon","href":"/favicon.ico"}],["$","$L18","4",{}]]
@@ -0,0 +1,3 @@
1
+ :HL["/_next/static/chunks/2bu5_paf4sm3x.css","style"]
2
+ :HL["https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap","style"]
3
+ 0:{"tree":{"name":"","param":null,"prefetchHints":4176,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":4256,"slots":null}}},"staleTime":300,"buildId":"_zOqKpMPc6RDqk04fUScI"}
@@ -0,0 +1,11 @@
1
+ self.__BUILD_MANIFEST = {
2
+ "__rewrites": {
3
+ "afterFiles": [],
4
+ "beforeFiles": [],
5
+ "fallback": []
6
+ },
7
+ "sortedPages": [
8
+ "/_app",
9
+ "/_error"
10
+ ]
11
+ };self.__BUILD_MANIFEST_CB && self.__BUILD_MANIFEST_CB()
@@ -0,0 +1 @@
1
+ self.__MIDDLEWARE_MATCHERS = [];self.__MIDDLEWARE_MATCHERS_CB && self.__MIDDLEWARE_MATCHERS_CB()
@@ -0,0 +1 @@
1
+ self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()