Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

skill-maintainer技能维持者

Agent Skill

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

总安装

194

周安装

8

GitHub Stars

公开资料未说明

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/makgunay/claude-swift-skills --skill skill-maintainer

简介

skill-maintainer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 安装方式:github,使用 npx skills add 命令添加。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Maintainer — Documentation Ingestion & Skill Updater

Process new Apple developer documentation and route extracted knowledge into the correct skill files.

Workflow

Step 1: Classify Incoming Documentation

Read each uploaded document and classify it by answering:

QuestionAction
Which framework(s) does it cover?Map to target skill(s) using the Skill Registry below
Is this a new API or an update to an existing one?New → may need new skill; Update → patch existing
What's the minimum deployment target?Tag patterns with OS version requirements
Does it deprecate anything?Add to Critical Constraints in target skill

If a document spans multiple skills (e.g., "SwiftUI-WebKit-Integration" touches both swiftui-core and a potential swiftui-webkit skill), extract relevant portions into each.

Step 2: Extract Actionable Content

From each document, extract exactly these categories:

Patterns — Working, copy-pasteable code blocks with:

  • The API call or view/modifier being demonstrated
  • Required imports
  • Minimum OS version (if not the latest)
  • Inline comments on non-obvious behavior

Constraints — Things an LLM will get wrong:

  • Deprecated APIs that the new one replaces (❌ old → ✅ new)
  • Parameters that changed names or types
  • Behaviors that differ from what the name implies
  • Common mistakes visible in the doc's "Best Practices" or notes

Decision Logic — When to use which approach:

  • If the doc presents multiple approaches (e.g., .background vs .foreground(.dynamic) intent modes), capture the decision tree
  • If the doc distinguishes platform availability, capture the conditional

References — Source links:

  • Apple Developer Documentation URLs
  • WWDC session links with year

Step 3: Diff Against Existing Skills

Before writing, read the target skill file(s) and check:

  1. Duplicate patterns — Does this pattern already exist? If yes, check if the new version supersedes it
  2. Contradictions — Does the new doc contradict existing constraints? If yes, the new doc wins (it's more recent)
  3. Gaps — Does the existing skill lack coverage for this area? If yes, add a new section
  4. Deprecations — Does the new doc make any existing patterns obsolete? If yes, move old pattern to constraints with ❌

Step 4: Update Target Skills

Apply changes following the target skill's internal structure. Every skill should maintain these sections (add if missing):

## Critical Constraints        ← ❌ DO NOT / ✅ INSTEAD rules
## Decision Tree               ← When to use what
## Verified Patterns           ← Working code blocks
  ### Pattern: [Name]          ← Each with OS version tag
## Common Mistakes & Fixes     ← Table format
## References                  ← Apple doc + WWDC links

Formatting rules for inserted content:

  • Tag every pattern with version: <!-- Verified: macOS 26, Swift 6.2, Xcode 26 -->
  • Prefix new constraints with the source: <!-- Source: SwiftUI-New-Toolbar-Features.md -->
  • Keep code blocks self-contained (include imports)
  • Prefer short inline comments over paragraph explanations

Step 5: Handle New Skills

If the document covers a framework with no existing skill, create one:

  1. Use the Skill Registry to confirm no existing skill covers it
  2. Create SKILL.md with proper frontmatter
  3. Follow the standard section structure above
  4. If content exceeds ~400 lines, split into SKILL.md (core workflow + index) and references/ files
  5. Register the new skill in the registry

Step 6: Report Changes

After processing, output a summary:

## Ingestion Report

### Documents Processed
- [filename] → [target skill(s)]

### Changes Made
| Skill | Action | Details |
|-------|--------|---------|
| swift-lang | UPDATED | Added @concurrent attribute pattern, Swift 6.2 default MainActor isolation |
| liquid-glass | UPDATED | Added WidgetKit accented rendering mode |
| swiftui-webkit | CREATED | New skill — WebView/WebPage APIs from SwiftUI-WebKit-Integration.md |

### Deprecations Flagged
- `NavigationView` → `NavigationSplitView` (swiftui-core)
- `ObservableObject` → `@Observable` for macOS 14+ (swift-lang)

### Unresolved
- [any docs that didn't map cleanly — ask user for guidance]

Skill Registry

Map frameworks/topics to target skills. Update this when creating new skills.

Framework / TopicTarget SkillReference Files
Swift language, concurrency, value types, macrosswift-lang
SwiftUI views, navigation, state, toolbars, textswiftui-core
SwiftData models, queries, inheritance, migrationswiftdata
macOS app lifecycle, windows, scenes, entitlementsmacos-app-structure
AppKit bridging, NSView, NSPanel, NSEventappkit-bridge
Global hotkeys, CGEvent, keyboard monitoringglobal-hotkeys
Clipboard, text insertion, paste simulationpasteboard-textinsertion
macOS permissions, Accessibility, TCCmacos-permissions
Liquid Glass (SwiftUI, AppKit, UIKit, WidgetKit)liquid-glassPer-framework reference files
WebView, WebPage, WebKit in SwiftUIswiftui-webkit
FoundationModels, on-device LLM, @Generablefoundation-models
AppIntents, Siri, Shortcuts, Spotlightapp-intents
StoreKit, IAP, subscriptionsmacos-distribution
Swift Testing, @Test, #expecttesting-swift
MapKit, GeoToolbox, PlaceDescriptormapkit-geo (optional)
Charts, Chart3D, SurfacePlotcharts-3d (optional)

Unmapped content: If a document doesn't fit any existing skill, flag it and ask the user whether to create a new skill or fold it into an existing one.

Classification Heuristics

Use these signals to auto-classify documents:

Signal in DocumentLikely Target Skill
import SwiftUI + view/modifier patternsswiftui-core
import SwiftData or @Modelswiftdata
import AppKit or NS* classesappkit-bridge
import FoundationModels or LanguageModelSessionfoundation-models
import WebKit + WebView/WebPageswiftui-webkit
import AppIntents or AppIntent protocolapp-intents
import StoreKitmacos-distribution
glassEffect, GlassEffectContainer, Liquid Glassliquid-glass
@concurrent, nonisolated, Sendable, actor isolationswift-lang
InlineArray, Span, MutableSpanswift-lang
CGEvent, NSEvent.addGlobalMonitorglobal-hotkeys
NSPasteboard, AXUIElementpasteboard-textinsertion
AXIsProcessTrusted, permission promptsmacos-permissions
WindowGroup, MenuBarExtra, Settings scenemacos-app-structure
@Test, #expect, @Suitetesting-swift

Quality Rules

When updating skills, enforce these standards:

  1. No orphan code — Every code block must include required import statements
  2. No version ambiguity — Every pattern tagged with minimum OS version
  3. No stale deprecations — If adding a new way, mark the old way as ❌
  4. No duplicates — Search existing skill before inserting; merge if similar
  5. Constraints > Patterns — It's more valuable to tell the agent what NOT to do than to show one more example
  6. Size budget — SKILL.md body stays under 500 lines; overflow goes to references/
  7. Self-contained patterns — Each code block should compile independently if pasted into a fresh file with the right imports

Batch Processing

When processing multiple documents at once:

  1. Read all documents first to build a complete picture
  2. Group by target skill to minimize file edits
  3. Process in dependency order: swift-lang first (language level), then frameworks
  4. Deduplicate across documents (e.g., Liquid Glass appears in 4 docs — consolidate)
  5. Generate a single unified ingestion report at the end

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.81%
按下载量换算22

Claude

30.59%
按下载量换算19

Cursor

20.37%
按下载量换算13

Gemini CLI

10.37%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills