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

Workspace system

Settings

Authorization and the extension surfaces currently visible to Studio.

Lab authorization

Stored only in this browser and attached to control-plane mutations.

Project repositories

Explicitly trusted projects contribute scenarios and implementations discovered from their runtime class contracts.

{% for repository in repositories %}
{% if repository.primary %}{{ repository.label }}{% else %}{% endif %}{{ repository.path }}{% if not repository.primary %}{% else %}primary{% endif %}
{% endfor %}
{% if discovery_errors %}
Discovery notices{% for source, errors in discovery_errors.items() %}{% for error in errors %}{{ source }} · {{ error }}{% endfor %}{% endfor %}
{% endif %}

Detected implementations

Class paths and configured slot values grouped by the generic runtime contract they satisfy.

{% if extension_catalog %}
{% for kind, entries in extension_catalog|dictsort %}

{{ kind }}

{% for entry in entries %}{{ entry.value }}{{ entry.origin }}{% endfor %}
{% endfor %}
{% else %}
No project extensions detected

Built-ins remain available directly from their runtime registries.

{% endif %}

Analysis instruments

Panels discovered through the generic analysis extension contract.

{% for panel in panels %}{% endfor %}
PanelScopeRequirements
{{ panel.name }}{{ panel.scope }}{{ panel.requires|join(', ') or 'artifact' }}
{% include "_repository_connect.html" %} {% endblock %}