forked from retoor/devplacepy
feat: add six specialized Claude agent definitions under .claude/agents for audit, devii, docs, dry, fanout, and frontend maintenance
This commit is contained in:
@@ -23,17 +23,18 @@
|
||||
<span class="icon">🔍</span>
|
||||
Search
|
||||
</a>
|
||||
{% set ns = namespace(section=None) %}
|
||||
{% for p in pages %}
|
||||
{% if p.get('section') and p.section != ns.section %}
|
||||
<div class="sidebar-heading sidebar-subheading">{{ p.section }}</div>
|
||||
{% set ns.section = p.section %}
|
||||
{% elif not p.get('section') %}{% set ns.section = None %}{% endif %}
|
||||
<a href="/docs/{{ p.slug }}.html" class="sidebar-link {% if p.get('section') %}sidebar-link-nested{% endif %} {% if p.slug == current %}active{% endif %}">
|
||||
{% for audience, tiers in nav %}
|
||||
<div class="sidebar-heading sidebar-tier">{{ audience }}</div>
|
||||
{% for section, section_pages in tiers %}
|
||||
<div class="sidebar-heading sidebar-subheading">{{ section }}</div>
|
||||
{% for p in section_pages %}
|
||||
<a href="/docs/{{ p.slug }}.html" class="sidebar-link sidebar-link-nested {% if p.slug == current %}active{% endif %}">
|
||||
<span class="icon">📘</span>
|
||||
{{ p.title }}
|
||||
</a>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="sidebar-heading docs-download-heading">Download</div>
|
||||
<div class="sidebar-nav">
|
||||
|
||||
Reference in New Issue
Block a user