摘要: Electron 桌面寵物,透過 Claude Code hooks 即時反映工作狀態(思考、等待授權、失敗、完成),並支援 16 方向追視游標。 根本原因: 專案尚未納入版控,需要建立初始 repo 以便後續追蹤與協作。 影響: 建立 main 分支的第一個版本,包含完整可執行的程式碼與內附寵物「小念」。 修法: 納入以下內容: - main.js / preload.js:Electron 主程序、透明置頂視窗、系統匣選單、HTTP 事件伺服器、游標輪詢與拖曳 - renderer/:Codex V2 spritesheet 幀動畫播放器、session 狀態機、氣泡、alpha 點穿判定 - hook/claude-pet-hook.js:Claude Code hook 端,stdin → POST /event,永遠 exit 0 - lib/、scripts/:hooks 安裝/移除、Windows 開機自動啟動 - pets/xiao-nian:內附寵物包(pet.json + spritesheet.webp) - README.md、docs/states.png:使用說明與狀態總覽圖 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
51 lines
1.7 KiB
JavaScript
51 lines
1.7 KiB
JavaScript
"use strict";
|
||
// Windows 開機自動啟動:HKCU\Software\Microsoft\Windows\CurrentVersion\Run\ClaudePet
|
||
const path = require("node:path");
|
||
const fs = require("node:fs");
|
||
const { spawnSync } = require("node:child_process");
|
||
|
||
const APP_DIR = path.resolve(__dirname, "..");
|
||
const RUN_KEY = "HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Run";
|
||
const VALUE_NAME = "ClaudePet";
|
||
|
||
function electronExe() {
|
||
return path.join(APP_DIR, "node_modules", "electron", "dist", "electron.exe");
|
||
}
|
||
|
||
function command() {
|
||
return `"${electronExe()}" "${APP_DIR}"`;
|
||
}
|
||
|
||
function reg(args) {
|
||
const r = spawnSync("reg", args, { encoding: "utf8", windowsHide: true });
|
||
return { ok: r.status === 0, stdout: r.stdout || "", stderr: r.stderr || "" };
|
||
}
|
||
|
||
function isInstalled() {
|
||
if (process.platform !== "win32") return false;
|
||
return reg(["query", RUN_KEY, "/v", VALUE_NAME]).ok;
|
||
}
|
||
|
||
function currentValue() {
|
||
const r = reg(["query", RUN_KEY, "/v", VALUE_NAME]);
|
||
if (!r.ok) return null;
|
||
const m = r.stdout.match(/REG_SZ\s+(.+)$/m);
|
||
return m ? m[1].trim() : null;
|
||
}
|
||
|
||
function install() {
|
||
if (process.platform !== "win32") throw new Error("只支援 Windows");
|
||
if (!fs.existsSync(electronExe())) throw new Error(`找不到 Electron:${electronExe()}(先執行 npm install)`);
|
||
const r = reg(["add", RUN_KEY, "/v", VALUE_NAME, "/t", "REG_SZ", "/d", command(), "/f"]);
|
||
if (!r.ok) throw new Error(r.stderr || r.stdout || "reg add 失敗");
|
||
return command();
|
||
}
|
||
|
||
function uninstall() {
|
||
if (process.platform !== "win32") return false;
|
||
const r = reg(["delete", RUN_KEY, "/v", VALUE_NAME, "/f"]);
|
||
return r.ok;
|
||
}
|
||
|
||
module.exports = { install, uninstall, isInstalled, currentValue, command, electronExe, VALUE_NAME, RUN_KEY };
|