Remote OpenClaw
Menu
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Remote OpenClaw
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Skills/erikote04/swift-api-design-guidelines-agent-skill/swift-api-design-guidelines-skill
swift-api-design-guidelines-skill logo

swift-api-design-guidelines-skill

erikote04/swift-api-design-guidelines-agent-skill
706 installs22 stars
Run it on Hostinger →up to 70% off + an extra 10% with code ZACAARON10Free API →

Installation

npx skills add https://github.com/erikote04/swift-api-design-guidelines-agent-skill --skill swift-api-design-guidelines-skill

Summary

Write, review, or improve Swift APIs using Swift API Design Guidelines for naming, argument labels, documentation comments, terminology, and general conventions. Use when designing new APIs, refactoring existing interfaces, or reviewing API clarity and fluency.

SKILL.md

Swift API Design Guidelines Skill

Overview

Use this skill to design and review Swift APIs that are clear at the point of use, fluent in call sites, and aligned with established Swift naming and labeling conventions. Prioritize readability, explicit intent, and consistency across declarations, call sites, and documentation comments.

Work Decision Tree

1) Review existing code

  • Inspect declarations and call sites together, not declarations alone.
  • Check naming clarity and fluency (see references/promote-clear-usage.md, references/strive-for-fluent-usage.md).
  • Check argument labels and parameter naming (see references/parameters.md, references/argument-labels.md).
  • Check documentation comments and symbol markup (see references/fundamentals.md).
  • Check conventions and overload safety (see references/general-conventions.md, references/special-instructions.md).

2) Improve existing code

  • Rename APIs that are ambiguous, redundant, or role-unclear.
  • Refactor labels to improve grammatical call-site reading.
  • Replace weakly named parameters with role-based names.
  • Resolve overload sets that become ambiguous with weak typing.
  • Strengthen documentation summaries to describe behavior and returns precisely.

3) Implement new feature

  • Start from use-site examples before finalizing declarations.
  • Choose base names and labels so calls read as clear English phrases.
  • Add defaults only when they simplify common usage.
  • Define mutating/nonmutating pairs with consistent naming.
  • Add concise documentation comments for every new declaration.

Core Guidelines

Fundamentals

  • Clarity at the point of use is the top priority.
  • Clarity is more important than brevity.
  • Every declaration should have a documentation comment.
  • Summaries should state what the declaration does, returns, accesses, creates, or is.
  • Use recognized Swift symbol markup (Parameter, Returns, Throws, Note, etc.).

Promote Clear Usage

  • Include all words needed to avoid ambiguity.
  • Omit needless words, especially type repetition.
  • Name parameters and associated types by role, not type.
  • Add role nouns when type information is weak (Any, NSObject, String, Int).

Strive For Fluent Usage

  • Prefer method names that produce grammatical, readable call sites.
  • Start factory methods with make.
  • Name side-effect-free APIs as noun phrases; side-effecting APIs as imperative verbs.
  • Keep mutating/nonmutating naming pairs consistent (sort/sorted, formUnion/union).
  • Boolean APIs should read as assertions (isEmpty, intersects).

Use Terminology Well

  • Prefer common words unless terms of art are necessary for precision.
  • If using a term of art, preserve its established meaning.
  • Avoid non-standard abbreviations.
  • Embrace established domain precedent when it improves shared understanding.

Conventions, Parameters, And Labels

  • Document complexity for computed properties that are not O(1).
  • Prefer methods/properties to free functions except special cases.
  • Follow Swift casing conventions, including acronym handling.
  • Use parameter names that improve generated documentation readability.
  • Prefer default arguments over method families when semantics are shared.
  • Place defaulted parameters near the end.
  • Apply argument labels based on grammar and meaning, not style preference.

Special Instructions

  • Label tuple members and name closure parameters in public API surfaces.
  • Be explicit with unconstrained polymorphism to avoid overload ambiguity.
  • Align names with semantics shown in documentation comments.

Quick Reference

Name Shape

SituationPreferred Pattern
Mutating verbreverse()
Nonmutating verbreversed() / strippingNewlines()
Nonmutating noun opunion(_:)
Mutating noun opformUnion(_:)
Factory methodmakeWidget(...)
Boolean queryisEmpty, intersects(_:)

Argument Label Rules

SituationRule
Distinguishable unlabeled argsOmit labels only if distinction is still clear
Value-preserving conversion initOmit first label
First arg in prepositional phraseUsually label from the preposition
First arg in grammatical phraseOmit first label
Defaulted argumentsKeep labels (they may be omitted at call sites)
All other argumentsLabel them

Documentation Rules

Declaration KindSummary Should Describe
Function / methodWhat it does and what it returns
SubscriptWhat it accesses
InitializerWhat it creates
Other declarationsWhat it is

Review Checklist

Clarity And Fluency

  • [ ] Call sites are clear without reading implementation details.
  • [ ] Base names include all words needed to remove ambiguity.
  • [ ] Names are concise and avoid repeating type names.
  • [ ] Calls read naturally and grammatically where it matters most.

Naming Semantics

  • [ ] Side-effect-free APIs read as nouns/queries.
  • [ ] Side-effecting APIs read as imperative verbs.
  • [ ] Mutating/nonmutating pairs use consistent naming patterns.
  • [ ] Boolean APIs read as assertions.

Parameters And Labels

  • [ ] Parameter names improve docs and role clarity.
  • [ ] Default parameters simplify common usage.
  • [ ] Defaulted parameters are near the end.
  • [ ] First argument labels follow grammar and conversion rules.
  • [ ] Remaining arguments are labeled unless omission is clearly justified.

Documentation And Conventions

  • [ ] Every declaration has a useful summary comment.
  • [ ] Symbol markup is used where appropriate.
  • [ ] Non-O(1) computed property complexity is documented.
  • [ ] Case conventions and acronym casing follow Swift norms.
  • [ ] Overloads avoid return-type-only distinctions and weak-type ambiguities.

References

  • references/fundamentals.md - Core principles and documentation comment rules
  • references/promote-clear-usage.md - Ambiguity reduction and role-based naming
  • references/strive-for-fluent-usage.md - Fluency, side effects, and mutating pairs
  • references/use-terminology-well.md - Terms of art, abbreviations, and precedent
  • references/general-conventions.md - Complexity docs, free function exceptions, casing, overloads
  • references/parameters.md - Parameter naming and default argument strategy
  • references/argument-labels.md - First-argument and general label rules
  • references/special-instructions.md - Tuple/closure naming and unconstrained polymorphism

Philosophy

  • Prefer clear use-site semantics over declaration cleverness.
  • Follow established Swift conventions before inventing local style rules.
  • Optimize for maintainability and reviewability of public API surfaces.
  • Keep guidance practical: apply the smallest change that improves clarity.

Score

0–100
63/ 100

Grade

C

Popularity15/30

706 installs — growing adoption.

Completeness27/30

Documented: full SKILL.md body, description, one-line install. Missing: category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Swift Api Design Guidelines Skill skill score badge previewScore badge

Markdown

[![Swift Api Design Guidelines Skill skill](https://www.remoteopenclaw.com/skills/erikote04/swift-api-design-guidelines-agent-skill/swift-api-design-guidelines-skill/badges/score.svg)](https://www.remoteopenclaw.com/skills/erikote04/swift-api-design-guidelines-agent-skill/swift-api-design-guidelines-skill)

HTML

<a href="https://www.remoteopenclaw.com/skills/erikote04/swift-api-design-guidelines-agent-skill/swift-api-design-guidelines-skill"><img src="https://www.remoteopenclaw.com/skills/erikote04/swift-api-design-guidelines-agent-skill/swift-api-design-guidelines-skill/badges/score.svg" alt="Swift Api Design Guidelines Skill skill"/></a>

Swift Api Design Guidelines Skill FAQ

How do I install the Swift Api Design Guidelines Skill skill?

Run “npx skills add https://github.com/erikote04/swift-api-design-guidelines-agent-skill --skill swift-api-design-guidelines-skill” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Swift Api Design Guidelines Skill skill do?

Write, review, or improve Swift APIs using Swift API Design Guidelines for naming, argument labels, documentation comments, terminology, and general conventions. Use when designing new APIs, refactoring existing interfaces, or reviewing API clarity and fluency. The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Swift Api Design Guidelines Skill skill free?

Yes. Swift Api Design Guidelines Skill is a free, open-source skill published from erikote04/swift-api-design-guidelines-agent-skill. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Swift Api Design Guidelines Skill work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Swift Api Design Guidelines Skill works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
View on GitHub

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.7M installsInstall
frontend-design logo

frontend-design

anthropics/skills

719K installsInstall
grill-me logo

grill-me

mattpocock/skills

698K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

594K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

591K installsInstall
vercel-react-best-practices logo

vercel-react-best-practices

vercel-labs/agent-skills

590K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Code Review SkillsGuideBest Documentation Skills For AI AgentsGuide10 Openclaw Skills Every Nextjs Developer Needs

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

The Agent Stack: weekly agent tooling digest, free.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • MCP Clients
  • Marketplace
  • Hermes Ecosystem
  • Free guide
  • Learn
  • OpenClaw for Creators
  • OpenClaw for Founders
  • Blog
  • The Agent Stack (Digest)

More

  • Submit a Tool
  • Advertise
  • Playbook
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy

Know a company that should advertise here? Refer them and earn 10% — up to $300 per referral.

© 2026 Remote OpenClaw
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed