{% extends "dashboard/base.html" %} {% set active_page = 'tokens' %} {% block title %}Connected Apps - CmdForge Dashboard{% endblock %} {% block dashboard_header %}

Connected Apps

Manage devices connected to your CmdForge account

{% endblock %} {% block dashboard_content %}

About Connected Apps

Connected apps can publish tools and sync your work across devices. You can connect via the TUI (cmdforge ui → Connect button) or run cmdforge config connect {{ user.slug }} in your terminal, then click "Connect New App" here to complete the connection.

{% if tokens %}
{% for token in tokens %} {% endfor %}
Device Connected Last Active Actions

{{ token.hostname or token.name }}

{% if token.hostname and token.name != 'App: ' + token.hostname %}

{{ token.name }}

{% endif %}
{{ token.created_at|date_format }} {{ token.last_used_at|timeago if token.last_used_at else 'Never' }}
{% else %}

No connected apps

Connect your CmdForge CLI to sync tools and publish across devices.

{% endif %} {% endblock %}