with one click
rpc
Guidelines for RPC interface design, resilience, and tracing.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Guidelines for RPC interface design, resilience, and tracing.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Guidelines for creating, reviewing, and improving agent skills.
Guidelines for validation, staging, amending, and commit messages.
Guidelines for dependency injection patterns.
Guidelines for ensuring architectural changes are validated against core use cases.
Orchestrates efficient read and write interactions with the engram unified memory store via MCP tools. Provides deterministic workflows for decomposing observations into atomic memories, composing four-dimensional queries (context, similarity, relationship, time) for maximum retrieval accuracy, managing agent-managed focus context, and linking memories into associative webs at write time. Ensures memories are discoverable, precisely ranked, and structurally connected across sessions.
Guidelines for dual-use architecture (CLI and Go Library), dependency separation, and extensible registry patterns.
| name | rpc |
| description | Guidelines for RPC interface design, resilience, and tracing. |
context.Context as the first argument.Set a deadline on every outgoing request.
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
defer cancel()
| Scenario | Timeout |
|---|---|
| Inter-service (same datacenter) | 2s |
| External API | 5-10s |
| User-facing | 1s |
| Background jobs | 30-60s |
Use exponential backoff with jitter for transient failures.
grpc_retry middleware.go-retryablehttp.