ipc
Use when implementing inter-process communication, shared memory regions, SPSC or MPMC ring buffers, zero-copy data transfer, platform synchronization primitives, or process notification mechanisms.
Best use case
ipc is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Use when implementing inter-process communication, shared memory regions, SPSC or MPMC ring buffers, zero-copy data transfer, platform synchronization primitives, or process notification mechanisms.
Teams using ipc should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/ipc/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How ipc Compares
| Feature / Agent | ipc | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Use when implementing inter-process communication, shared memory regions, SPSC or MPMC ring buffers, zero-copy data transfer, platform synchronization primitives, or process notification mechanisms.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# IPC (Inter-Process Communication)
## Scope
- Shared memory regions (POSIX `shm_open` + `mmap`, Windows `CreateFileMapping`).
- Lock-free ring buffers (SPSC, MPMC).
- Platform-specific synchronization (futex, ulock, Win32 Event).
- Notification mechanisms (eventfd, pipe, kqueue).
- Async ring integration with Tokio.
- Buffer pools and zero-copy data transfer.
<workflow>
## Shared Memory Regions
### ShmRegion Pattern
<example>
```rust
pub struct ShmRegion {
ptr: *mut u8,
len: usize,
fd: OwnedFd, // RAII: closes on drop
}
impl ShmRegion {
pub fn create(name: &str, size: usize) -> Result<Self, IpcError> {
// SAFETY: shm_open + ftruncate + mmap is the standard POSIX pattern.
// We own the fd exclusively and unlink after mapping.
unsafe {
let fd = shm_open(name, O_CREAT | O_RDWR, 0o600)?;
ftruncate(fd, size as libc::off_t)?;
let ptr = mmap(
std::ptr::null_mut(),
size,
PROT_READ | PROT_WRITE,
MAP_SHARED,
fd,
0,
)?;
shm_unlink(name)?; // Unlink immediately — fd keeps it alive
Ok(Self { ptr: ptr.cast(), len: size, fd: OwnedFd(fd) })
}
}
pub fn as_slice(&self) -> &[u8] {
// SAFETY: ptr is valid for len bytes and region outlives self
unsafe { std::slice::from_raw_parts(self.ptr, self.len) }
}
}
impl Drop for ShmRegion {
fn drop(&mut self) {
// SAFETY: We own this mapping exclusively
unsafe { munmap(self.ptr.cast(), self.len) };
// fd closed by OwnedFd::drop
}
}
```
</example>
<guardrails>
## Guardrails
- **Always unlink shared memory immediately** -- Use `shm_unlink` as soon as the memory is mapped to ensure it is correctly cleaned up by the OS when the process exits.
- **Use RAII for all resources** -- Wrap pointers, file descriptors, and mapping handles in structs that implement `Drop` to prevent resource leaks on crash or error.
- **Align to page boundaries** -- Shared memory region sizes should always be a multiple of the system page size (typically 4096 bytes) for optimal mapping.
- **Capacity must be a power of two** -- For ring buffers, this allows for fast indexing using bitwise AND instead of expensive modulo operations.
- **Align headers to cache lines (64 bytes)** -- This prevents false sharing between producers and consumers on different CPU cores.
</guardrails>
<validation>
## Validation Checkpoint
- [ ] Shared memory is unlinked immediately after mapping
- [ ] RAII cleanup logic is implemented in `Drop` for all resources
- [ ] Ring buffer capacity is a power of two
- [ ] Headers are cache-line aligned (64 bytes) with explicit padding
- [ ] Bounds checks are performed on all reads and writes from shared memory
- [ ] Atomic memory ordering is correctly applied (`Acquire`/`Release`)
</validation>Related Skills
flow-memory-keeper
Use at task, phase, flow, sync, archive, finish, revise, or failure checkpoints to keep Flow specs clean, capture learnings and failures, elevate durable patterns, and refine this skill with project-specific nuances
vue
Use when editing Vue projects, .vue files, vue.config.js, Vue 3 components, Composition API, <script setup>, SFC state, deployment workflows, or Vue CI configuration.
vite
Use when editing Vite projects, vite.config.ts, vite.config.js, Vite plugins, HMR, asset bundling, frontend build settings, deployment config, or Litestar/Vite integration.
uvicorn
Use when deploying ASGI apps with uvicorn, editing uvicorn CLI commands, Config or Server usage, workers, reload, event loop selection, SSL, lifespan, logging, or development server behavior.
tracer
Use when tracing execution paths, mapping dependencies, understanding unfamiliar code, following data flow, investigating end-to-end behavior, debugging call chains, or deciding which files to read next.
testing
Use when writing or refactoring tests, editing test_*.py, *.test.ts, *.spec.ts, conftest.py, vitest.config.ts, pytest fixtures, mocks, coverage, async tests, anyio, or test failure debugging.
terraform
Use when creating, adopting, refactoring, or operating Terraform, *.tf files, .terraform.lock.hcl, terragrunt.hcl, root modules, backends, state, workspaces, imports, CI plan/apply, tests, or policy checks.
tanstack
Use when editing TanStack code, @tanstack imports, useQuery, createRouter, React Query, TanStack Router, Table, Form, Store, file-based routing, data fetching, or SPA state management.
tailwind
Use when styling with Tailwind CSS, editing tailwind.config.ts, tailwind.config.js, @tailwind directives, utility classes, responsive layouts, @apply, cn(), @theme config, dark mode, or forms.
svelte
Use when editing Svelte components, .svelte files, svelte.config.js, Svelte 5 runes, $state, $derived, SvelteKit, component state, or migrating away from Svelte 4 patterns.
sqlserver
Use when writing T-SQL, editing SQL Server .sql files, using sqlcmd, SQL Server connection strings, stored procedures, execution plans, indexes, Always On, JSON, security, or connector code.
sqlalchemy
Use when editing SQLAlchemy code, sqlalchemy imports, mapped_column, DeclarativeBase, ORM models, relationships, select() queries, async sessions, engines, events, or migrations.