App Extensions logo

App Extensions

Community
rshankras
app-extensions

Generates app extension infrastructure for Share Extensions, Action Extensions, Keyboard Extensions, and Safari Web Extensions with data sharing via App Groups. Use when user wants to add a share extension, action extension, keyboard extension, Safari web extension, or any app extension type.

Overview

Publisherrshankras
Repositoryclaude-code-apple-skills
Skill nameapp-extensions
Stars
744
Forks
70
Bundled files
1
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by rshankras on GitHub. Read the source before you install it.

Installation

Install the App Extensions AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/rshankras/claude-code-apple-skills.git /tmp/claude-code-apple-skills
mkdir -p .claude/skills
cp -r /tmp/claude-code-apple-skills/skills/generators/app-extensions .claude/skills/app-extensions
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable App Extensions in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads App Extensions on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so App Extensions is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

App Extensions Generator

Generate production app extension infrastructure -- Share Extensions for receiving content from other apps, Action Extensions for manipulating content in-place, Keyboard Extensions for custom input, and Safari Web Extensions for browser integration. Includes App Group data sharing between the host app and extensions.

When This Skill Activates

Use this skill when the user:

  • Asks to "add a share extension" or "share sheet extension"
  • Wants to "receive content from other apps" or "accept shared content"
  • Mentions "action extension" or "content manipulation extension"
  • Wants to "add a custom keyboard" or "keyboard extension"
  • Asks about "Safari extension" or "Safari web extension"
  • Mentions "app extension" or "extension target" generically
  • Wants to "share data between app and extension" or "App Groups"

Pre-Generation Checks

1. Project Context Detection

  • Check deployment target (iOS 16+ / macOS 13+)
  • Check Swift version (requires Swift 5.9+)
  • Identify project structure (find .xcodeproj or Package.swift)
  • Identify source file locations

2. Existing Extension Detection

Search for existing extension targets:

Glob: **/*Extension*/*.swift, **/*Extension*/Info.plist
Grep: "NSExtensionPointIdentifier" or "NSExtensionPrincipalClass"

If existing extensions found:

  • Ask if user wants to add another or modify existing
  • Identify existing App Groups configuration

3. App Groups Detection

Check for existing App Groups setup:

Glob: **/*.entitlements
Grep: "com.apple.security.application-groups"

If App Groups exist, reuse the existing group identifier.

Configuration Questions

Ask user via AskUserQuestion:

  1. What type of extension?

    • Share Extension (accept content from other apps, display share UI)
    • Action Extension (manipulate content in-place -- transform text, edit images)
    • Keyboard Extension (custom input keyboard with KeyboardViewController)
    • Safari Web Extension (inject JavaScript/CSS into web pages)
  2. What content types does it handle?

    • Text (plain text, rich text)
    • URLs (web links, deep links)
    • Images (photos, screenshots)
    • Files (documents, PDFs, archives)
    • All (any content type)
  3. Does the extension need to share data with the main app?

    • Yes -- needs App Groups (shared UserDefaults, shared file container, shared Keychain)
    • No -- extension is self-contained

Generation Process

Step 1: Read Templates

Read templates.md for production Swift code.

Step 2: Create Extension Files

Based on extension type selected:

Share Extension:

  1. ShareViewController.swift -- Main share extension view controller with content handling
  2. Info.plist -- Extension configuration with activation rules

Action Extension: 3. ActionViewController.swift -- Action extension with content manipulation 4. Info.plist -- Extension configuration

Keyboard Extension: 5. KeyboardViewController.swift -- Custom keyboard with UIInputViewController 6. Info.plist -- Keyboard extension configuration

Safari Web Extension: 7. SafariWebExtensionHandler.swift -- Native message handler 8. manifest.json -- Web extension manifest 9. content.js -- Content script template

Step 3: Create Shared Infrastructure

If data sharing selected: 10. SharedDataManager.swift -- App Group data sharing helper

Step 4: Determine File Location

Extensions are separate targets:

  • Share Extension -> ShareExtension/
  • Action Extension -> ActionExtension/
  • Keyboard Extension -> KeyboardExtension/
  • Safari Web Extension -> SafariWebExtension/
  • Shared code -> Shared/ or within main app target

Output Format

After generation, provide:

Files Created

Share Extension:

ShareExtension/
├── ShareViewController.swift  # Main share extension view controller
└── Info.plist                 # Extension activation rules & config

Action Extension:

ActionExtension/
├── ActionViewController.swift # Content manipulation controller
└── Info.plist                 # Extension activation rules & config

Keyboard Extension:

KeyboardExtension/
├── KeyboardViewController.swift # UIInputViewController subclass
└── Info.plist                   # Keyboard extension config

Safari Web Extension:

SafariWebExtension/
├── SafariWebExtensionHandler.swift # Native message handler
└── Resources/
    ├── manifest.json               # Web extension manifest
    ├── content.js                  # Content script
    └── popup.html                  # Popup UI (optional)

Shared (if data sharing enabled):

Shared/
└── SharedDataManager.swift    # App Group data sharing

Integration Steps

1. Add Extension Target in Xcode:

  • File > New > Target
  • Select the extension type (Share, Action, Keyboard, Safari Web)
  • Configure bundle identifier: com.yourapp.ShareExtension
  • Xcode creates the target with boilerplate -- replace with generated code

2. Configure App Groups (if data sharing):

  • Select main app target > Signing & Capabilities > Add "App Groups"
  • Add group: group.com.yourapp.shared
  • Select extension target > Signing & Capabilities > Add "App Groups"
  • Add the same group identifier

3. Share code between targets:

  • Add shared files to both the app and extension targets
  • Or create a shared framework target

Extension Content Handling

Accept shared URLs:

swift
if provider.hasItemConformingToTypeIdentifier(UTType.url.identifier) {
    provider.loadItem(forTypeIdentifier: UTType.url.identifier) { item, error in
        guard let url = item as? URL else { return }
        // Process URL
    }
}

Accept shared images:

swift
if provider.hasItemConformingToTypeIdentifier(UTType.image.identifier) {
    provider.loadItem(forTypeIdentifier: UTType.image.identifier) { item, error in
        if let imageURL = item as? URL {
            let imageData = try? Data(contentsOf: imageURL)
            // Process image data
        }
    }
}

Share data to main app via App Groups:

swift
let shared = SharedDataManager.shared
shared.saveSharedContent(url.absoluteString, forKey: "lastSharedURL")

Testing

Share Extension:

  1. Build and run the extension scheme
  2. Select a host app (Safari, Photos, etc.)
  3. Share content and verify your extension appears
  4. Test with different content types

Action Extension:

  1. Build and run the extension scheme
  2. Open content in a supported app
  3. Tap the share/action button and select your action

Keyboard Extension:

  1. Build and run the keyboard extension scheme
  2. Go to Settings > General > Keyboard > Keyboards > Add New Keyboard
  3. Select your keyboard
  4. Open any text field and switch to your keyboard

Safari Web Extension:

  1. Build and run the app (which contains the extension)
  2. Go to Safari > Settings > Extensions
  3. Enable your extension
  4. Navigate to a web page and verify behavior

Extension Lifecycle and Limits

Memory Limits

  • Share Extension: ~120 MB
  • Action Extension: ~120 MB
  • Keyboard Extension: ~48 MB (very constrained)
  • Safari Web Extension: ~6 MB for content scripts

Execution Limits

  • Extensions must complete work quickly (no long background execution)
  • Must call completeRequest() or cancelRequest() when done
  • No access to HealthKit, CallKit, or some restricted frameworks
  • Network requests are allowed but should be brief

Extension Termination

The system can terminate extensions at any time for resource reclamation. Save state frequently and handle interruption gracefully.

Gotchas

completeRequest Must Be Called

The extension host waits for extensionContext?.completeRequest(returningItems:). If you never call it, the share sheet hangs and the user is stuck. Always call it in both success and error paths.

Keyboard Extensions Need Open Access for Network

By default keyboard extensions have no network access. The user must explicitly grant "Allow Full Access" in Settings. Without it, URLSession calls fail silently. Design your keyboard to work without network and enhance when access is granted.

App Groups Require Matching Identifiers

The App Group identifier must be identical in both the main app and extension entitlements. A typo means UserDefaults(suiteName:) returns a different (empty) container.

Safari Web Extension Content Scripts Run in Isolated World

Content scripts cannot directly access the page's JavaScript variables. Use window.postMessage or the browser messaging API to communicate between content scripts and the page.

Extension Bundle Identifier Convention

Extension bundle identifiers must be prefixed with the main app bundle identifier:

  • Main app: com.yourcompany.myapp
  • Share Extension: com.yourcompany.myapp.ShareExtension

References

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the App Extensions AI skill do?

Generates app extension infrastructure for Share Extensions, Action Extensions, Keyboard Extensions, and Safari Web Extensions with data sharing via App Groups. Use when user wants to add a share extension, action extension, keyboard extension, Safari web extension, or any app extension type.

Why use App Extensions on TypingMind?

Because you install it once and use it with any model. App Extensions is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install App Extensions in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/rshankras/claude-code-apple-skills/tree/main/skills/generators/app-extensions. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use App Extensions?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with App Extensions?

As many as you like. As long as a model supports skills, you can use App Extensions with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the App Extensions AI skill free?

Yes. It is published on GitHub by rshankras under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇