{% extends "base.html" %} {% block title %}Personal Knowledge Base — ICDEV™{% endblock %} {% block content %}
📚 Personal Knowledge Base

URLs and notes you teach your AI coworker. Queried automatically in briefings and coworker sessions.

Add URL
Add Note / Paste Text
{% if items %} {% for item in items %}
{% if item.source_type == 'url' %}🔗{% elif item.source_type == 'text' %}📝{% else %}📄{% endif %}
{{ item.title or item.url or 'Untitled' }}
{% if item.url %}
{{ item.url }}
{% endif %} {% if item.summary %}
{{ item.summary[:120] }}{% if item.summary|length > 120 %}…{% endif %}
{% endif %} {{ item.status }}
{% endfor %} {% else %}
No knowledge items yet. Add a URL or paste some text above.
{% endif %}
{% include "includes/iqe_query_widget.html" %} {% endblock %}