file-provider-and-finder-sync-workflow

file-provider-and-finder-sync-workflow is a skill for Claude Code, Codex from gaelic-ghost/socket. It costs 45 tokens per session (1,624 once invoked), scanned A, original, Apache-2.0.

An Apple development workflow for choosing between File Provider and Finder Sync. File Provider connects remote files to macOS or the Files app, while Finder Sync adds Finder badges and menus.

In plain words
What is it for?
Use it to plan cloud-backed file access, placeholders, remote-change handling, and Finder decorations in Apple apps.
Why use it?
It prevents using Finder Sync as if it were a file-synchronization system and helps select the right extension model.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present.

Part of the apple-dev-skills plugin — 65 skills, 2 MCP servers shipped together

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/file-provider-and-finder-sync-workflow
Any agent
npx skills add gaelic-ghost/socket --skill file-provider-and-finder-sync-workflow
Clone the repo
git clone --depth 1 https://github.com/gaelic-ghost/socket

Made for: Claude Code, Codex.

Or install apple-dev-skills, the plugin that ships this one along with the rest of its 65 skills, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for file-provider-and-finder-sync-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/gaelic-ghost/socket/file-provider-and-finder-sync-workflow.svg)](https://agentmods.dev/skills/gaelic-ghost/socket/file-provider-and-finder-sync-workflow)
Your own site
<a href="https://agentmods.dev/skills/gaelic-ghost/socket/file-provider-and-finder-sync-workflow"><img src="https://agentmods.dev/badge/skills/gaelic-ghost/socket/file-provider-and-finder-sync-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,624 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.1 $0.00045 $0.01624
Opus 5 $0.00023 $0.00812
Sonnet 5 $0.00009 $0.00325
Haiku 4.5 $0.00005 $0.00162

Measured 2d ago against content hash d52d2a306f04, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

file-provider-and-finder-sync-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/file-provider-and-finder-sync-workflow/SKILL.md · 115 lines

How it starts

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

File Provider and Finder Sync Workflow

Purpose

Choose the correct filesystem extension model. File Provider is the modern path for remote-storage synchronization: it enumerates items, materializes content, receives file operations, and reports remote changes to the system. Finder Sync is a macOS Finder UI extension for monitored-folder badges, contextual menus, and visibility; it does not implement remote synchronization itself.

This skill owns that decision, File Provider synchronization mechanics, and Finder Sync’s limited UI role. It does not own a storage backend protocol, generic networking, or unrelated app-extension architecture.

When To Use

  • Use this skill when an Apple app exposes remote storage in Files or Finder, synchronizes cloud-backed files, handles placeholders, materializes content, or reconciles remote changes.
  • Use this skill when a macOS app needs Finder badges, toolbar/contextual menus, selected-item context, or monitored-folder visibility.
  • Use app-extension-architecture-workflow when target/process, entitlement, app-group, or general extension decisions remain unresolved.
  • Use swift-openapi-client-workflow or server-side skills when the storage service contract or transport is the main unresolved concern.
  • Use xcode-build-run-workflow, xcode-testing-workflow, and macos-distribution-workflow for execution, testing, and release evidence.

Single-Path Workflow

  1. Classify the requested outcome:
    • choose File Provider when users need remote files to appear, hydrate, upload, rename, move, delete, remain available offline as supported, and reconcile with a remote service
    • choose Finder Sync only when the files already exist locally and the product needs Finder badges, menus, or monitored-folder UI
    • combine them only when File Provider owns sync and Finder Sync has a separately justified, narrow Finder UI role
  2. State the documented behavior relied on:
    • a File Provider extension enumerates storage and implements file operations; the system asks it to materialize content and notify the system of remote changes
    • the File Provider working set drives background updates, materialized availability, and Spotlight visibility
    • Finder Sync manages directoryURLs, badges, selected items, and menu/visibility UI for monitored folders; it is not a sync implementation
  3. Design File Provider as the synchronization authority:
    • define stable item identifiers, parent hierarchy, version/anchor handling, placeholders, materialization, upload, rename/move/delete, conflict behavior, and cancellation
    • distinguish local intent from confirmed remote state and maintain a durable retry/reconciliation plan
    • signal remote changes with the documented File Provider notification/enumerator path or supported push path; do not pollute Finder UI callbacks with sync work
    • keep backend transport behind a small, typed client boundary and avoid treating local file paths as durable remote IDs
  4. Bound Finder Sync:
    • monitor only the necessary local directories
    • use badges and menus to represent known local state, explain uncertainty, and initiate explicit app actions when needed
    • do not claim Finder Sync observes all disk changes, transfers files, owns conflict resolution, or makes remote content available
  5. Protect people’s files:
    • minimize metadata and content access, avoid logging file names or paths unnecessarily, and describe sync/error state honestly
    • keep user actions, destructive remote changes, conflict choices, and offline behavior visible and recoverable
  6. Validate:
    • File Provider: domain/account lifecycle, enumeration, placeholders, fetch, upload, rename/move/delete, working-set changes, remote notifications, offline behavior, cancellation, conflicts, and upgrade/recovery
    • Finder Sync: extension enablement, monitored directories, badge update, menu context, selected-item behavior, disabled state, and Finder restart/relaunch behavior
    • validate target entitlements, signing, embedding, and distribution separately from service integration tests
  7. Return the chosen model, documented behavior, ownership map, backend handoff, privacy policy, validation matrix, and next workflow.

Read the full file on GitHub · 115 lines

Files

What ships with it

5 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 · 115 lines · 45 tokens per session scan A d52d2a306f04

Subscribe to this mod's changes

file-provider-and-finder-sync-workflow is a skill published in the GitHub repository gaelic-ghost/socket (7 stars, last pushed 10d ago), licensed Apache-2.0. It adds 45 tokens to every session and 1,624 once invoked, about $0.0002 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-09-03.

Related

Other skills, from other repositories

app-store-optimization

Improves visibility and conversion in the App Store and Google Play — metadata, keywords, screenshots, ratings, and the listing experience that turns an impression into an install. Use this to audit or optimize an app listing, plan a launch listing, diagnose poor install conversion, or improve store search visibility.

cbrock84/headcount · 64 tokens

flutter-ui

Build Flutter UI from Figma MCP or image input. Scans src for design tokens (colors, sizes, text styles), existing components, and naming conventions before writing a single line of code. Never hard-codes values.

datit309/supergraph · 48 tokens

flutter-dart-code-review

Library-agnostic Flutter/Dart code review checklist covering widget best practices, state management patterns (BLoC, Riverpod, Provider, GetX, MobX, Signals), Dart idioms, performance, accessibility, security, and clean architecture.

datit309/supergraph · 56 tokens

pipeline

Use when the user wants a feature idea taken end-to-end in one autonomous run — phrases like "run the whole pipeline", "take this feature from idea to finished branch", "brainstorm then build it autonomously", "do everything from idea to merged", "implement all phases without stopping". Triggers when they want…

kardebadas/claude-plugin · 80 tokens

craft

Use when a product idea is still vague and needs to become a clear definition of what to build — "let's craft an app like X", "help me define what I actually want", "clarify this idea before we plan it". Also use before planning or implementation when requirements, UX, domain behaviour, or technical preferences have…

kardebadas/claude-plugin · 83 tokens

bug-fix

Use when a bug, regression, or unexpected behaviour is reported and the user wants it fixed end to end — "why is X broken", "this stopped working after Y", "fix this crash". Also use when a symptom is known but its cause is not. Not for building new behaviour, and not for a change whose cause is already proven.

kardebadas/claude-plugin · 74 tokens