{% extends "base.html" %} {% block title %}Config — Agent Wasp{% endblock %} {% block page_css %} {% endblock %} {% block content %}

Config Center

How the agent operates — prime.md system prompt, feature flags & runtime parameters

Flags stored in Redis — most apply live, restart required for subsystems
prime.md
{{ prime_path }}

Injected at the top of every system prompt. Changes take effect immediately — no restart needed. Use this for operator-level instructions and behavioral overrides.

{{ prime_content|length }} chars Ctrl+S to save
Feature Flags runtime toggles
{% set groups = ["autonomy","execution","learning","memory","safety"] %} {% set group_labels = {"autonomy":"Autonomy","execution":"Execution","learning":"Learning","memory":"Memory","safety":"Safety"} %} {% set group_colors = {"autonomy":"#f59e0b","execution":"#8b5cf6","learning":"#10b981","memory":"#3b82f6","safety":"#ef4444"} %} {% set restart_flags = ["goal_engine_enabled","agents_enabled","scheduler_enabled","integrations_enabled","governor_enabled"] %}
{% for group in groups %} {% set gflags = feature_flags | selectattr("group","equalto",group) | list %} {% if gflags %}
{{ group_labels[group] }}
{% for flag in gflags %}
{{ flag.label }} {% if flag.key in restart_flags %} {% endif %}
{{ flag.desc }}
{% endfor %}
{% endif %} {% endfor %}

↻ marks flags that require a container restart to take effect.

Runtime Params read-only · env / config.py
{% for key, val in runtime_params.items() %}
{{ key }} {{ val }}
{% endfor %}

Set via environment variables. To change permanently, update docker-compose.yml and rebuild.

{% endblock %} {% block extra_scripts %} {% endblock %}