# Send SymbolPicker to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "symbolpicker",
    "name": "SymbolPicker",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/SzpakKamil/symbolpicker",
    "canonicalUrl": "https://clawhub.ai/SzpakKamil/symbolpicker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/symbolpicker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=symbolpicker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/SetUp.md",
      "references/SymbolColor.md",
      "references/SymbolPicker.md",
      "references/SymbolPickerModifiers.md",
      "references/SymbolPickerView.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "symbolpicker",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T15:26:58.279Z",
      "expiresAt": "2026-05-16T15:26:58.279Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=symbolpicker",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=symbolpicker",
        "contentDisposition": "attachment; filename=\"symbolpicker-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "symbolpicker"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/symbolpicker"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/symbolpicker",
    "downloadUrl": "https://openagent3.xyz/downloads/symbolpicker",
    "agentUrl": "https://openagent3.xyz/skills/symbolpicker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/symbolpicker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/symbolpicker/agent.md"
  }
}
```
## Documentation

### Overview

This skill provides expert guidance on SymbolPicker, a native, customizable SwiftUI component for selecting SF Symbols on iOS, iPadOS, macOS, and visionOS. It mimics Apple’s native interface while offering extensive customization for colors, styles (filled/outlined), and behavior.

### Agent Behavior (Follow These Rules)

Identify Platform Targets: SymbolPicker adapts to each platform (sheet on iOS, popover on iPad/Mac/visionOS). Always verify the target platform.
Prioritize Modifiers: Direct users to the relevant SymbolPicker modifiers (e.g., .symbolPickerSymbolsStyle, .symbolPickerDismiss) for customization.
Handle Colors Correctly: When discussing color selection, clarify if the user wants to use [Double] (RGBA), SwiftUI Color, or SymbolColor.
Emphasize Accessibility: Highlight that SymbolPicker supports VoiceOver and Dynamic Type out of the box.
Contextual Examples: Provide concise code snippets showing the .symbolPicker modifier applied to a view (usually a Button or Image), with bindings for presentation and selection.
Cross-Platform Consistency: Remind users that the API is unified across platforms.

### Project Settings

Deployment Targets: iOS 14.0+, iPadOS 14.0+, macOS 11.0+, visionOS 1.0+.
Swift Version: Swift 5.9+.
Xcode: Xcode 15.0+.

### Quick Decision Tree

Setting up a basic symbol picker?

Basic installation and concepts → references/SymbolPicker.md
To apply the modifier to a view → references/SymbolPickerView.md



Picking symbols with color?

To use different color binding types → references/SymbolPickerView.md
To understand the SymbolColor model → references/SymbolColor.md



Customizing appearance or behavior?

Switching between filled/outlined icons → references/SymbolPickerModifiers.md (.symbolPickerSymbolsStyle)
Controlling dismissal behavior → references/SymbolPickerModifiers.md (.symbolPickerDismiss)

### Triage-First Playbook

"The picker isn't showing up."

Check if .symbolPicker(isPresented: ...) is attached to a view that is part of the hierarchy.
Ensure the isPresented binding is being toggled true.


"I want filled icons instead of outlines."

Use .symbolPickerSymbolsStyle(.filled).


"How do I close the picker immediately after selecting a symbol?"

Use .symbolPickerDismiss(type: .onSymbolSelect).

### Basic Usage

@State private var isPresented = false
@State private var icon = "star"

Button("Pick Icon") { isPresented = true }
    .symbolPicker(isPresented: $isPresented, symbolName: $icon)

### With Color Selection

@State private var isPresented = false
@State private var icon = "star.fill"
@State private var color: Color = .red

Button("Pick Icon & Color") { isPresented = true }
    .symbolPicker(isPresented: $isPresented, symbolName: $icon, color: $color)
    .symbolPickerSymbolsStyle(.filled)
    .symbolPickerDismiss(type: .onSymbolSelect)

### Integration Quick Guide

Add Package Dependency: https://github.com/SzpakKamil/SymbolPicker.git (Min version 1.0.0).
Import: import SymbolPicker.
Requirements: iOS 14.0+, macOS 11.0+, visionOS 1.0+.

### Reference Files

Load these files as needed for specific topics:

SymbolPicker.md - General overview, setup, and core benefits.
SymbolPickerView.md - Detailed information on the picker view and its initializers.
SymbolPickerModifiers.md - Customization of style (filled/outlined) and dismissal behavior.
SymbolColor.md - Guide to using the SymbolColor enum and color bindings.
SetUp.md - Step-by-step installation instructions.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: SzpakKamil
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-09T15:26:58.279Z
- Expires at: 2026-05-16T15:26:58.279Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/symbolpicker)
- [Send to Agent page](https://openagent3.xyz/skills/symbolpicker/agent)
- [JSON manifest](https://openagent3.xyz/skills/symbolpicker/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/symbolpicker/agent.md)
- [Download page](https://openagent3.xyz/downloads/symbolpicker)