{% extends "base.html" %} {% block title %}CLI debug — Waikiki{% endblock %} {% block content %}

CLI debug

Every local-CLI call Waikiki makes — claude (chat + image prompts), agy/gemini (image render, chat) — with its exit code, timing, and full output. Newest first. Captures both the app and the MCP server.

{% if not entries %}

No CLI calls logged yet. Try the ✨ image button or the Chat panel, then reload this page.

{% endif %} {% for e in entries %}
{{ e.label }} {{ e.ts }} · wiki: {{ e.wiki or '—' }} · rc={{ e.returncode if e.returncode is not none else 'timeout' }} · {{ e.duration }}s

Command

{{ e.argv | join(' ') }}
{% if e.stdout %}

stdout

{{ e.stdout }}
{% endif %} {% if e.stderr %}

stderr

{{ e.stderr }}
{% endif %}
{% endfor %} {% endblock %}