Agent skill
patterns/callback-context
Callback + Context Pattern (C-Specific) pattern for C development
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/callback-context
SKILL.md
Callback + Context Pattern (C-Specific)
Pair function pointer with void * user data. Callback receives user data, enabling state access without globals. Universal C pattern for async/event handling.
ikigai Application
Streaming responses:
typedef void (*chunk_cb_t)(void *user_ctx, const char *data, size_t len);
res_t ik_llm_stream(ik_llm_client_t *client,
ik_message_t **msgs,
chunk_cb_t on_chunk,
void *user_ctx); // Passed to callback
Usage: REPL passes itself as context, callback updates scrollback.
Convention: Callback function pointer immediately followed by void * context parameter. Callback signature includes context as first param.
Benefit: Stateful callbacks without globals. Each caller provides own context.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?