Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

apple-swift-package-bootstrapApple Swift package bootstrap 搜索

Agent Skill

apple-swift-package-bootstrap 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

329

周安装

14

GitHub Stars

4

下载量

115
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:apple-swift-package-bootstrap(Apple Swift package bootstrap 搜索)
来源仓库:https://github.com/gaelic-ghost/apple-dev-skills
仓库路径:skills/apple-swift-package-bootstrap
安装命令:
npx skills add https://github.com/gaelic-ghost/apple-dev-skills --skill apple-swift-package-bootstrap
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/gaelic-ghost/apple-dev-skills --skill apple-swift-package-bootstrap

简介

用于查找、检索和筛选 Swift 包初始化相关信息。

  • 适用于 Codex、Claude、Cursor、Gemini CLI,支持新项目脚手架创建和默认配置生成。
  • 通过 npx skills add 命令安装,需使用 scripts/run_workflow.py 作为主要入口。
  • 安装前建议核实是否会修改项目结构和生成 AGENTS.md 等文档,避免覆盖已有配置。
  • apple-swift-package-bootstrap 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Apple Swift Package Bootstrap

Purpose

Create a new Swift package repository with one top-level entry point and a simplicity-first Swift baseline. scripts/run_workflow.py is the runtime wrapper, and scripts/bootstrap_swift_package.sh remains the implementation core for scaffold creation and validation.

When To Use

  • Use this skill for new Swift package scaffolding.
  • Use this skill when the user wants consistent package defaults, AGENTS.md generation, and immediate validation.
  • Use this skill when the user wants to customize the documented bootstrap defaults for future runs.
  • Do not use this skill as the default path for normal Xcode app collaboration work.
  • Recommend apple-xcode-workflow when the user is working in an existing Xcode project or needs Apple-platform execution after bootstrap.
  • Recommend apple-dash-docsets when the user needs Dash docset search, install, or generation work.

Single-Path Workflow

  1. Collect the required inputs:

- name - type - destination - platform - version_profile - optional testing_mode - optional skip_validation

  1. Normalize aliases exactly as scripts/bootstrap_swift_package.sh does:

- macos -> mac - ios -> mobile - both -> multiplatform - latest -> latest-major - minus-one -> current-minus-one - minus-two -> current-minus-two

  1. Run scripts/run_workflow.py so documented defaults are loaded from customization state and normalized into one JSON contract.
  2. Select testing mode before scaffold creation:

- require a supported and validated Swift 5.10+ toolchain floor before bootstrap planning continues - prefer swift-testing on supported current toolchains - use xctest when explicitly requested or when the supported toolchain requires it - stop with blocked when the local toolchain is older than 5.10 or when the local swift package init command cannot select the requested testing mode

  1. Let the wrapper invoke the bundled script: scripts/bootstrap_swift_package.sh --name <Name> --type <library|executable|tool> --destination <dir> --platform <mac|macos|mobile|ios|multiplatform|both> --version-profile <latest-major|current-minus-one|current-minus-two|latest|minus-one|minus-two> --testing-mode <swift-testing|xctest>
  2. Verify the generated repository:

- Package.swift - .git - AGENTS.md - Tests/ - swift build and swift test unless --skip-validation was requested

  1. Ensure the generated guidance encodes the shared Swift policy:

- apply the detailed local policy in references/snippets/apple-swift-core.md - keep the generated repo aligned with the simplicity-first, shape-preserving, and anti-ceremony Swift guidance in that snippet - preserve the project-appropriate logging, telemetry, and SwiftUI architecture guidance from that snippet

  1. Hand off package execution guidance cleanly:

- use swift build and swift test by default - recommend apple-xcode-workflow for package builds that need Xcode-managed toolchain behavior, such as package builds that depend on Xcode-provided Metal or other Apple-managed build assets

  1. Return one JSON execution summary with the created path, normalized options, and validation result.

Inputs

  • name: required; must start with a letter and contain only letters, numbers, _, or -.
  • type: library, executable, or advanced explicit tool.
  • destination: parent directory for the new package.
  • platform: mac, mobile, or multiplatform, with aliases normalized by the script.
  • version_profile: latest-major, current-minus-one, or current-minus-two, with aliases normalized by the script.
  • testing_mode: swift-testing or xctest.
  • skip_validation: optional flag to skip swift build and swift test.
  • dry_run: optional flag to resolve defaults and emit the normalized command contract without creating files.
  • Defaults:

- runtime entrypoint: executable scripts/run_workflow.py - type defaults to library - destination defaults to . - platform defaults to multiplatform - version_profile defaults to current-minus-one - testing_mode defaults to swift-testing - validation runs unless --skip-validation is passed - supported and validated Swift toolchain floor is 5.10+

Outputs

  • status

- success: the package was created and verification succeeded - blocked: prerequisites, unsupported toolchains, unsupported testing-mode selections, or target-directory constraints prevented the run - failed: the script started but did not complete successfully

  • path_type

- primary: the bundled script completed successfully - fallback: manual scaffold guidance is being used instead of the bundled script

  • output

- resolved package path - normalized inputs - validation result - one concise next step

Guards and Stop Conditions

  • Stop with blocked if swift is missing.
  • Stop with blocked if swift --version cannot be parsed into a supported toolchain version.
  • Stop with blocked if the local Swift toolchain is older than 5.10.
  • Stop with blocked if git is missing.
  • Stop with blocked if assets/AGENTS.md is missing.
  • Stop with blocked if the target exists and contains non-ignorable files.
  • Stop with blocked if name is missing.
  • Stop with blocked if the requested testing mode cannot be honored by the active swift package init command.

Fallbacks and Handoffs

  • Preferred path is always scripts/bootstrap_swift_package.sh.
  • Use manual swift package init guidance only when the script is unavailable or the user explicitly asks for the manual path.
  • tool is an advanced explicit passthrough, not a default branch of the workflow.
  • After a successful scaffold, hand off build, test, or Xcode-managed package execution tasks to apple-xcode-workflow.
  • For ordinary package work, prefer swift build and swift test.
  • For package builds that need Xcode-managed SDK or toolchain behavior, use apple-xcode-workflow and xcodebuild guidance instead of stretching the bootstrap skill into an execution skill.
  • Recommend apple-dash-docsets directly when the user’s next step is Dash docset or cheatsheet management.
  • scripts/run_workflow.py is the top-level runtime entrypoint and converts the shell script result into the documented JSON contract.

Customization

  • Use references/customization-flow.md.
  • scripts/customization_config.py stores and reports customization state.
  • scripts/run_workflow.py loads runtime-safe defaults from customization state before invoking the shell script.
  • scripts/bootstrap_swift_package.sh now honors the wrapper's git and AGENTS.md copy flags.

References

Workflow References

  • references/package-types.md

Contract References

  • references/automation-prompts.md
  • references/customization-flow.md

Support References

  • Recommend references/snippets/apple-swift-core.md when the new package repo should start with reusable Apple and Swift baseline policy content next to the generated AGENTS.md.
  • assets/AGENTS.md
  • references/snippets/apple-swift-core.md

Script Inventory

  • scripts/run_workflow.py
  • scripts/bootstrap_swift_package.sh
  • scripts/customization_config.py

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.41%
按下载量换算44

Claude

28.99%
按下载量换算33

Cursor

16.61%
按下载量换算19

Gemini CLI

8.84%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/gaelic-ghost/apple-dev-skills --skill apple-swift-package-bootstrap 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills