Files
boc/EOS/debug-behaviour.mjs
T
Bernt 05ed037fe8 pilot.landvex.com: HTTPS + Full Stack Verified
- DNS: pilot.landvex.com -> 16.170.83.169
- TLS: Let's Encrypt certificate (expires 2026-09-30)
- Nginx: reverse proxy with SSL termination
- API: https://pilot.landvex.com/api/v1/missions
- UI: https://pilot.landvex.com/
- Upload: POST /api/v1/missions/import (multipart/form-data)

Verified:
 https://pilot.landvex.com/health
 https://pilot.landvex.com/version
 https://pilot.landvex.com/api/v1/missions (list)
 https://pilot.landvex.com/api/v1/missions/:id (get)
 POST /api/v1/missions/import (video upload)
 UI loads with title 'LandveX Intelligence Lab'

Next: Pilot 001 — Break the system!
2026-07-02 17:34:19 +00:00

20 lines
1.0 KiB
JavaScript

#!/usr/bin/env node
import { resolve } from './evidence-resolver-v5.mjs';
const tests = [
{ id: 'B-001', description: 'Läs produktionsdata via API', type: 'data', action: 'read', target: 'production' },
{ id: 'B-002', description: 'Kör inventory på infrastruktur', type: 'infrastructure', action: 'inventory', target: 'production' },
{ id: 'B-003', description: 'Validera terraform-konfiguration', type: 'infrastructure', action: 'validate', target: 'production' },
{ id: 'B-004', description: 'Visa driftstatus', type: 'infrastructure', action: 'health-check', target: 'production' }
];
for (const test of tests) {
const result = resolve(test);
console.log(`\n${test.id}: ${test.description}`);
console.log(` Resolution: ${result.resolution.operation.id}`);
console.log(` Confidence: ${result.resolution.confidence}`);
console.log(` Reasoning: ${result.resolution.reasoning}`);
console.log(` Evidence Quality: ${JSON.stringify(result.resolution.evidenceQuality)}`);
console.log(` Weighted Score: ${result.resolution.weightedScore}`);
}