core-image-processing-workflow

A guide for building and repairing Core Image image-processing pipelines on Apple platforms. Core Image applies filters and other pixel transformations while working with formats such as RAW, HDR, Core Video, and Metal outputs.

In plain words
What is it for?
Use it for filter chains, compositing, masks, scaling, geometry, RAW development, custom kernels, colour or HDR fixes, render destinations, and Core Image performance diagnosis.
Why use it?
It helps keep filtering, colour handling, rendering, and output ownership separate, avoiding incorrect conversions or performance problems.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/gaelic-ghost/socket/core-image-processing-workflow
Any agent
npx skills add gaelic-ghost/socket --skill core-image-processing-workflow
Clone the repo
git clone --depth 1 https://github.com/gaelic-ghost/socket

Made for: Claude Code, Codex.

Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,318 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00074 $0.01318
Opus 5 $0.00037 $0.00659
Sonnet 5 $0.00015 $0.00264
Haiku 4.5 $0.00007 $0.00132

Measured 2d ago against content hash 665df2414e2c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

core-image-processing-workflow 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 2d 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.

plugins/apple-dev-skills/skills/core-image-processing-workflow/SKILL.md · 100 lines

How it starts

The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Core Image Processing Workflow

Purpose

Guide Core Image processing and rendering without turning CIImage into a bitmap wrapper or mixing transformation with file decoding, visual recognition, or display-container ownership. Preserve Core Image, Core Graphics, Core Video, and Metal types until an explicit output boundary.

When To Use

  • Use for Core Image filter chains, compositing, RAW development, custom kernels, color or HDR processing, render destinations, and Core Image performance or correctness repair.
  • Recommend apple-image-representation-workflow when decoding, encoding, metadata, or platform image-container behavior is primary.
  • Recommend the Vision workflow when the requested outcome is recognition or analysis rather than pixel transformation.

Single-Path Workflow

  1. Classify the request:
    • built-in filter chain
    • compositing, masking, scaling, or geometry
    • RAW development
    • custom kernel or processor
    • color, HDR, or alpha repair
    • render destination or interop
    • performance or correctness diagnosis
  2. Apply the Apple docs gate:
    • read current Core Image documentation before proposing implementation changes
    • state the documented behavior relied on
    • apply ../../shared/references/apple-image-type-ownership.md
    • use references/core-image-processing-and-rendering.md for graph, context, color, render, and performance decisions
    • use references/core-image-diagnostics-and-handoffs.md for repair probes and ownership handoffs
  3. Define the graph and ownership:
    • identify the source image, extent, orientation state, color space, alpha semantics, and dynamic range
    • build immutable CIImage transformations and keep mutable CIFilter instances task-local
    • choose one deliberately scoped, reusable CIContext
    • select the output bounds, format, color space, and destination before rendering
  4. Repair common failure modes:
    • treating CIImage as already-rendered pixels
    • creating a new CIContext per frame or filter application
    • sharing mutable CIFilter instances across concurrent work
    • losing orientation, extent, alpha, color-space, HDR, or auxiliary-data meaning during conversion
    • forcing CPU readback between Core Image, Core Video, and Metal without a concrete boundary
    • rendering infinite or unexpectedly expanded extents without an explicit crop
    • using Core Image as a recognition framework instead of handing analysis to Vision
  5. Return one recommendation with:
    • processing class and documented behavior
    • source and output type ownership
    • graph, context, color, extent, and render-destination plan
    • concurrency, cancellation, memory, and performance plan
    • repair findings and runtime validation handoff

Read the full file on GitHub · 100 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 2d ago First seen · 100 lines · 74 tokens per session scan A 665df2414e2c

Subscribe to this mod's changes

core-image-processing-workflow is a skill published in the GitHub repository gaelic-ghost/socket (6 stars, last pushed 6d ago), licensed Apache-2.0. It adds 74 tokens to every session and 1,318 once invoked, about $0.0004 per session on Opus 5. 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-31.

Related

Other skills, from other repositories

xcode-disk-cleanup

Audit and safely clean Xcode-related developer storage on macOS. Use whenever a developer mentions low disk space, Xcode storage, DerivedData, simulator devices or runtimes, stale beta platforms in Xcode Settings, DeviceSupport, archives, dSYMs, CocoaPods caches, simulator dyld caches, project .build folders…

AvdLee/Xcode-Disk-Cleanup-Agent-Skill · 147 tokens

storescreens

Set up and run storescreens-cli to automate App Store screenshot capture for iOS apps: render captioned/framed App Store-ready screenshots with device bezels, markdown captions, and panoramic backgrounds; upload screenshots + per-locale metadata (name, subtitle, description, keywords, what's new, promotional text) to…

ciscoriordan/storescreens-skill · 331 tokens

poll-github-work

Poll and rank open GitHub issues, RFCs, and pull requests for maintainer work, or start one explicitly selected item. Use when a user asks what to work on, requests backlog priorities, says "poll work," wants actionable issues or pull requests, or says "start.

trycua/cua · 61 tokens

test

Run tests. Use after code changes to validate. Arguments: unit (default, no GPU), e2e (with models), filter name, or all.

soniqo/speech-swift · 34 tokens

release

Build, sign, notarize, and publish a new DroidProxy release. Use when the user wants to cut a release, merge a PR and ship it, or asks to build/notarize/publish. Covers the full pipeline: PR merge, version bump, swift build, code signing, Apple notarization, Sparkle appcast update, and GitHub release creation.

nikships/droidproxy · 80 tokens

remarc

Manage Remarc session comments and contextual feedback. Use when the user mentions Remarc sessions, comments, handoff, triage, review, addressing, resolving, status updates, or summaries.

metedata/Remarc · 41 tokens