{% extends "base.html" %} {% block title %}Skills — e2er{% endblock %} {% block content %}

Skills

Skill packs published by other research projects, indexed by RISE. e2er installs them from their own repositories rather than shipping copies — most of this catalogue is not e2er's to redistribute, and the authors keep their attribution.

{% if message %}
{{ message }}
{% endif %} {% if error %}

No catalogue found

{{ error }}

git clone https://github.com/bhanneke/RISE
export RISE_PATH=/path/to/RISE
{% else %}
{{ totals.packs }}packs
{{ totals.skills }}skills available
{{ installed | length }}installed here
{% for p in packs %} {% endfor %}
PackSkillsLicenceBundleable
{{ p.name }}
{{ p.maintainers | join(', ') }} {% if p.notes %}
{{ p.notes[:160] }}{% endif %}
{{ p.count }} {{ p.license or '—' }} {# The question that made this an installer rather than a copy. It never blocks installing: fetching a public file onto your own machine is not redistribution. #} {% if p.redistributable %}yes{% else %}no{% endif %} {% if p.slug in installed %} {{ installed[p.slug].files }} files installed {% else %}
{% endif %}

Installed packs live in {{ install_root }} and are searched after e2er's own skills, so an installed pack extends the library rather than replacing part of it. Each carries a pack.json recording its source, licence and maintainers.

Catalogue read from {{ catalogue_path }}. Equivalent on the command line: e2er skills list.

{% endif %} {% endblock %}