{% extends "base.html" %} {% import "_agents.html" as agentlist %} {% import "_cli_only.html" as terminal %} {% block title %}Setup check{% endblock %} {% block topbar_main %}

Setup check

The answer flanner status prints {% endblock %} {% block content %}
{% if said %}
{{ said }}
{% endif %}

Agents

{{ agentlist.rows(agents) }}

Each agent is checked where that agent looks for its tools.

Tools

Advertised to agents{{ check.tools.count }}
Linear and Jira {{ 'included' if check.tools.integrations else 'switched off' }}

This project

{% if check.project %}
Project{{ check.project.name }}
Directory{{ check.project.root }}
Skill use recorded for {{ watched | join(', ') if watched else 'no agent' }}
Capture mode How much agents may keep here. Saved to this project's policy file, the same write flanner mem mode makes.
{% if check.capture_mode not in modes %}

{{ check.capture_mode }}

{% endif %} {% else %}

flanner web was started outside any flanner project, so there is no project, capture mode or skill watching to show. Start it from inside a repository flanner manages, or run flanner init there.

{% endif %}

Peers

{% if check.peers.signed_in %}
Signed in as{{ check.peers.user_id }}
Other devices known{{ check.peers.known_devices }}
Access{{ check.peers.entitlement }}
{% else %}

Not signed in. Everything above works without an account.

{{ terminal.row(cli_only("Enrol this machine"), "flanner login ") }} {% endif %}
{% endblock %}