${title}${chips}
${projectStr} · #${it.number}${it.author ? ` · 👤 ${escapeHtml(it.author)}` : ""} · 💬 ${it.comment_count} · ${relTime(it.updated_at)}${aiBadge ? ` · ${aiBadge}` : ""}${modelChip}
`;
}
export async function buildIssuesFeed(
state: "open" | "closed" | "all",
q: string,
label: string = "",
viewer?: { login: string; is_admin: number } | null,
): Promise