Tram routing, badge policy, containment tiers, and emergency procedures for Sector C.
Documentation
—
Facility Protocols
HEV Mark IV Manual
Aux power, hazard sensors, motion assist, and service intervals.
Lambda Procedures
Interlocks, energy routing, and shutdown pathways for λ-cleared personnel.
Facility Protocols
Sector C Operations tram • access • containment
Tram Routing
- BMTS priority slots during shift changes
- Freight spurs gated behind badge tier C-2+
- Emergency bypass enabled on SEV-2+
Badge Policy
- PKI-backed credentials (rolling keys)
- Escorted visitor flow with single-use QR
- Randomized bag & locker inspections
Containment Tiers
- Tier 1: Routine lab operations
- Tier 2: Enhanced PPE + escort
- Tier 3: λ-clearance + interlocks
HEV Mark IV Manual
HEV Systems power • sensors • mobility
Aux Power
Trickle charge from wall mount or tram coupling. Battery diagnostics available via visor menu.
Hazard Sensors
Radiation, bio-agent, and impact channels; audible alerts escalate by severity.
Motion Assist
Load-bearing actuators with sprint reserve; auto-dampers reduce slip on wet grates.
Commands
# HEV visor diagnostics (local)
hev diag --battery --sensors --mobility
# Suit telemetry (signed)
hev telemetry --export /var/log/hev.tlv --sign cosign.key
# Firmware safe update
hev fw update hev-mkiv-4.2.1.bin --verify --reboot
Lambda Procedures
λ Interlocks energy • interlocks • shutdown
Energy Routing
Lambda core feed with staged capacitors. Verify bus isolation before energizing coils.
Interlocks
Physical keyswitch + software guard. Dual-operator confirmation required at λ-2.
Shutdown
Nominal: ramp-down. Emergency: scram → vent → field collapse. Log all events.
Checklist
[λ-2] PRE-ENERGIZE
1. Bus isolation ✓
2. Coil cooling: nominal ✓
3. Containment: sealed ✓
4. Interlocks: armed ✓
5. Observers: briefed ✓
API Reference
Status & Telemetry API JSON • auth • examples
Endpoints
- GET /api/status — global KPIs
- GET /api/regions — region list + signals
- GET /api/regions/{id} — per-region detail
cURL
curl -s https://blackmesa.systems/api/status | jq .
curl -s https://blackmesa.systems/api/regions/us-east | jq '.latency_ms, .uptime_30d'
JavaScript
async function getStatus() {
const r = await fetch('/api/status', {cache: 'no-store'});
if (!r.ok) throw new Error('status failed');
return r.json();
}
getStatus().then(console.log).catch(console.error);
Quick sample
curl -s https://blackmesa.systems/api/status
{
"network": {"latency_ms": 3.4, "loss_pct": 0},
"fleet": {"nodes": 42, "util": 0.63},
"object": {"slo": 99.7, "event": "rebuild"}
}