IDE Mode — Workspace Status
Active workspace
{{ active_workspace if active_workspace else "not detected" }}
Inline savings today
{% if inline_savings_tokens is not none and inline_savings_tokens > 0 %}
{{ inline_savings_tokens }}t saved
{% else %}
not yet measured
{% endif %}
Timeout events
{{ timeout_count if timeout_count is not none else "—" }}
Workspace Detection
{% if active_workspace %}
TokenPak detected workspace: {{ active_workspace }}
{% else %}
No IDE workspace detected. Install the VS Code or JetBrains extension to enable workspace attribution.
{% endif %}
Inline Savings Totals
{% if inline_savings_tokens is not none and inline_savings_tokens > 0 %}
| Metric | Value |
| Tokens saved | {{ inline_savings_tokens }} |
| Cost saved | ${{ "%.4f"|format(inline_savings_cost) if inline_savings_cost is not none else "0.0000" }} |
{% else %}
No inline savings data yet. Route your IDE's AI completions through TokenPak to see savings here.
{% endif %}
IDE-Specific Timeout Events (today)
{% if timeout_events %}
{% for ev in timeout_events %}
- {{ ev.timestamp }} — {{ ev.description }}
{% endfor %}
{% elif timeout_count is not none and timeout_count == 0 %}
No timeout events today.
{% else %}
IDE timeout event tracking requires proxy ≥ v1.4.
{% endif %}