ipc-development — community ipc-development, community, ide skills

v1.0.0

이 스킬 정보

고급 IPC 개발 기능과 자동 형식 추론이 필요한 AI 에이전트에게 적합합니다. IPC 채널 추가/수정 시 안전 규칙과 절차

BangDori BangDori
[9]
[0]
Updated: 3/1/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
7/11
Quality Score
39
Canonical Locale
ko
Detected Body Locale
ko

고급 IPC 개발 기능과 자동 형식 추론이 필요한 AI 에이전트에게 적합합니다. IPC 채널 추가/수정 시 안전 규칙과 절차

이 스킬을 사용하는 이유

에이전트가 IPC 채널을 정의하고 처리할 수 있는 능력을 부여하며, `src/shared/ipc-schema.ts`의 단일 소스에서 진실을 사용하고, 채널, 매개 변수 및 반환 형식에 대한 유형을 자동으로 생성하며, IPC 스키마 및 TypeScript와 같은 프로토콜을 활용합니다.

최적의 용도

고급 IPC 개발 기능과 자동 형식 추론이 필요한 AI 에이전트에게 적합합니다.

실행 가능한 사용 사례 for ipc-development

자동 형식 생성을 사용하여 새로운 IPC 채널을 정의합니다.
`handleIpc()` 및 `invokeIpc()` 메서드를 사용하여 IPC 요청 및 응답을 처리합니다.
단일 위치에서 IPC 스키마 및 형식 정의를 관리합니다.

! 보안 및 제한 사항

  • 자동 형식 추론에는 TypeScript가 필요합니다.
  • macOS 메뉴 바 생산성 애플리케이션의 AI 어시스턴트로 제한됩니다.
  • 새로운 IPC 채널을 추가할 때 `src/main/ipc.ts` 및 `src/preload/index.ts`를 수동으로 업데이트해야 합니다.

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is ipc-development?

고급 IPC 개발 기능과 자동 형식 추론이 필요한 AI 에이전트에게 적합합니다. IPC 채널 추가/수정 시 안전 규칙과 절차

How do I install ipc-development?

Run the command: npx killer-skills add BangDori/prowl/ipc-development. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for ipc-development?

Key use cases include: 자동 형식 생성을 사용하여 새로운 IPC 채널을 정의합니다., `handleIpc()` 및 `invokeIpc()` 메서드를 사용하여 IPC 요청 및 응답을 처리합니다., 단일 위치에서 IPC 스키마 및 형식 정의를 관리합니다..

Which IDEs are compatible with ipc-development?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for ipc-development?

자동 형식 추론에는 TypeScript가 필요합니다.. macOS 메뉴 바 생산성 애플리케이션의 AI 어시스턴트로 제한됩니다.. 새로운 IPC 채널을 추가할 때 `src/main/ipc.ts` 및 `src/preload/index.ts`를 수동으로 업데이트해야 합니다..

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add BangDori/prowl/ipc-development. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use ipc-development immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

ipc-development

Install ipc-development, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

IPC Development Guide

Single Source of Truth

모든 IPC 채널은 src/shared/ipc-schema.ts에 정의. 이 스키마에서 타입이 자동 추론되므로 별도 타입 정의 불필요.

채널 추가 절차

새 IPC 채널 추가 시 3곳 수정:

  1. src/shared/ipc-schema.ts — 채널 + params + return 타입 정의
  2. src/main/ipc.tshandleIpc() 핸들러 추가
  3. src/preload/index.tsinvokeIpc() 메서드 추가

→ Renderer 타입은 자동 반영

반환 타입 규칙

채널 유형반환 타입예시
데이터 조회구체적 타입LaunchdJob[], AppSettings
데이터 변경 (mutation)IpcResult{ success: true }
Fire-and-forgetvoidquit, resize, navigate

에러 처리

handleIpc 래퍼가 try/catch 자동 적용:

  • 성공 → 핸들러 결과 반환
  • 실패 → 에러 로깅 + mutation은 { success: false, error: message } 반환

직렬화

  • Date 객체는 IPC를 통과하지 않음 — ISO 8601 문자열(string) 사용
  • 서비스에서 .toISOString() 호출 후 전달
  • Renderer에서 new Date(isoString) 으로 파싱

채널 네이밍

형식: {domain}:{action} (액션은 kebab-case)

jobs:list              # 조회
jobs:toggle            # 액션
settings:get           # 단일 조회
calendar:add-local-event  # 복합 액션

Renderer에서 사용

컴포넌트에서 window.electronAPI 직접 호출 금지. 반드시 hooks를 통해 접근:

typescript
1// Bad 2const jobs = await window.electronAPI.listJobs(); 3 4// Good 5const { jobs } = useLaunchdJobs();

plist 파싱

외부 데이터(plist)는 Zod safeParse로 런타임 검증:

typescript
1// Bad 2const data = plist.parse(content) as PlistData; 3 4// Good 5const result = PlistDataSchema.safeParse(plist.parse(content)); 6if (!result.success) { /* handle error */ }

관련 스킬

Looking for an alternative to ipc-development or another community skill for your workflow? Explore these related open-source skills.

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자