Skip to content

Latest commit

 

History

History
75 lines (53 loc) · 3.03 KB

File metadata and controls

75 lines (53 loc) · 3.03 KB

All Installation Options

The README covers the recommended installation paths: skills.sh, the OpenAI Plugins Directory (ChatGPT & Codex), Claude Code, and Cursor. This file lists every other supported client.

pi package manager

Install via pi:

pi install https://github.com/AvdLee/SwiftUI-Agent-Skill

The skill will be available automatically in pi sessions.

Gemini CLI

Install globally (user-level skill available in all Gemini CLI sessions):

gemini skills install https://github.com/AvdLee/SwiftUI-Agent-Skill

Or install at workspace level so the skill is shared with your team via version control:

gemini skills install https://github.com/AvdLee/SwiftUI-Agent-Skill --scope workspace

You can verify the installation with:

gemini skills list

For more information, see the Gemini CLI Agent Skills documentation.

Autohand Code

Install the skill globally:

git clone https://github.com/AvdLee/SwiftUI-Agent-Skill.git
mkdir -p ~/.autohand/skills
cp -R SwiftUI-Agent-Skill/skills/swiftui-expert-skill ~/.autohand/skills/

Or install it only for the current project:

git clone https://github.com/AvdLee/SwiftUI-Agent-Skill.git
mkdir -p .autohand/skills
cp -R SwiftUI-Agent-Skill/skills/swiftui-expert-skill .autohand/skills/

Autohand Code discovers skills from ~/.autohand/skills/ and .autohand/skills/.

Manual install

  1. Clone this repository.
  2. Install or symlink the skills/swiftui-expert-skill/ folder following your tool's official skills installation docs (see links below).
  3. Use your AI tool as usual and ask it to use the "swiftui-expert" skill for SwiftUI tasks.

Note: the skill folder moved from the repository root to skills/swiftui-expert-skill/ when adopting the Agent Plugins format. A symlink at the old swiftui-expert-skill/ path keeps existing local clones and scripts working; it will be removed in the next major version.

Where to Save Skills

Follow your tool's official documentation, here are a few popular ones:

How to verify:

Your agent should reference the workflow/checklists in skills/swiftui-expert-skill/SKILL.md and jump into the relevant reference file for your task.

Trigger the skill

After installing through any of these options, use the skill in your AI agent, for example:

Use the swiftui expert skill and review the current SwiftUI code for state-management and performance improvements