{% extends "base.html" %} {% block title %}Workflow — E2ER{% endblock %} {% block content %}

Workflow

The specialists this install can dispatch, the skill files each one is given, and the artifact it must write. A specialist that does not produce its declared artifact fails its contract and is retried with the violation fed back into the prompt.

{{ counts.specialists }}specialists
{{ counts.on_disk }}skill files installed
{{ counts.referenced }}actually loaded
{{ counts.unused }}shipped, never loaded
{% if counts.missing %}
{{ counts.missing }}referenced but absent
{% endif %}
{% if missing %}

Referenced but not installed

A specialist asks for these and they are not on disk. The loader finds nothing and raises nothing, so the instruction never reaches the model.

{% endif %}

Specialists

{% for sp in specialists %}
{{ sp.name }} {{ sp.artifact or "no declared artifact" }} {{ sp.skills | length }} skill{% if sp.skills | length != 1 %}s{% endif %}
{% if sp.sidecars %}

Sidecars: {% for s in sp.sidecars %}{{ s }}{% if not loop.last %}, {% endif %}{% endfor %}

{% endif %} {% if sp.skills %}
    {% for s in sp.skills %}
  • {{ s }}
  • {% endfor %}
{% else %}

No skill files — runs on the base prompt alone.

{% endif %}
{% endfor %}

Installed but never loaded

These skill files ship with the package and no specialist references them. Each is either a capability that was written and never wired up, or dead weight. Editing one changes nothing about any run.

{% endblock %}