{% extends "base.html" %} {% block title %}{{ skill_slug }} ยท {{ project_key }} ยท watchmen{% endblock %} {% block content %}

{{ skill_slug }}

{% if status.pinned %} ๐Ÿ”’ pinned {% endif %} {% if status.blocked %} โŠ˜ blocked {% endif %}
{% if provenance and provenance.description %}
{{ provenance.description }}
{% endif %}
{% if status.pinned %}
{% else %}
{% endif %}
{% if provenance %}

Provenance

from _candidates.json ยท CLI: watchmen why {{ project_key }} {{ skill_slug }}
{% if provenance.when_to_use %}
When to use
    {% for t in provenance.when_to_use %}
  • โ€ข{{ t }}
  • {% endfor %} {% if provenance.when_to_use_more %}
  • โ€ฆ {{ provenance.when_to_use_more }} more triggers
  • {% endif %}
{% endif %} {% if provenance.source_files %}
Source files ({{ provenance.source_files|length }})
    {% for sf in provenance.source_files[:10] %}
  • {% if sf.exists %}โœ“{% else %}?{% endif %} {{ sf.path }}
  • {% endfor %} {% if provenance.source_files|length > 10 %}
  • โ€ฆ {{ provenance.source_files|length - 10 }} more
  • {% endif %}
{% endif %}
{% if provenance.sessions %}
Source sessions ({{ provenance.sessions|length }})
{% for s in provenance.sessions %} {% endfor %}
session agent date first prompt
{{ s.id }} {{ s.agent }} {{ s.date or "ยท" }} {{ s.snippet }}{% if not s.found %} (not in corpus){% endif %}
{% endif %} {% if provenance.curator_excerpt %}
Curator rationale
{{ provenance.curator_excerpt }}
{% endif %}
{% endif %} {% if files %}
Files in this bundle
{% for f in files %} {{ f.rel }} {{ "%.1f"|format(f.size/1024) }} KB {% endfor %}
{% endif %} {% if skill_md %}
{{ skill_md|safe }}
{% else %}
No SKILL.md found.
{% endif %} {% endblock %}