Qclaw is a desktop application that helps people install, configure, and manage OpenClaw without using the command line. It guides users through model setup, messaging-platform connections, gateway monitoring, skill management, and data backups. The catalogue entries are rules for operating OpenClaw through this user-focused environment.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/qiuzhi2046/qclaw/electron-ipcgit clone --depth 1 https://github.com/qiuzhi2046/QclawWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/rules/qiuzhi2046/qclaw/electron-ipc)<a href="https://agentmods.dev/rules/qiuzhi2046/qclaw/electron-ipc"><img src="https://agentmods.dev/badge/rules/qiuzhi2046/qclaw/electron-ipc.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00363 |
| Opus 5 | $0.00000 | $0.00181 |
| Sonnet 5 | $0.00000 | $0.00073 |
| Haiku 4.5 | $0.00000 | $0.00036 |
Grade A, and why
electron-ipc scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Electron IPC 開發規範
跨層改動順序
新增或修改 IPC 功能時,必須依照以下順序:
- 型別定義 —
src/types/electron.d.ts - Preload 橋接 —
electron/preload/ - IPC Handler —
electron/main/ipc-handlers.ts - 主程式邏輯 —
electron/main/(新增服務檔案) - UI 元件 —
src/pages/或src/components/
架構分層說明
| 層 | 路徑 | 說明 |
|---|---|---|
| UI | src/pages/ |
React 頁面、按鈕、互動 |
| 型別定義 | src/types/electron.d.ts |
IPC API 型別 |
| Preload | electron/preload/ |
安全橋接層(Context Bridge) |
| IPC | electron/main/ipc-handlers.ts |
IPC 事件處理 |
| 業務邏輯 | electron/main/ |
主程式服務 |
注意事項
- Preload 只能使用
contextBridge.exposeInMainWorld暴露 API - 主程序使用
process.getBuiltinModule('node:...')取得 Node 內建模組 - 跨平台路徑比較前須正規化分隔符:
.replace(/\\/g, '/')
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 34 lines · 0 tokens per session scan A dd236f04a469
electron-ipc is a cursor rule published in the GitHub repository qiuzhi2046/Qclaw (2,816 stars, last pushed 4mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 363 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other cursor rules, from other repositories
python
Python best practices and patterns for modern software development with Flask and SQLite.
api-property-optionality-hygiene
Fix ApiProperty/ApiPropertyOptional optionality mismatches in DTO files; use for scheduled batch fixes or DTO edits.
django
Definitive guidelines for writing maintainable, performant, and secure Django applications, emphasizing modern best practices, clear code organization, and efficient patterns.
cursor
You are working on the checkout service. Preserve transaction integrity and auditability.
shared-libraries
Shared libraries - condition framework, inventory containers, file-backed DB, itinerary, references.
env-validation-gate
Env validation gate — every app with ≥1 required env var validates its contract at boot via Zod; raw process.env is banned outside the env module. Full pattern in .claude/skills/t2000-env-gate/.