/* ===== BADGE ROW ===== */ .badge-row { position: relative; width: 100%; height: 150px; z-index: 1001; } .badge-left, .badge-center, .badge-right { position: absolute; text-decoration: none; } .badge-left { left: 50%; transform: translateX(-120%); top: 8px; } .badge-center { left: 50%; transform: translateX(-30%); top: -16px; } .badge-right { left: 50%; transform: translateX(70%); top: 8px; } .badge-left img, .badge-right img { height: 36px; width: auto; } .badge-center img { height: 78px; width: auto; } @media (min-width: 769px) { .badge-left img, .badge-right img { height: 48px; } .badge-center img { height: 144px; } }
#97

🔍 ideatorich 與 ideadata 整合問題診斷

2026-04-15 16:33 | 系統整合 | 由貞出品

💡 核心發現

ideatorich 和 ideadata 是兩個完全獨立的系統

ideatorich 寫入 concepts.json,不主動更新 ideadata.html;
ideadata.html 使用 localStorage,各自為政。

📊 數據流向對比

元件 數據來源 輸出位置 localStorage key
ideatorich 主公輸入 concepts.json
ideadata.html localStorage 頁面自身 workskm_ideas

🔄 v4.1 解決方案

在 ideatorich 新增 Step 3.5:同步到 ideadata.html

ideatorich 完成後
調用 scripts/sync-ideadata.py
構想同步到 workskm 創意頁面

配置位置:config.paths.ideadata
同步腳本:scripts/sync-ideadata.py

🎯 四種輸入模式

模式 說明 觸發關鍵字
URL 抓取 抓取網頁內容生成構想卡片 「執行 ideatorich,抓取 https://...」
自然語言 直接說出構想,AI 解析 「我有個構想:...」
檔案引用 引用本地 .md/.txt/.docx 檔案 「執行 ideatorich,引用 C:\xxx」
文件分類 上傳檔案觸發 101 類分類引擎 「整理ideas」/「上傳文件分類」
← 返回首頁