chore: D22 落地——docs/SDD/wiki/CLAUDE.md 進 repo(Gitea private 預設全 push)

頂層 D22 決策(leo 2026-07-03 拍板):推什麼由開發環境歸屬決定,
Gitea private=除機敏值/build 產物/.github 外全 push。
解 T1.5 卡點:雲端工人 clone 拿得到 credential-store-migration.md,可就地改寫 SDD。
機敏掃描兩輪通過(新增 189 檔約 2.1MB,node_modules/dist/wasm 照舊排除)。

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
uncle6me-web
2026-07-03 07:13:15 +08:00
parent c830150da1
commit 5d00e71275
190 changed files with 39486 additions and 14 deletions
+23
View File
@@ -0,0 +1,23 @@
'use client';
export const runtime = 'edge';
// Mira 對話單頁(手機用;桌機改用 layout.tsx 的右側 dock
// SDD: polaris/mira/.agents/specs/mira-app/design.md §3.6.5
import Link from 'next/link';
import MiraChat from '../_shared/MiraChat';
import '../mira.css';
export default function MiraChatPage() {
return (
<main className="mira-page mira-chat-page">
<header style={{ padding: '16px 0 4px' }}>
<Link href="/mira/feed" style={{ color: '#888', fontSize: 14, textDecoration: 'none' }}> </Link>
<h1 style={{ fontSize: 20, fontWeight: 700, color: '#fff', margin: '6px 0 0' }}>💬 Mira </h1>
<p style={{ color: '#888', fontSize: 12, marginTop: 2 }}> wiki / </p>
</header>
<MiraChat />
</main>
);
}