File size: 15,054 Bytes
662ceed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 | import * as http from 'node:http';
import * as fs from 'node:fs';
import * as path from 'node:path';
import { fileURLToPath } from 'node:url';
import { querySource, scribeQuery } from './agents/scribe.js';
import { judgeAction } from './agents/judge.js';
import { enkiExplore } from './agents/enki.js';
import { adversaryCheck } from './agents/adversary.js';
import { generateMisconceptions } from './agents/misconception.js';
import { generateNoise } from './agents/noise.js';
import { prophesy } from './agents/prophet.js';
import { sentinelCheck } from './agents/sentinel.js';
import { sealDecision, verifyLedger } from './agents/ledge.js';
import { getEntries } from './worm.js';
import { runParallelAudit } from './twins/orchestrator.js';
import { runFailureLoop } from './failure-loop.js';
import { buildReverseProof } from './reverse-proof.js';
import type { Action, AgentName, PipelineResult, EnkiResult, AdversaryResult, TensionMap, DebateRound, DebateResult, ClaimType, VerdictType } from './types.js';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const PORT = parseInt(process.env.PORT || '3848', 10);
const HOST = process.env.HOST || '127.0.0.1';
const DOCS_DIR = path.resolve(__dirname, '..', '..', 'docs');
let eventIdCounter = 0;
function nextEventId(): string {
return `ha_${String(++eventIdCounter).padStart(6, '0')}`;
}
function parseBody(req: http.IncomingMessage): Promise<string> {
return new Promise((resolve, reject) => {
const chunks: Buffer[] = [];
let size = 0;
req.on('data', (chunk: Buffer) => {
size += chunk.length;
if (size > 100_000) { req.destroy(); reject(new Error('body too large')); return; }
chunks.push(chunk);
});
req.on('end', () => resolve(Buffer.concat(chunks).toString()));
req.on('error', reject);
});
}
function json(res: http.ServerResponse, status: number, data: unknown): void {
res.writeHead(status, { 'Content-Type': 'application/json' });
res.end(JSON.stringify(data));
}
function isPathSafe(filePath: string): boolean {
const resolved = path.resolve(DOCS_DIR, filePath);
return resolved.startsWith(DOCS_DIR + path.sep) || resolved === DOCS_DIR;
}
function serveStatic(res: http.ServerResponse, filePath: string): void {
if (!isPathSafe(filePath)) { json(res, 403, { error: 'forbidden' }); return; }
const fullPath = path.join(DOCS_DIR, filePath);
if (!fs.existsSync(fullPath)) { json(res, 404, { error: 'not found' }); return; }
const ext = path.extname(fullPath);
const mime: Record<string, string> = { '.html': 'text/html', '.css': 'text/css', '.js': 'application/javascript', '.json': 'application/json' };
res.writeHead(200, { 'Content-Type': mime[ext] || 'text/plain' });
res.end(fs.readFileSync(fullPath));
}
function validateQueryBody(body: unknown): body is { query: string; source_type?: string } {
return typeof body === 'object' && body !== null && typeof (body as Record<string, unknown>).query === 'string' && (body as Record<string, unknown>).query !== '';
}
function validateActionBody(body: unknown): body is { action: Action; agent?: string } {
if (typeof body !== 'object' || body === null) return false;
const b = body as Record<string, unknown>;
if (typeof b.action !== 'object' || b.action === null) return false;
const a = b.action as Record<string, unknown>;
return typeof a.name === 'string' && typeof a.truthful === 'boolean' && typeof a.harmful === 'boolean' && typeof a.exploitative === 'boolean';
}
const server = http.createServer(async (req, res) => {
const method = req.method || 'GET';
const url = req.url?.split('?')[0] || '/';
try {
if (method === 'GET' && url === '/health') {
const chain = verifyLedger();
return json(res, 200, { ok: true, version: '0.1.0', chain_valid: chain.valid, entries: getEntries().length });
}
if (method === 'GET' && url === '/') {
return serveStatic(res, 'index.html');
}
if (method === 'GET' && url.startsWith('/docs/')) {
return serveStatic(res, url.slice(6));
}
if (method === 'GET' && (url === '/debate.html' || url === '/query.html' || url === '/twins.html' || url === '/agents.html')) {
return serveStatic(res, url.slice(1));
}
if (method === 'POST' && url === '/query') {
let parsed: unknown;
try { parsed = JSON.parse(await parseBody(req)); } catch { return json(res, 400, { error: 'invalid JSON' }); }
if (!validateQueryBody(parsed)) return json(res, 400, { error: 'missing or invalid query field' });
const query = parsed.query;
const scribe = await querySource(query);
const action: Action = {
name: 'query',
truthful: true,
harmful: false,
exploitative: false,
requiresConsent: false,
hasConsent: false,
witnessed: true,
cited: scribe.citations.length > 0
};
const judge = judgeAction(action);
const enki = await enkiExplore(query);
const adversary = await adversaryCheck(enki);
const prophet = prophesy(action);
const sentinel = sentinelCheck(action, 'system');
let ledge = null;
if (sentinel.allowed && adversary.passed) {
ledge = sealDecision(nextEventId(), 'SCRIBE', `query:${query}`, judge.verdict, scribe.citations.map(c => c.source));
}
const artifacts = ['scribe.ts', 'judge.ts', 'enki.ts', 'adversary.ts', 'prophet.ts', 'sentinel.ts', 'ledge.ts'];
const reverseProof = buildReverseProof(
artifacts,
Object.fromEntries(artifacts.map(a => [a, `query:${query}`])),
Object.fromEntries(artifacts.map(a => [a, 'Second Trust Deed Article III'])),
Object.fromEntries(artifacts.map(a => [a, 'SCRIBE'])),
Object.fromEntries(artifacts.map(a => [a, 'cold_boot'])),
Object.fromEntries(artifacts.map(a => [a, ledge?.hash || 'pending']))
);
const finalVerdict = !adversary.passed ? 'repent' : judge.verdict;
const result = {
scribe,
judge,
enki,
adversary,
tensionMap: enki.tensionMap,
prophet,
sentinel,
ledge,
finalVerdict,
reverseProof: { allVerified: reverseProof.allVerified, orphanArtifacts: reverseProof.orphanArtifacts }
};
return json(res, 200, result);
}
if (method === 'POST' && url === '/action') {
let parsed: unknown;
try { parsed = JSON.parse(await parseBody(req)); } catch { return json(res, 400, { error: 'invalid JSON' }); }
if (!validateActionBody(parsed)) return json(res, 400, { error: 'missing or invalid action fields (name, truthful, harmful, exploitative required)' });
const action = parsed.action as Action;
const agent = (parsed.agent || 'JUDGE') as AgentName;
const judge = judgeAction(action);
const prophet = prophesy(action);
const sentinel = sentinelCheck(action, agent);
let ledge = null;
if (sentinel.allowed) {
ledge = sealDecision(nextEventId(), agent, action.name, judge.verdict, []);
}
return json(res, 200, { judge, prophet, sentinel, ledge, finalVerdict: judge.verdict });
}
if (method === 'GET' && url === '/state') {
return json(res, 200, { agents: ['SCRIBE', 'JUDGE', 'PROPHET', 'SENTINEL', 'LEDGE'], status: 'ready' });
}
if (method === 'GET' && url === '/worm') {
return json(res, 200, { entries: getEntries() });
}
if (method === 'POST' && url === '/worm/verify') {
return json(res, 200, verifyLedger());
}
if (method === 'GET' && url.startsWith('/agents/')) {
const name = url.split('/agents/')[1];
return json(res, 200, { name, status: 'active' });
}
if (method === 'POST' && url === '/audit') {
let parsed: unknown;
try { parsed = JSON.parse(await parseBody(req)); } catch { return json(res, 400, { error: 'invalid JSON' }); }
const srcFiles = ((parsed as Record<string, unknown>).files || []) as { name: string; content: string }[];
const audit = await runParallelAudit(srcFiles);
const reverseProof = buildReverseProof(
srcFiles.map(f => f.name),
Object.fromEntries(srcFiles.map(f => [f.name, 'audit request'])),
Object.fromEntries(srcFiles.map(f => [f.name, 'Second Trust Deed Article IV'])),
Object.fromEntries(srcFiles.map(f => [f.name, 'SENTINEL'])),
Object.fromEntries(srcFiles.map(f => [f.name, 'audit'])),
Object.fromEntries(srcFiles.map(f => [f.name, 'pending']))
);
const failureLoop = runFailureLoop(audit, reverseProof);
return json(res, 200, { audit, failureLoop, reverseProof: { allVerified: reverseProof.allVerified, orphanArtifacts: reverseProof.orphanArtifacts }, productionCandidate: audit.overallVerdict === 'pass' && !failureLoop.requiresRepentance });
}
if (method === 'POST' && url === '/debate') {
let parsed: unknown;
try { parsed = JSON.parse(await parseBody(req)); } catch { return json(res, 400, { error: 'invalid JSON' }); }
const question = (parsed as Record<string, unknown>).question;
if (typeof question !== 'string' || question === '') return json(res, 400, { error: 'missing or invalid question field' });
const rounds = 3;
const debateRounds: unknown[] = [];
for (let i = 1; i <= rounds; i++) {
const scribe = await scribeQuery(question);
const action: Action = {
name: `debate:${question}`,
truthful: true,
harmful: false,
exploitative: false,
requiresConsent: false,
hasConsent: false,
witnessed: true,
cited: scribe.citations.length > 0
};
const judge = judgeAction(action);
const enki = await enkiExplore(question);
const adversary = await adversaryCheck(enki);
const misconceptions = await generateMisconceptions(enki.claim, enki.synthesis);
const noise = await generateNoise(question);
const prophet = prophesy(action);
const sentinel = sentinelCheck(action, 'SCRIBE');
let ledge = null;
if (sentinel.allowed && adversary.passed) {
ledge = sealDecision(`debate_r${i}_${Date.now().toString(36)}`, 'SCRIBE', `debate:${question}`, judge.verdict, scribe.citations.map(c => c.source));
}
const highMisconceptions = misconceptions.filter(m => m.severity === 'high' || m.severity === 'critical');
const highNoise = noise.filter(n => n.severity === 'high');
let classification: ClaimType = 'unverified';
if (highMisconceptions.length > 0 || highNoise.length > 0) classification = 'misconception';
else if (!adversary.passed) classification = 'unverified';
else if (enki.synthesis_label === 'fact') classification = 'fact';
else if (enki.synthesis_label === 'hypothesis') classification = 'hypothesis';
else if (enki.synthesis_label === 'analogy') classification = 'analogy';
else if (enki.synthesis_label === 'doctrine') classification = 'synthesis';
const evidence = Math.min(0.3 + scribe.citations.length * 0.15, 0.9);
const logic = adversary.passed ? 0.8 : 0.3;
const citation = Math.min(0.2 + scribe.citations.length * 0.2, 0.9);
const resistance = Math.max(0.9 - misconceptions.length * 0.15 - noise.length * 0.1, 0.1);
const confidence = (evidence + logic + citation + resistance) / 4;
const scores = {
evidence: Math.round(evidence * 100) / 100,
logic: Math.round(logic * 100) / 100,
citation: Math.round(citation * 100) / 100,
resistance: Math.round(resistance * 100) / 100,
confidence: Math.round(confidence * 100) / 100
};
let verdict: VerdictType = 'insufficient_evidence';
if (classification === 'misconception') verdict = 'rejected';
else if (!adversary.passed) verdict = 'contested';
else if (scores.confidence >= 0.7 && classification === 'fact') verdict = 'supported';
else if (scores.confidence >= 0.5) verdict = 'supported';
else if (scores.confidence >= 0.3) verdict = 'contested';
else if (scores.confidence >= 0.1) verdict = 'unresolved';
debateRounds.push({
round: i,
question,
scribe: { citations: scribe.citations, confidence: scribe.confidence },
enki: { claim: enki.claim, synthesis: enki.synthesis, synthesis_label: enki.synthesis_label, confidence: enki.confidence, tensionMap: enki.tensionMap },
adversary: { passed: adversary.passed, challenges: adversary.challenges, verdict: adversary.verdict },
misconception: misconceptions,
noise,
judge: { verdict: judge.verdict, violatedRules: judge.violatedRules, leanCheck: judge.leanCheck },
prophet: { riskLevel: prophet.riskLevel, warnings: prophet.warnings, recommendation: prophet.recommendation },
sentinel: { allowed: sentinel.allowed, reason: sentinel.reason, classification },
ledge: ledge ? { sequence: ledge.sequence, hash: ledge.hash, sealed: ledge.sealed } : null,
scores,
verdict
});
}
const claimsByType: Record<string, number> = {};
for (const r of debateRounds) {
const rr = r as { sentinel: { classification: ClaimType } };
claimsByType[rr.sentinel.classification] = (claimsByType[rr.sentinel.classification] || 0) + 1;
}
const lastRound = debateRounds[debateRounds.length - 1] as { verdict: VerdictType };
const sealedHash = ((debateRounds[debateRounds.length - 1] as { ledge: { hash: string } | null }).ledge || {}).hash || null;
const result: DebateResult = {
question,
rounds: debateRounds as DebateRound[],
finalVerdict: lastRound.verdict,
totalClaims: debateRounds.length,
claimsByType: claimsByType as Record<ClaimType, number>,
sealedHash
};
const today = new Date().toISOString().split('T')[0];
const auditDir = path.resolve(__dirname, '..', '..', 'debates');
if (!fs.existsSync(auditDir)) fs.mkdirSync(auditDir, { recursive: true });
const auditPath = path.join(auditDir, `${today}.json`);
const existing: DebateResult[] = fs.existsSync(auditPath) ? JSON.parse(fs.readFileSync(auditPath, 'utf-8')) : [];
existing.push(result);
fs.writeFileSync(auditPath, JSON.stringify(existing, null, 2));
return json(res, 200, result);
}
json(res, 404, { error: 'not found' });
} catch (err) {
json(res, 500, { error: 'internal error' });
}
});
server.listen(PORT, HOST, () => {
console.log(`Holy Agents running at http://${HOST}:${PORT}`);
});
|