実装セッション プロンプトパック — {{ project_name }}

対象: {{ filter_label }} / タスク数: {{ task_count }}{% if grouped %} / group_by: {{ group_by }}{% endif %}
使い方: 各カードの「Copy」で本文をコピーし、新規セッションに貼り付ける(1タスク=1セッション)。

共通運用ルール

{% if discipline %}
{{ discipline }}
{% endif %}

進行図

{% for lane in lanes %}
{% if lane.label %}
{{ lane.label }}
{% endif %}
{% for n in lane.nodes %}
{{ n.id }}
{{ n.title }}
{{ n.priority }} {% if n.suggested_model %}{{ n.suggested_model }}{% endif %}
{% if n.blocked_by %}
⛔ 依存(先に完了): {{ n.blocked_by | join(", ") }}
{% endif %} {% if n.after_recommended %}
↝ 推奨順(この後に): {{ n.after_recommended | join(", ") }}
{% endif %}
{% endfor %}
{% endfor %}

プロンプトカード

{% for c in cards %}
{{ c.id }} — {{ c.title }}
phase: {{ c.phase }} / priority: {{ c.priority }} / status: {{ c.status }}
{{ c.body }}
{% endfor %}