{% extends "base.html" %} {% block title %}Machines - Invincible{% endblock %} {% block content %}

Paired machines

PCs running invincible harness connect on this account. Confirmed tool actions run on the machine they were staged for — a machine only ever sees this account's work.

{% if machines %}
{% for m in machines %} {% endfor %}
MachineIDPlatform CapabilitiesStatus
{{ m.machine_name or '(unnamed)' }} {{ m.machine_id }} {{ m.platform or '—' }} {{ m.capability_names | join(', ') if m.capability_names else 'none detected' }} {% if m.online %}online{% else %}offline{% endif %}
{% else %}

No machines seen yet. On the PC you want to reach: pip install invincible-ai, then invincible harness setup and invincible harness connect.

{% endif %} {% endblock content %}