{% extends "base.html" %} {% block title %}Home | Silisocs Studio{% endblock %} {% block content %}

Simulation observatory

Simulation workbench

Shape possible worlds, set them in motion, and follow what emerges.

Field focus {{ runs[0].artifact.scenario if runs else 'Ready for a first run' }} {% if runs %}{{ runs[0].artifact.num_agents or 0 }} agents · {{ runs[0].artifact.num_steps or 0 }} episodes{% else %}Create a scenario to activate the field{% endif %}
{% for record in runs %} {{ (record.artifact.scenario or 'R')[:2]|upper }} {{ record.artifact.scenario or record.path.name }}{{ record.artifact.status or 'legacy' }} {% endfor %} {% if not runs %}+Start herenew scenario{% endif %}
Indexed runs{{ all_runs|length }}
Successful{{ all_runs|selectattr('artifact.status', 'equalto', 'success')|list|length }}
Scenarios{{ scenario_count }}
Studies{{ study_count }}
Live now{{ live_count }}

Latest trajectories

Recent runs

Explore the archive
{% if runs %}
{% for record in runs %} {{ '%02d'|format(loop.index) }} {{ (record.artifact.scenario or 'R')[:2]|upper }} {{ record.artifact.scenario or record.path.name }}{{ record.id }}{# Full only when the run actually completed — the track is a completion signal, not a step-count decoration. #} {{ record.artifact.num_agents or '—' }}agents {{ record.artifact.num_steps or '—' }}episodes {{ record.artifact.status or 'legacy' }} {% endfor %}
{% else %}
Your observatory is quiet

Create a scenario and launch it. Its artifacts will appear here automatically.

Create a scenario
{% endif %} {% endblock %}