Prompts

Reusable agent-prompt register. Every prompt has a local slug and a fully-qualified ID (agent-id/P-NNN) for cross-fleet reference. Created via fw prompt create. See T-1283 design notes.

{% if prompts %} {% for p in prompts %} {% endfor %}
ID (slug) QID Kind Name Tags
{{ p['_slug'] }} {% if p.get('qid') %}{{ p['qid'] }}{% else %}{% endif %} {{ p.get('kind', '?') }} {{ p.get('name', '?') }} {% for tag in (p.get('tags') or []) %} {{ tag }} {% endfor %}
{% else %}

No prompts yet. Create one with fw prompt create.

{% endif %}