跳到主要內容

Cidekick, 專注於會議和製造效能分析 - Cluely like

CideKick

強調製造產業的數位整合,完全開源、免費,支援多語言,並可自由使用 Gemini 或 OpenAI 大型語言模型 API Key。非常適合製造業等企業場景,並特別強調開放性與彈性。

本專案參考了 Cluely 的功能設計,結合 Cheating Daddy 與 Glass 等優秀開源專案的理念,進行整合與優化,為製造業提供實用的 AI 助手工具。

https://github.com/cympotek/cidekick

以下是 Cluely、Cheating Daddy、Glass 和 CideKick 的對比列表,涵蓋開源/商業化、主要定位、技術亮點、LLM 支援和社群背景等關鍵資訊:

桌面 AI 助手專案對比

產品名稱 開源/商業化 主要定位/特色 技術亮點/功能 LLM 支援 社群/投資背景
Cluely 商業化($20/月訂閱) 桌面 AI 助手,主打「作弊」場景,主動多模態支援 螢幕監聽、歷史筆記需付費、閉源 未公開 a16z 投資,爭議行銷
Cheating Daddy 開源 即時 AI 助手,螢幕擷取 + 音訊分析,會議/面試輔助 免費、社群驅動、彈性客製化 未公開 Glass 上游專案
Glass 開源(GPL-3.0) 桌面「數位心智擴展」,極致隱私與隱形,會議場景極強 不出現在螢幕錄影/截圖/Dock 欄,主動摘要與答疑 OpenAI Y Combinator 支持,社群活躍
CideKick 開源 製造業 AI 助手,多語言支援,彈性 API Key 配置 Gemini/OpenAI 可選,官方免費 Key,多語言支援 Gemini、OpenAI 強調開放、無門檻、社群驅動

簡要說明

  • Cluely:閉源、付費牆明顯,主打「作弊」場景,商業化運作,市場爭議大。
  • Cheating Daddy:開源、免費,專注於會議/面試場景,Glass 的上游專案。
  • Glass:由 Y Combinator 支持的 Cheating Daddy 分支,極致隱私與隱形,主打「數位分身」理念,社群活躍。
  • CideKick:你們的專案,開源、免費,支援多語言和多種大模型 API Key,適合製造業等企業場景,強調開放與彈性。

如需進一步詳細比較每個專案的技術實現或應用場景,歡迎補充需求!

https://github.com/cympotek/cidekick

----

CideKick is an AI integration assistant designed for desktop environments in the manufacturing industry. It can be applied across multiple languages and scenarios, focusing on analyzing and optimizing manufacturing processes.

🛠 CideKick

Emphasizing digital integration for the manufacturing sector, it is fully open-source and free. It supports multiple languages and allows flexible use of Gemini or OpenAI large language model API keys. This makes it highly suitable for enterprise and manufacturing applications, with a strong focus on openness and flexibility.

This project draws inspiration from Cluely’s feature design, and integrates concepts from outstanding open-source projects like Cheating Daddy and Glass, creating a practical AI assistant tool tailored for manufacturing.

👉 Project Link

GitHub - https://github.com/cympotek/cidekick

留言

這個網誌中的熱門文章

[CSS] z-index 在不同瀏覽器繼承問題

今天會討論到這個課題,是因為要實做一個Popup dialog,所以我們希望的結果如下圖。 可是在IE7 卻發生了這樣的情況。 Popup不論怎麼設定z-index都無法浮在最上層,我們看一下html架構發生什麼事情。

[教學] 快快樂樂刪除CodeIgniter index.php

預設的CI網址預設都設定為index.php同一層級,因此所有的程式都必須指定index.php導向才能開始,例如 http://localhost/ci/index.php/welcome/test http://localhost/ci/welcome/test 本文將說明如何將惱人的index.php消除,還你一個漂亮的URL。 設定開始: 接下來說明如何使用rewrite方式將惱人的index.php去除。 rewrite不清楚的人,煩請先自行google 首先要先確定Apache的 mod_rewrite 有 開啟 ,如果沒有開啟請設定好之後重新啟動apache。 接著,在根目錄底下建立一個新檔案,檔名為 .htaccess ,裡面程式碼如下: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] </IfModule> 接著到 application/config/config.php ,開啟檔案修改 $config['index_page'] = ""; 注意: /index.php/$1 要根據你目錄,例如 http://localhost/index.php ,網站根目錄為 /ci/index.php 則要寫成 /ci/index.php/$1 接著至CI目錄下,尋找 config\config.php , 修改一下裡面的檔案,修改如下: $config['index_page'] = ""; 存檔後,如此一來大功告成。 參考資料 官方網站說明

[教學] Mojito 安裝與入門,install mojito for beginner.

mojito ,最近終於從 YDN 對外公開此專案,這個套件主要用於解決前端多重裝置及瀏覽器端的問題,後端服務採取 node.js ,因此使用上必定要先準備以下幾個元素 準備素材 c++ complier git Node.js > 0.4.x NPM > 1.0.x 安裝方式 git clone git://github.com/yahoo/mojito.git cd mojito/source sudo npm install -g . npm install . 以上四個簡單的步驟,就可以把 mojito module 完整安裝到服務器上,接著就可以開始進入 mojito 的世界 使用方式 mojito 提供了完整的 command line 給開發者使用,接著先建立一個基本 hello world 專案,跟著以下步驟完成第一個專案。首先建立一個 mojito application, mojito create app hello cd hello 切換到目錄之後,再接著建立自己的 mojit,這邊的 mojit 就像是一個應用(application)可能會包含許多個獨立網站體,擁有獨立架構的 MVC ,包含內部設定等,詳細資料可以參考官方的 說明 ,建立 mojit mojito create mojit HelloMojit 輸入指令後,會看到顯示結果如下, creating mojit called 'HelloMojit' (using "default" archetype) ✔ mojit: HelloMojit created! ✔ mojito done. 接著修改 application.json 這個 mojit 設定檔案,讓剛才新建立的 hellp application 指定底下有一個 mojit -> HelloMojit ,讓應用可以去執行 mojit controller ,修改如下, [ { "settings": [ "master" ], "appPort": 8666, "specs": { ...