mnfst-run 1.0.21 → 1.0.22

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 (2) hide show
  1. package/package.json +1 -1
  2. package/serve.mjs +513 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mnfst-run",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "Zero-dependency dev server for Manifest projects",
5
5
  "type": "module",
6
6
  "bin": {
package/serve.mjs CHANGED
@@ -53,6 +53,8 @@
53
53
  * other → full page reload
54
54
  */
55
55
  import { createServer, get as httpGet, request as httpRequest } from 'http';
56
+ import { request as httpsRequest } from 'https';
57
+ import { connect as tlsConnect } from 'tls';
56
58
  import {
57
59
  readFileSync, statSync, watch,
58
60
  existsSync, writeFileSync, unlinkSync,
@@ -161,9 +163,10 @@ const LIVE_RELOAD_SCRIPT = `<script>
161
163
  // by the host. See the Appwrite setup doc for the full pattern.
162
164
  function loadEnvFile(rootDir) {
163
165
  const envPath = join(rootDir, '.env');
164
- if (!existsSync(envPath)) return { public: {}, private: [] };
166
+ if (!existsSync(envPath)) return { public: {}, private: [], privateValues: {} };
165
167
  const publicEnv = {};
166
168
  const privateNames = [];
169
+ const privateValues = {}; // server-side only — NEVER injected into window.env
167
170
  try {
168
171
  const text = readFileSync(envPath, 'utf8');
169
172
  for (const line of text.split(/\r?\n/)) {
@@ -179,12 +182,12 @@ function loadEnvFile(rootDir) {
179
182
  value = value.slice(1, -1);
180
183
  }
181
184
  if (key.startsWith('PUBLIC_')) publicEnv[key] = value;
182
- else privateNames.push(key);
185
+ else { privateNames.push(key); privateValues[key] = value; }
183
186
  }
184
187
  } catch (error) {
185
188
  console.warn('[mnfst-run] Failed to parse .env:', error.message);
186
189
  }
187
- return { public: publicEnv, private: privateNames };
190
+ return { public: publicEnv, private: privateNames, privateValues };
188
191
  }
189
192
 
190
193
  // Build a `<script>window.env = {…};</script>` tag from the public env map.
@@ -357,13 +360,87 @@ if (listMode) {
357
360
  }
358
361
 
359
362
  const root = resolve(process.cwd(), dir);
363
+ const EDIT_ENABLED = process.argv.includes('--edit') || process.env.MNFST_EDIT === '1'; // gates /__edit/save (edit-plugin source write-back, authoring only)
360
364
 
361
365
  // Load .env from the serving root (if present) and pre-build the inject
362
366
  // script. Kept as a single string so serveFile doesn't re-stringify on every
363
367
  // HTML response. Empty string when no public vars exist — the injection step
364
368
  // becomes a no-op for projects whose .env holds only server-side secrets.
365
- const { public: publicEnv, private: privateEnvNames } = loadEnvFile(root);
366
- const envInjectScript = buildEnvInjectScript(publicEnv);
369
+ const { public: publicEnv, private: privateEnvNames, privateValues: privateEnv } = loadEnvFile(root);
370
+ // Appwrite dev proxy: when APPWRITE_PROXY_TARGET is set (server-side .env), the
371
+ // dev server proxies /_appwrite/* to that Appwrite origin so the session cookie
372
+ // is FIRST-PARTY on localhost. Cross-origin Appwrite Cloud blocks the third-party
373
+ // session cookie, and some endpoints (e.g. Presences) don't honour the
374
+ // X-Fallback-Cookies workaround the SDK uses for the others — so user-scoped
375
+ // calls land as the anonymous "guests" role. Proxying makes Appwrite same-origin
376
+ // and fixes it uniformly (HTTP + Realtime WebSocket).
377
+ const APPWRITE_PROXY_TARGET = (process.env.APPWRITE_PROXY_TARGET || privateEnv.APPWRITE_PROXY_TARGET || '').trim();
378
+ const APPWRITE_PROXY_PREFIX = '/_appwrite';
379
+
380
+ let envInjectScript = buildEnvInjectScript(publicEnv);
381
+ if (APPWRITE_PROXY_TARGET) {
382
+ // Point the Appwrite endpoint at the same-origin proxy. Computed in the browser
383
+ // from location.origin so it's port-independent (auto-port safe) and prod-safe
384
+ // (production sets PUBLIC_APPWRITE_ENDPOINT to the real/custom domain instead).
385
+ envInjectScript += `<script>window.env=Object.assign(window.env||{},{PUBLIC_APPWRITE_ENDPOINT:location.origin+'${APPWRITE_PROXY_PREFIX}/v1'});</script>`;
386
+ }
387
+
388
+
389
+ // --- Turnkey AI relay (gates the same-origin /_ai/chat route) ---------------
390
+ // Reads the optional `ai` block from manifest.json and the LLM key from .env
391
+ // (server-side only). When the `ai` block is present, the dev server hosts the
392
+ // relay so a chat adapter can POST to `/_ai/chat` with no separate proxy, no
393
+ // CORS, and no key in the browser. No key → MOCK replies (try keyless); add the
394
+ // key for real. The same path is served by managed Manifest hosting in prod.
395
+ const aiConfig = (() => {
396
+ try { return JSON.parse(readFileSync(join(root, 'manifest.json'), 'utf8')).ai || null; }
397
+ catch { return null; }
398
+ })();
399
+ const aiKey = process.env.ANTHROPIC_API_KEY || privateEnv.ANTHROPIC_API_KEY || '';
400
+ if (publicEnv.PUBLIC_ANTHROPIC_API_KEY) {
401
+ // The one footgun: a PUBLIC_-prefixed LLM key would ship to every visitor.
402
+ console.warn('[mnfst-run] ⚠ PUBLIC_ANTHROPIC_API_KEY is injected into the BROWSER and exposes your key to every visitor. Rename it to ANTHROPIC_API_KEY (no PUBLIC_ prefix) — the dev server uses it server-side via /_ai/chat.');
403
+ }
404
+ if (aiConfig) {
405
+ console.log(`[mnfst-run] AI relay on /_ai/chat — provider=${aiConfig.provider || 'anthropic'} model=${aiConfig.model || 'claude-haiku-4-5'} mode=${aiKey ? 'REAL' : 'MOCK (no ANTHROPIC_API_KEY)'}`);
406
+ }
407
+
408
+ function aiSse(res, o) { res.write(`event: ${o.type}\ndata: ${JSON.stringify(o)}\n\n`); }
409
+ function streamMockAi(res) {
410
+ res.writeHead(200, { 'Content-Type': 'text/event-stream', 'Cache-Control': 'no-cache', Connection: 'keep-alive' });
411
+ aiSse(res, { type: 'message_start', message: { id: 'mock', role: 'assistant' } });
412
+ aiSse(res, { type: 'content_block_start', index: 0, content_block: { type: 'text', text: '' } });
413
+ const text = "Here's a **mock** reply from the in-server relay:\n\n- no separate proxy\n- the key stays server-side\n- add `ANTHROPIC_API_KEY` to `.env` for real Claude\n\n```js\nconst turnkey = true;\n```";
414
+ const chunks = text.match(/\S+\s*/g) || [text];
415
+ let i = 0;
416
+ const tick = setInterval(() => {
417
+ if (i >= chunks.length) { clearInterval(tick); aiSse(res, { type: 'content_block_stop', index: 0 }); aiSse(res, { type: 'message_delta', delta: { stop_reason: 'end_turn' }, usage: { output_tokens: chunks.length } }); aiSse(res, { type: 'message_stop' }); res.end(); return; }
418
+ aiSse(res, { type: 'content_block_delta', index: 0, delta: { type: 'text_delta', text: chunks[i++] } });
419
+ }, 45);
420
+ res.on('close', () => clearInterval(tick));
421
+ }
422
+ async function streamRealAi(res, payload) {
423
+ const upstream = await fetch('https://api.anthropic.com/v1/messages', {
424
+ method: 'POST',
425
+ headers: { 'content-type': 'application/json', 'x-api-key': aiKey, 'anthropic-version': '2023-06-01' },
426
+ body: JSON.stringify({
427
+ model: payload.model || aiConfig.model || 'claude-haiku-4-5',
428
+ max_tokens: payload.max_tokens || aiConfig.maxTokens || 1024,
429
+ stream: true,
430
+ system: payload.system || aiConfig.system || undefined,
431
+ messages: payload.messages || []
432
+ })
433
+ });
434
+ if (!upstream.ok) {
435
+ const body = await upstream.text();
436
+ res.writeHead(upstream.status, { 'Content-Type': 'text/event-stream' });
437
+ aiSse(res, { type: 'error', error: { message: `upstream ${upstream.status}: ${body.slice(0, 300)}` } });
438
+ return res.end();
439
+ }
440
+ res.writeHead(200, { 'Content-Type': 'text/event-stream', 'Cache-Control': 'no-cache' });
441
+ for await (const chunk of upstream.body) res.write(chunk); // passthrough — exact Anthropic SSE
442
+ res.end();
443
+ }
367
444
  const publicCount = Object.keys(publicEnv).length;
368
445
  if (publicCount > 0) {
369
446
  console.log(`Loaded ${publicCount} PUBLIC_ env var(s) into window.env`);
@@ -497,6 +574,297 @@ function isFile(p) {
497
574
  try { return statSync(p).isFile(); } catch { return false; }
498
575
  }
499
576
 
577
+ // Reorder a data file's rows/items to match `order` (array of ids). CSV (tabular,
578
+ // header with an `id` column) or JSON (array of {id}). Ids not in `order` keep their
579
+ // relative order at the end. Returns true if written. Used by /__edit/save (spike).
580
+ function reorderDataFile(file, order) {
581
+ const ext = extname(file).toLowerCase();
582
+ const text = readFileSync(file, 'utf8');
583
+ const ord = (order || []).map(String);
584
+ if (ext === '.json') {
585
+ const data = JSON.parse(text);
586
+ if (!Array.isArray(data)) return false;
587
+ const byId = new Map(data.map(it => [String(it.id), it]));
588
+ const next = ord.map(id => byId.get(id)).filter(Boolean);
589
+ data.forEach(it => { if (!ord.includes(String(it.id))) next.push(it); });
590
+ writeFileSync(file, JSON.stringify(next, null, 2) + (text.endsWith('\n') ? '\n' : ''));
591
+ return true;
592
+ }
593
+ if (ext === '.csv') {
594
+ const eol = text.includes('\r\n') ? '\r\n' : '\n';
595
+ const lines = text.split(/\r?\n/);
596
+ const trailing = lines.length && lines[lines.length - 1] === '';
597
+ if (trailing) lines.pop();
598
+ if (lines.length < 2) return false;
599
+ const header = lines[0];
600
+ const idIdx = header.split(',').map(s => s.trim().toLowerCase()).indexOf('id');
601
+ if (idIdx < 0) return false;
602
+ const rows = lines.slice(1);
603
+ const idOf = (r) => (r.split(',')[idIdx] || '').trim(); // id col is simple (unquoted); full row line preserved
604
+ const byId = new Map(rows.map(r => [idOf(r), r]));
605
+ const next = ord.map(id => byId.get(id)).filter(Boolean);
606
+ rows.forEach(r => { if (!ord.includes(idOf(r))) next.push(r); });
607
+ writeFileSync(file, [header, ...next].join(eol) + (trailing ? eol : ''));
608
+ return true;
609
+ }
610
+ return false;
611
+ }
612
+
613
+ // Quote-aware CSV line split + cell quoting (so editing an early column doesn't corrupt
614
+ // a later quoted field with commas).
615
+ function parseCsvLine(line) {
616
+ const out = []; let cur = '', q = false;
617
+ for (let i = 0; i < line.length; i++) { const ch = line[i]; if (q) { if (ch === '"') { if (line[i + 1] === '"') { cur += '"'; i++; } else q = false; } else cur += ch; } else { if (ch === ',') { out.push(cur); cur = ''; } else if (ch === '"') q = true; else cur += ch; } }
618
+ out.push(cur); return out;
619
+ }
620
+ const csvCell = (v) => /[",\n]/.test(v) ? '"' + String(v).replace(/"/g, '""') + '"' : String(v);
621
+ // Data-value write-back (local CSV/JSON cell). Cloud sources are not files → caller should
622
+ // persist via $x.<source>.$update(id,{field}) instead.
623
+ function writeDataValue(p, manifest) {
624
+ const src = (manifest.data || {})[p.source], rel = typeof src === 'string' ? src : null;
625
+ if (!rel) return { kind: 'data-val', source: p.source, status: 'skipped', reason: 'not a file source (cloud → use $x.$update)' };
626
+ const file = safeResolve(rel); if (!file || !isFile(file)) return { kind: 'data-val', source: p.source, status: 'error', reason: `file not found: ${rel}` };
627
+ const ext = extname(file).toLowerCase(), text = readFileSync(file, 'utf8');
628
+ if (ext === '.json') {
629
+ const data = JSON.parse(text); if (!Array.isArray(data)) return { kind: 'data-val', source: p.source, status: 'error', reason: 'JSON is not an array' };
630
+ const rec = data.find(r => String(r.id) === String(p.id)); if (!rec) return { kind: 'data-val', source: p.source, status: 'error', reason: `id ${p.id} not found` };
631
+ rec[p.field] = p.value; writeFileSync(file, JSON.stringify(data, null, 2) + (text.endsWith('\n') ? '\n' : ''));
632
+ return { kind: 'data-val', source: p.source, id: p.id, field: p.field, status: 'written', file: basename(file) };
633
+ }
634
+ if (ext === '.csv') {
635
+ const eol = text.includes('\r\n') ? '\r\n' : '\n', lines = text.split(/\r?\n/);
636
+ const trailing = lines.length && lines[lines.length - 1] === ''; if (trailing) lines.pop();
637
+ if (lines.length < 2) return { kind: 'data-val', source: p.source, status: 'error', reason: 'empty CSV' };
638
+ const header = parseCsvLine(lines[0]).map(h => h.trim().toLowerCase());
639
+ const idIdx = header.indexOf('id'), fIdx = header.indexOf(String(p.field).toLowerCase());
640
+ if (idIdx < 0 || fIdx < 0) return { kind: 'data-val', source: p.source, status: 'error', reason: `column not found (id/${p.field})` };
641
+ let hit = false;
642
+ const rows = lines.slice(1).map(line => { const cells = parseCsvLine(line); if (String(cells[idIdx]).trim() === String(p.id)) { cells[fIdx] = p.value; hit = true; return cells.map(csvCell).join(','); } return line; });
643
+ if (!hit) return { kind: 'data-val', source: p.source, status: 'error', reason: `id ${p.id} not found` };
644
+ writeFileSync(file, [lines[0], ...rows].join(eol) + (trailing ? eol : ''));
645
+ return { kind: 'data-val', source: p.source, id: p.id, field: p.field, status: 'written', file: basename(file) };
646
+ }
647
+ return { kind: 'data-val', source: p.source, status: 'error', reason: `unsupported ext ${ext}` };
648
+ }
649
+
650
+ // --- Dependency-free HTML region editor (spike) ---
651
+ // packages/run is zero-dep by design, so instead of pulling in an HTML parser we do a
652
+ // small tag-aware scan: find the element carrying x-edit="<key>", depth-match its close,
653
+ // and splice. Robust for authored Manifest source (well-formed); not a general parser.
654
+ const escapeReg = (s) => String(s).replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
655
+ function tagEnd(html, from) { // from = index of '<'; returns index of the unquoted '>'
656
+ let q = null;
657
+ for (let i = from + 1; i < html.length; i++) {
658
+ const ch = html[i];
659
+ if (q) { if (ch === q) q = null; }
660
+ else if (ch === '"' || ch === "'") q = ch;
661
+ else if (ch === '>') return i;
662
+ }
663
+ return -1;
664
+ }
665
+ function matchingClose(html, tag, from) { // depth-match </tag> accounting for nested same-name tags
666
+ const re = new RegExp(`<(/?)${escapeReg(tag)}(?=[\\s/>])`, 'gi');
667
+ re.lastIndex = from;
668
+ let depth = 1, m;
669
+ while ((m = re.exec(html))) {
670
+ if (m[1] === '/') { depth--; if (depth === 0) { const gt = html.indexOf('>', m.index); return { start: m.index, end: gt + 1 }; } }
671
+ else { const ge = tagEnd(html, m.index); if (ge >= 0) { if (html[ge - 1] !== '/') depth++; re.lastIndex = ge; } }
672
+ }
673
+ return null;
674
+ }
675
+ function locateEditEl(html, key) { // element whose x-edit*-named attr value === key
676
+ const m = new RegExp(`x-edit[.\\w-]*\\s*=\\s*(?:"${escapeReg(key)}"|'${escapeReg(key)}')`).exec(html);
677
+ if (!m) return null;
678
+ const openStart = html.lastIndexOf('<', m.index); if (openStart < 0) return null;
679
+ const nameM = /^<([a-zA-Z][\w-]*)/.exec(html.slice(openStart)); if (!nameM) return null;
680
+ const openEnd = tagEnd(html, openStart); if (openEnd < 0) return null;
681
+ const innerStart = openEnd + 1;
682
+ const cl = matchingClose(html, nameM[1], innerStart); if (!cl) return null;
683
+ return { tag: nameM[1], openStart, openEnd, innerStart, innerEnd: cl.start };
684
+ }
685
+ function setAttr(openTag, name, value) { // replace or insert an attribute in an opening-tag string
686
+ const val = `"${String(value).replace(/"/g, '&quot;')}"`;
687
+ const re = new RegExp(`(\\s${escapeReg(name)}\\s*=\\s*)(?:"[^"]*"|'[^']*')`);
688
+ if (re.test(openTag)) return openTag.replace(re, `$1${val}`);
689
+ return openTag.replace(/\s*\/?>$/, m => ` ${name}=${val}${m}`);
690
+ }
691
+ // Static per-node ops + reorder — surgical source edits (no whole-innerHTML replacement).
692
+ function navInRegion(html, loc, path) {
693
+ let node = { innerStart: loc.innerStart, innerEnd: loc.innerEnd };
694
+ for (const i of path.split('.').map(Number)) { node = childAt(html, node.innerStart, node.innerEnd, i); if (!node) return null; }
695
+ return node;
696
+ }
697
+ function serverStaticKey(html, child) { // mirror the client's staticKey (tag + first 24 text chars)
698
+ const text = html.slice(child.innerStart, child.innerEnd).replace(/<[^>]+>/g, '').replace(/\s+/g, ' ').trim().slice(0, 24);
699
+ return child.tag.toUpperCase() + ':' + text;
700
+ }
701
+ function writeStaticOps(file, key, edits, order) {
702
+ for (const ed of (edits || [])) { // re-read+re-locate each (offsets shift after writes)
703
+ let html = readFileSync(file, 'utf8');
704
+ const loc = locateEditEl(html, key); if (!loc) return { region: key, status: 'error', reason: `x-edit="${key}" not found in ${basename(file)}` };
705
+ const node = ed.path === '' ? { tagStart: loc.openStart, openEnd: loc.openEnd, innerStart: loc.innerStart, innerEnd: loc.innerEnd } : navInRegion(html, loc, ed.path);
706
+ if (!node) continue;
707
+ const openTag = html.slice(node.tagStart, node.openEnd + 1);
708
+ if (ed.prop === 'text') html = html.slice(0, node.innerStart) + ed.value + html.slice(node.innerEnd);
709
+ else if (ed.prop === 'class') html = html.slice(0, node.tagStart) + setAttr(openTag, 'class', ed.value) + html.slice(node.openEnd + 1);
710
+ else if (ed.prop === 'style') html = html.slice(0, node.tagStart) + setAttr(openTag, 'style', ed.value) + html.slice(node.openEnd + 1);
711
+ writeFileSync(file, html);
712
+ }
713
+ let reordered = false;
714
+ if (order && order.length) {
715
+ let html = readFileSync(file, 'utf8'); const loc = locateEditEl(html, key);
716
+ if (loc) {
717
+ const kids = []; let n = 0, c;
718
+ while ((c = childAt(html, loc.innerStart, loc.innerEnd, n++))) kids.push(c);
719
+ const byKey = {}; kids.forEach(k => { byKey[serverStaticKey(html, k)] = k; });
720
+ const seq = order.map(k => byKey[k]).filter(Boolean);
721
+ if (seq.length === kids.length && seq.length) {
722
+ const reassembled = seq.map(k => html.slice(k.tagStart, k.closeEnd)).join('\n ');
723
+ html = html.slice(0, kids[0].tagStart) + reassembled + html.slice(kids[kids.length - 1].closeEnd);
724
+ writeFileSync(file, html); reordered = true;
725
+ }
726
+ }
727
+ }
728
+ return { region: key, status: 'written', file: basename(file), edits: (edits || []).length, reordered };
729
+ }
730
+ function writeStaticRegion(file, key, innerHTML, style) {
731
+ let html = readFileSync(file, 'utf8');
732
+ const loc = locateEditEl(html, key);
733
+ if (!loc) return { region: key, status: 'error', reason: `x-edit="${key}" not found in ${basename(file)}` };
734
+ let openTag = html.slice(loc.openStart, loc.openEnd + 1);
735
+ if (style) openTag = setAttr(openTag, 'style', style);
736
+ html = html.slice(0, loc.openStart) + openTag + '\n' + (innerHTML || '') + '\n' + html.slice(loc.innerEnd);
737
+ writeFileSync(file, html);
738
+ return { region: key, status: 'written', file: basename(file) };
739
+ }
740
+ // Structural navigation for component-file edits (dependency-free).
741
+ const VOID_TAGS = new Set(['area', 'base', 'br', 'col', 'embed', 'hr', 'img', 'input', 'link', 'meta', 'param', 'source', 'track', 'wbr']);
742
+ const escapeText = (s) => String(s).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
743
+ function childAt(html, from, to, idx) { // nth element child within [from,to), skipping comments/text
744
+ let i = from, count = 0;
745
+ while (i < to) {
746
+ const lt = html.indexOf('<', i); if (lt < 0 || lt >= to) return null;
747
+ if (html.startsWith('<!--', lt)) { const e = html.indexOf('-->', lt); i = e < 0 ? to : e + 3; continue; }
748
+ if (html[lt + 1] === '/') { i = html.indexOf('>', lt) + 1; continue; }
749
+ const nameM = /^<([a-zA-Z][\w-]*)/.exec(html.slice(lt)); if (!nameM) { i = lt + 1; continue; }
750
+ const tag = nameM[1], openEnd = tagEnd(html, lt); if (openEnd < 0) return null;
751
+ const selfClose = html[openEnd - 1] === '/' || VOID_TAGS.has(tag.toLowerCase());
752
+ let innerStart = openEnd + 1, innerEnd = innerStart, closeEnd = openEnd + 1;
753
+ if (!selfClose) { const cl = matchingClose(html, tag, innerStart); if (!cl) return null; innerEnd = cl.start; closeEnd = cl.end; }
754
+ if (count === idx) return { tag, tagStart: lt, openEnd, innerStart, innerEnd, closeEnd };
755
+ count++; i = closeEnd;
756
+ }
757
+ return null;
758
+ }
759
+ function navigateToNode(html, path) { // path indices are relative to the component's first top-level element ('' = the root itself)
760
+ let node = childAt(html, 0, html.length, 0); if (!node) return null;
761
+ if (!path) return node;
762
+ for (const i of path.split('.').map(Number)) { node = childAt(html, node.innerStart, node.innerEnd, i); if (!node) return null; }
763
+ return node;
764
+ }
765
+ function resolveComponentFile(manifest, name) {
766
+ const all = [...(manifest.preloadedComponents || []), ...(manifest.components || [])];
767
+ return all.find(p => String(p).split('/').pop().replace('.html', '') === name) || null;
768
+ }
769
+
770
+ // Theme var write: rewrite (or append) a single `--var: value;` in the target CSS file.
771
+ // Scoped vars carry their file (data-edit-theme-file); global vars fall back to the
772
+ // standard theme file. Surgical — rewrites the existing declaration in place, else
773
+ // appends into the first :root{} block, else creates one.
774
+ const DEFAULT_THEME_FILE = 'styles/core/manifest.theme.css';
775
+ function writeThemeVar(p) {
776
+ if (!/^--[\w-]+$/.test(p.var || '')) return { region: p.var, status: 'error', reason: 'bad var name' };
777
+ const rel = (p.file || DEFAULT_THEME_FILE).replace(/^\//, '');
778
+ const file = safeResolve('/' + rel);
779
+ if (!file) return { region: p.var, status: 'error', reason: `path outside root: ${rel}` };
780
+ let css = isFile(file) ? readFileSync(file, 'utf8') : '';
781
+ const decl = `${p.var}: ${p.value};`;
782
+ const declRe = new RegExp(`(${escapeReg(p.var)}\\s*:)[^;]*;`);
783
+ if (declRe.test(css)) css = css.replace(declRe, `$1 ${p.value};`); // rewrite in place
784
+ else if (/:root\s*[^{]*\{/.test(css)) css = css.replace(/(:root\s*[^{]*\{)/, `$1\n ${decl}`); // append into :root
785
+ else css = `:root {\n ${decl}\n}\n${css}`; // create :root
786
+ writeFileSync(file, css);
787
+ return { region: `${p.scope ? p.scope + ':' : ''}${p.var}`, status: 'written', file: rel };
788
+ }
789
+ const modParamIn = (openTag, attr) => { const m = openTag.match(new RegExp(escapeReg(attr) + `\\s*=\\s*("[^"]*"|'[^']*')`)); if (!m) return null; const mm = m[1].slice(1, -1).match(/\$modify\(['"]([\w-]+)['"]\)/); return mm ? mm[1] : null; };
790
+ const allModifyParams = (html) => { const s = new Set(); let m; const re = /\$modify\(['"]([\w-]+)['"]\)/g; while ((m = re.exec(html))) s.add(m[1]); return [...s]; };
791
+ const removeAttr = (openTag, name) => openTag.replace(new RegExp(`\\s${escapeReg(name)}\\s*=\\s*(?:"[^"]*"|'[^']*')`, 'g'), '');
792
+ const classOf = (openTag) => { const m = openTag.match(/\sclass\s*=\s*("[^"]*"|'[^']*')/); return m ? m[1].slice(1, -1) : ''; };
793
+
794
+ // Component edits, per node (structural path), per prop (text|class), routed by scope.
795
+ // main → edit the component source literal/class (affects every instance)
796
+ // instance → set the $modify instance attr; AUTO-PROMOTE a plain node first
797
+ // (text → x-text="$modify('p_…') ?? 'orig'"; class → :class="$modify('c_…') ?? 'orig'")
798
+ // reverts → remove the instance's $modify attrs so it falls back to the component default
799
+ function writeComponentEdits(p, manifest) {
800
+ const compRel = resolveComponentFile(manifest, p.component);
801
+ if (!compRel) return { region: p.region, status: 'error', reason: `component '${p.component}' not registered` };
802
+ const compFile = safeResolve(compRel);
803
+ if (!compFile || !isFile(compFile)) return { region: p.region, status: 'error', reason: `component file not found: ${compRel}` };
804
+ const indexFile = join(root, 'index.html'), instanceAttrs = {}, removeNames = new Set(), applied = [];
805
+ for (const ed of (p.edits || [])) {
806
+ const prop = ed.prop || 'text';
807
+ let html = readFileSync(compFile, 'utf8');
808
+ const node = navigateToNode(html, ed.path);
809
+ if (!node) { applied.push({ path: ed.path, status: 'not-found' }); continue; }
810
+ let openTag = html.slice(node.tagStart, node.openEnd + 1);
811
+ const seg = ed.path === '' ? 'root' : ed.path.replace(/\./g, '_');
812
+
813
+ if (prop === 'class') {
814
+ const param = modParamIn(openTag, ':class');
815
+ if (p.scope === 'main') { writeFileSync(compFile, html.slice(0, node.tagStart) + setAttr(openTag, 'class', ed.value) + html.slice(node.openEnd + 1)); applied.push({ path: ed.path, prop, status: 'main' }); }
816
+ else if (param) { instanceAttrs[param] = ed.value; applied.push({ path: ed.path, prop, status: 'instance', param }); }
817
+ else { const name = 'c_' + seg; writeFileSync(compFile, html.slice(0, node.tagStart) + setAttr(openTag, ':class', `$modify('${name}') ?? '${classOf(openTag).replace(/'/g, "\\'")}'`) + html.slice(node.openEnd + 1)); instanceAttrs[name] = ed.value; applied.push({ path: ed.path, prop, status: 'promoted', param: name }); }
818
+ continue;
819
+ }
820
+
821
+ // text — value is innerHTML; may contain nested elements (<i>/<br>), bound via x-html.
822
+ const hasMarkup = /<[a-z!\/][\s\S]*>/i.test(ed.value);
823
+ const param = modParamIn(openTag, 'x-html') || modParamIn(openTag, 'x-text');
824
+ if (p.scope === 'main') {
825
+ if (param) writeFileSync(compFile, html.slice(0, node.tagStart) + openTag.replace(/((?:\?\?|\|\|)\s*)(['"]).*?\2/, `$1'${ed.value.replace(/'/g, "\\'")}'`) + html.slice(node.openEnd + 1));
826
+ else writeFileSync(compFile, html.slice(0, node.innerStart) + ed.value + html.slice(node.innerEnd)); // raw HTML literal
827
+ applied.push({ path: ed.path, prop, status: 'main' });
828
+ } else if (param) {
829
+ if (hasMarkup && /\sx-text\s*=/.test(openTag) && !/\sx-html\s*=/.test(openTag)) { writeFileSync(compFile, html.slice(0, node.tagStart) + openTag.replace(/\sx-text(\s*=)/, ' x-html$1') + html.slice(node.openEnd + 1)); }
830
+ instanceAttrs[param] = ed.value; applied.push({ path: ed.path, prop, status: 'instance', param });
831
+ } else { // PROMOTE: x-html if rich, else x-text
832
+ const name = 'p_' + seg, bind = hasMarkup ? 'x-html' : 'x-text';
833
+ const orig = html.slice(node.innerStart, node.innerEnd).trim().replace(/'/g, "\\'");
834
+ writeFileSync(compFile, html.slice(0, node.tagStart) + setAttr(openTag, bind, `$modify('${name}') ?? '${orig}'`) + html.slice(node.openEnd + 1));
835
+ instanceAttrs[name] = ed.value; applied.push({ path: ed.path, prop, status: 'promoted', param: name, bind });
836
+ }
837
+ }
838
+ if (p.scope === 'instance' && (p.reverts || []).length) {
839
+ const html = readFileSync(compFile, 'utf8');
840
+ for (const rp of p.reverts) {
841
+ if (rp === '*') { allModifyParams(html).forEach(n => removeNames.add(n)); applied.push({ path: '*', status: 'revert-all' }); continue; }
842
+ const node = navigateToNode(html, rp); if (!node) continue;
843
+ const openTag = html.slice(node.tagStart, node.openEnd + 1);
844
+ [modParamIn(openTag, 'x-text'), modParamIn(openTag, 'x-html'), modParamIn(openTag, ':class')].forEach(n => { if (n) removeNames.add(n); });
845
+ applied.push({ path: rp, status: 'reverted' });
846
+ }
847
+ }
848
+ const inst = (Object.keys(instanceAttrs).length || removeNames.size) ? writeComponentInstance(indexFile, p.region, instanceAttrs, [...removeNames]) : null;
849
+ return { region: p.region, status: 'written', scope: p.scope, file: basename(compFile), applied, instance: inst && inst.status };
850
+ }
851
+ function writeComponentInstance(file, key, overrides, removals) {
852
+ let html = readFileSync(file, 'utf8');
853
+ const loc = locateEditEl(html, key);
854
+ if (!loc) return { region: key, status: 'error', reason: `x-edit="${key}" not found in ${basename(file)}` };
855
+ const inner = html.slice(loc.innerStart, loc.innerEnd);
856
+ const cm = /<x-[\w-]+/.exec(inner); // first component instance in the region
857
+ if (!cm) return { region: key, status: 'error', reason: 'no <x-*> instance in region' };
858
+ const instStart = loc.innerStart + cm.index, instEnd = tagEnd(html, instStart);
859
+ if (instEnd < 0) return { region: key, status: 'error', reason: 'malformed instance tag' };
860
+ let openTag = html.slice(instStart, instEnd + 1);
861
+ for (const [k, v] of Object.entries(overrides || {})) openTag = setAttr(openTag, k, v);
862
+ for (const name of (removals || [])) openTag = removeAttr(openTag, name);
863
+ html = html.slice(0, instStart) + openTag + html.slice(instEnd + 1);
864
+ writeFileSync(file, html);
865
+ return { region: key, status: 'written', file: basename(file), applied: Object.keys(overrides || {}), removed: removals || [] };
866
+ }
867
+
500
868
  // Resolve a request path against `root` and refuse anything that escapes.
501
869
  // `path.join` does NOT prevent `..` traversal — `join('/a/b', '/../../etc/passwd')`
502
870
  // returns `/etc/passwd`. Use `path.resolve` + an explicit prefix check.
@@ -571,6 +939,75 @@ function isLocalOrigin(origin, port) {
571
939
  }
572
940
 
573
941
  // --- HTTP server ---
942
+ // --- Appwrite dev proxy (see APPWRITE_PROXY_TARGET above) ---
943
+
944
+ // Rewrite upstream Set-Cookie so the session cookie is storable + sent on
945
+ // http://localhost: drop Domain (defaults to our host), drop Secure (we're http),
946
+ // and downgrade SameSite=None → Lax (None requires Secure, which we just removed).
947
+ function rewriteAppwriteSetCookie(values) {
948
+ return (Array.isArray(values) ? values : [values]).map(v => v
949
+ .replace(/;\s*Domain=[^;]*/ig, '')
950
+ .replace(/;\s*Secure\b/ig, '')
951
+ .replace(/;\s*SameSite=None/ig, '; SameSite=Lax'));
952
+ }
953
+
954
+ // /_appwrite/v1/account?x → /v1/account?x (strip our prefix, keep path + query)
955
+ function appwriteUpstreamPath(reqUrl, urlPath) {
956
+ const search = reqUrl.includes('?') ? reqUrl.slice(reqUrl.indexOf('?')) : '';
957
+ return urlPath.slice(APPWRITE_PROXY_PREFIX.length) + search;
958
+ }
959
+
960
+ function proxyAppwriteHttp(req, res, urlPath) {
961
+ let u;
962
+ try { u = new URL(APPWRITE_PROXY_TARGET); } catch { res.writeHead(502); res.end('bad APPWRITE_PROXY_TARGET'); return; }
963
+ const headers = { ...req.headers, host: u.host };
964
+ delete headers.connection;
965
+ // Force cookie-only auth. Appwrite emits X-Fallback-Cookies (because the
966
+ // forwarded Origin looks cross-origin) and the SDK then replays it on every
967
+ // request — but the Presences endpoint REJECTS any request carrying the
968
+ // fallback, even with a valid session cookie present. Strip it both ways so
969
+ // the real first-party cookie (which the proxy makes same-origin) is used.
970
+ delete headers['x-fallback-cookies'];
971
+ const transport = u.protocol === 'https:' ? httpsRequest : httpRequest;
972
+ const upstream = transport({
973
+ protocol: u.protocol, hostname: u.hostname,
974
+ port: u.port || (u.protocol === 'https:' ? 443 : 80),
975
+ method: req.method, path: appwriteUpstreamPath(req.url, urlPath), headers,
976
+ }, (up) => {
977
+ const outHeaders = { ...up.headers };
978
+ delete outHeaders.connection; delete outHeaders['transfer-encoding'];
979
+ delete outHeaders['x-fallback-cookies']; // keep the SDK out of localStorage-fallback mode
980
+ if (up.headers['set-cookie']) outHeaders['set-cookie'] = rewriteAppwriteSetCookie(up.headers['set-cookie']);
981
+ res.writeHead(up.statusCode || 502, outHeaders);
982
+ up.pipe(res);
983
+ });
984
+ upstream.on('error', (e) => { try { res.writeHead(502, { 'Content-Type': 'text/plain' }); res.end('appwrite proxy error: ' + e.message); } catch { /* client gone */ } });
985
+ req.pipe(upstream);
986
+ }
987
+
988
+ // Raw WebSocket tunnel for Appwrite Realtime (wss). Replays the HTTP upgrade over
989
+ // a TLS socket to the upstream and pipes both ways; the browser's first-party
990
+ // localhost cookie rides the upgrade headers, so realtime auth works too.
991
+ function proxyAppwriteWs(req, socket, head, urlPath) {
992
+ let u;
993
+ try { u = new URL(APPWRITE_PROXY_TARGET); } catch { socket.destroy(); return; }
994
+ const upstream = tlsConnect({ host: u.hostname, port: u.port || 443, servername: u.hostname }, () => {
995
+ const headers = { ...req.headers, host: u.host };
996
+ delete headers['x-fallback-cookies']; // cookie-only auth (see HTTP proxy)
997
+ let handshake = `${req.method} ${appwriteUpstreamPath(req.url, urlPath)} HTTP/1.1\r\n`;
998
+ for (const [k, v] of Object.entries(headers)) {
999
+ (Array.isArray(v) ? v : [v]).forEach(val => { handshake += `${k}: ${val}\r\n`; });
1000
+ }
1001
+ handshake += '\r\n';
1002
+ upstream.write(handshake);
1003
+ if (head && head.length) upstream.write(head);
1004
+ upstream.pipe(socket);
1005
+ socket.pipe(upstream);
1006
+ });
1007
+ upstream.on('error', () => socket.destroy());
1008
+ socket.on('error', () => upstream.destroy());
1009
+ }
1010
+
574
1011
  const server = createServer((req, res) => {
575
1012
  const urlPath = decodeURIComponent(req.url.split('?')[0]);
576
1013
 
@@ -584,6 +1021,13 @@ const server = createServer((req, res) => {
584
1021
  return;
585
1022
  }
586
1023
 
1024
+ // Appwrite dev proxy — forward to the configured Appwrite origin so the
1025
+ // session cookie is first-party (see APPWRITE_PROXY_TARGET).
1026
+ if (APPWRITE_PROXY_TARGET && urlPath.startsWith(APPWRITE_PROXY_PREFIX + '/')) {
1027
+ proxyAppwriteHttp(req, res, urlPath);
1028
+ return;
1029
+ }
1030
+
587
1031
  // Identity endpoint: lets `mnfst-run` (and `--list`) confirm that a server
588
1032
  // on a registered port really is OUR server for the expected root, not
589
1033
  // some unrelated process that happened to inherit a recycled PID/port.
@@ -657,6 +1101,60 @@ const server = createServer((req, res) => {
657
1101
  return;
658
1102
  }
659
1103
 
1104
+ // Edit-plugin B-side write-back (SPIKE, dev-only). POST + same-origin. Currently
1105
+ // handles the `data` regime: reorder the source CSV/JSON for a registered data
1106
+ // source. static/component regimes are reported unsupported (need an HTML parser).
1107
+ // Turnkey AI relay — same-origin chat proxy; key held server-side, never in
1108
+ // the browser. Inert (404) unless manifest.json has an `ai` block. No key →
1109
+ // mock stream so keyless dev works; add ANTHROPIC_API_KEY to .env for real.
1110
+ if (urlPath === '/_ai/chat') {
1111
+ if (!aiConfig) { res.writeHead(404); res.end(); return; }
1112
+ if (req.method !== 'POST') { res.writeHead(405, { 'Allow': 'POST' }); res.end(); return; }
1113
+ if (listenPort && !isLocalOrigin(req.headers.origin, listenPort)) { res.writeHead(403); res.end(); return; }
1114
+ let raw = '';
1115
+ req.on('data', c => { raw += c; if (raw.length > 25e6) req.destroy(); }); // 25MB cap (attachments)
1116
+ req.on('end', async () => {
1117
+ let payload = {}; try { payload = raw ? JSON.parse(raw) : {}; } catch { res.writeHead(400); res.end('bad json'); return; }
1118
+ try { if (aiKey) await streamRealAi(res, payload); else streamMockAi(res); }
1119
+ catch (e) { try { res.writeHead(500); res.end(String(e && e.message || e)); } catch (_) {} }
1120
+ });
1121
+ return;
1122
+ }
1123
+
1124
+ if (urlPath === '/__edit/save') {
1125
+ if (!EDIT_ENABLED) { res.writeHead(404); res.end(); return; } // opt-in (--edit / MNFST_EDIT=1): source write-back is authoring-only
1126
+ if (req.method !== 'POST') { res.writeHead(405, { 'Allow': 'POST' }); res.end(); return; }
1127
+ if (listenPort && !isLocalOrigin(req.headers.origin, listenPort)) { res.writeHead(403); res.end(); return; }
1128
+ let raw = '';
1129
+ req.on('data', c => { raw += c; if (raw.length > 1e6) req.destroy(); });
1130
+ req.on('end', () => {
1131
+ let patches; try { patches = JSON.parse(raw); } catch { res.writeHead(400); res.end('bad json'); return; }
1132
+ if (!Array.isArray(patches)) patches = [patches];
1133
+ let manifest = {}; try { manifest = JSON.parse(readFileSync(join(root, 'manifest.json'), 'utf8')); } catch {}
1134
+ const indexFile = join(root, 'index.html');
1135
+ const results = patches.map(p => {
1136
+ try {
1137
+ if (p.kind === 'data') {
1138
+ const src = (manifest.data || {})[p.source];
1139
+ const rel = typeof src === 'string' ? src : null;
1140
+ if (!rel) return { region: p.region, status: 'error', reason: `data source '${p.source}' is not a plain file path` };
1141
+ const file = safeResolve(rel);
1142
+ if (!file || !isFile(file)) return { region: p.region, status: 'error', reason: `file not found: ${rel}` };
1143
+ return { region: p.region, status: reorderDataFile(file, p.order) ? 'written' : 'noop', file: rel };
1144
+ }
1145
+ if (p.kind === 'data-val') return writeDataValue(p, manifest);
1146
+ if (p.kind === 'static') return writeStaticOps(indexFile, p.region, p.edits, p.order);
1147
+ if (p.kind === 'component') return writeComponentEdits(p, manifest);
1148
+ if (p.kind === 'theme') return writeThemeVar(p);
1149
+ return { region: p.region, status: 'skipped', reason: `unknown kind ${p.kind}` };
1150
+ } catch (e) { return { region: p.region, status: 'error', reason: e.message }; }
1151
+ });
1152
+ res.writeHead(200, { 'Content-Type': 'application/json' });
1153
+ res.end(JSON.stringify({ results }));
1154
+ });
1155
+ return;
1156
+ }
1157
+
660
1158
  const exact = safeResolve(urlPath);
661
1159
  if (exact && isFile(exact)) return serveFile(res, exact);
662
1160
 
@@ -748,6 +1246,16 @@ function startProxy(listenPort, upstreamPort) {
748
1246
  watchUpstream(upstreamPort);
749
1247
  }
750
1248
 
1249
+ // Appwrite Realtime (WebSocket) proxy — same first-party-cookie rationale as the
1250
+ // HTTP proxy. Without it, switching the endpoint to the proxy would break realtime.
1251
+ if (APPWRITE_PROXY_TARGET) {
1252
+ server.on('upgrade', (req, socket, head) => {
1253
+ const p = (req.url || '').split('?')[0];
1254
+ if (p.startsWith(APPWRITE_PROXY_PREFIX + '/')) proxyAppwriteWs(req, socket, head, p);
1255
+ else socket.destroy();
1256
+ });
1257
+ }
1258
+
751
1259
  function tryListen(p, attempt = 0) {
752
1260
  if (attempt > 20) {
753
1261
  console.error('mnfst-run: could not find a free port after 20 attempts.');