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

axiom-integration公理整合

Agent Skill

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

总安装

2,910

周安装

125

GitHub Stars

873

下载量

1,020
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/charleswiltgen/axiom --skill axiom-integration

简介

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

  • 适用于 Siri、Shortcuts、推送通知、后台任务等 iOS 系统集成场景,提供 App Intents 和实体查询支持。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加指定技能,需结合原始 README 进一步确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • axiom-integration 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

iOS System Integration

You MUST use this skill for ANY iOS system integration including Siri, Shortcuts, widgets, in-app purchases, background tasks, push notifications, and more.

Quick Reference

Symptom / TaskReference
Siri, App Intents, entity queriesSee skills/app-intents-ref.md
App Shortcuts, phrases, SpotlightSee skills/app-shortcuts-ref.md
App discoverability strategySee skills/app-discoverability.md
Core Spotlight indexingSee skills/core-spotlight-ref.md
Widgets, Live Activities, Control CenterSee skills/extensions-widgets.md
Widget/Live Activity API referenceSee skills/extensions-widgets-ref.md
In-app purchases, subscriptionsSee skills/in-app-purchases.md
StoreKit 2 API referenceSee skills/storekit-ref.md
Calendar events, reminders (EventKit)See skills/eventkit.md
EventKit API referenceSee skills/eventkit-ref.md
Contacts, contact pickerSee skills/contacts.md
Contacts API referenceSee skills/contacts-ref.md
Localization, String CatalogsSee skills/localization.md
Apple terminology matching, glossary, pseudolocalization, TMSSee skills/localization-research-ref.md
Privacy manifests, permissions UXSee skills/privacy-ux.md
AlarmKit (iOS 26+)See skills/alarmkit-ref.md
Timer patterns, schedulingSee skills/timer-patterns.md
Timer API referenceSee skills/timer-patterns-ref.md
Background tasks, BGTaskSchedulerSee skills/background-processing.md
Background task debuggingSee skills/background-processing-diag.md
Background task API referenceSee skills/background-processing-ref.md
Push notifications, APNsSee skills/push-notifications.md
Push notification debuggingSee skills/push-notifications-diag.md
Push notification API referenceSee skills/push-notifications-ref.md

Decision Tree

digraph integration {
    start [label="Integration task" shape=ellipse];
    what [label="Which system feature?" shape=diamond];

    start -> what;
    what -> "skills/app-intents-ref.md" [label="Siri / App Intents"];
    what -> "skills/app-shortcuts-ref.md" [label="Shortcuts / phrases"];
    what -> "skills/app-discoverability.md" [label="discoverability\nstrategy"];
    what -> "skills/extensions-widgets.md" [label="widgets / Live Activities\n/ Control Center"];
    what -> "skills/in-app-purchases.md" [label="IAP / subscriptions"];
    what -> "skills/eventkit.md" [label="calendar / reminders"];
    what -> "skills/contacts.md" [label="contacts"];
    what -> "skills/localization.md" [label="localization"];
    what -> "skills/privacy-ux.md" [label="privacy / permissions"];
    what -> "skills/alarmkit-ref.md" [label="alarms (iOS 26+)"];
    what -> "skills/timer-patterns.md" [label="timers"];
    what -> "skills/background-processing.md" [label="background tasks"];
    what -> "skills/push-notifications.md" [label="push notifications"];
}
  1. Siri / App Intents / entity queries? → skills/app-intents-ref.md
  2. App Shortcuts / phrases? → skills/app-shortcuts-ref.md
  3. App discoverability / Spotlight strategy? → skills/app-discoverability.md, skills/core-spotlight-ref.md
  4. Widgets / Live Activities / Control Center? → skills/extensions-widgets.md, skills/extensions-widgets-ref.md
  5. In-app purchases / StoreKit? → skills/in-app-purchases.md, skills/storekit-ref.md
  6. Calendar / reminders / EventKit? → skills/eventkit.md, skills/eventkit-ref.md
  7. Contacts / contact picker? → skills/contacts.md, skills/contacts-ref.md
  8. Localization mechanics (String Catalogs, plurals, RTL)? → skills/localization.md 8a. Localization research (Apple terminology, glossary, pseudolocalization, TMS)? → skills/localization-research-ref.md
  9. Privacy / permissions? → skills/privacy-ux.md
  10. Alarms (iOS 26+)? → skills/alarmkit-ref.md
  11. Timers? → skills/timer-patterns.md, skills/timer-patterns-ref.md
  12. Background tasks / BGTaskScheduler? → skills/background-processing.md, skills/background-processing-diag.md, skills/background-processing-ref.md
  13. Push notifications? → skills/push-notifications.md, skills/push-notifications-diag.md, skills/push-notifications-ref.md
  14. Want IAP audit? → Launch iap-auditor agent
  15. Want full IAP implementation? → Launch iap-implementation agent
  16. Camera / photos / audio / haptics / ShazamKit? → Use axiom-media instead

Cross-Domain Routing

Widget + data sync (widget not showing updated data):

  • Widget timeline not refreshing → stay here (extensions-widgets)
  • SwiftData/Core Data not shared with extension → also invoke axiom-data (App Groups)

Live Activity + push notification:

  • ActivityKit push token setup → stay here (extensions-widgets)
  • Push delivery failures → also invoke axiom-networking (networking-diag)
  • Entitlements/certificates → also invoke axiom-build

Push + background processing (silent push not triggering background work):

  • Push payload and delivery → stay here (push-notifications-diag)
  • BGTaskScheduler execution → stay here (background-processing)

Calendar/Contacts + data sync:

  • EventKit/Contacts data issues → stay here
  • Shared data with widget via App Groups → also invoke axiom-data

watchOS surfaces

  • Complications + Smart Stack widgets → See axiom-watchos (skills/smart-stack-and-complications.md)
  • Live Activities on Apple Watch → See axiom-watchos (skills/controls-and-live-activities.md)

Conflict Resolution

integration vs axiom-build: When system features fail with entitlement/certificate errors:

  • Use axiom-build for signing and provisioning issues
  • Use integration for API usage and permission patterns

integration vs axiom-data: When widgets or extensions can't access shared data:

  • App Groups and shared containers → axiom-data
  • Widget timeline, Live Activity updates → integration

integration vs axiom-media: When media features overlap with system features:

  • Camera/photo/audio/haptics code → axiom-media
  • Privacy manifests for camera/microphone → stay here (privacy-ux)
  • Background audio mode → stay here (background-processing)

Anti-Rationalization

ThoughtReality
"App Intents are just a protocol conformance"App Intents have parameter validation, entity queries, and background execution.
"Widgets are simple, I've done them before"Widgets have timeline, interactivity, and Live Activity patterns that evolve yearly.
"Localization is just String Catalogs"Xcode 26 has type-safe localization, generated symbols, and #bundle macro.
"Push notifications are just a payload and a token"Token lifecycle, Focus levels, service extension gotchas cause 80% of push bugs.
"Just request full Calendar access"Most apps only need to add events — EventKitUI does that with zero permissions.
"I'll use CNContactStore directly for picking"CNContactPickerViewController needs no authorization and shows all contacts.

Example Invocations

User: "How do I add Siri support?" → Read: skills/app-intents-ref.md

User: "My widget isn't updating" → Read: skills/extensions-widgets.md

User: "Implement in-app purchases with StoreKit 2" → Read: skills/in-app-purchases.md

User: "How do I implement push notifications?" → Read: skills/push-notifications.md

User: "Push notifications work in dev but not production" → Read: skills/push-notifications-diag.md

User: "My background task never runs" → Read: skills/background-processing-diag.md

User: "How do I add an event to the user's calendar?" → Read: skills/eventkit.md

User: "How do I let users pick a contact?" → Read: skills/contacts.md

User: "Review my in-app purchase implementation" → Launch: iap-auditor agent

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.73%
按下载量换算385

Claude

30.34%
按下载量换算309

Cursor

19.38%
按下载量换算198

Gemini CLI

9.26%
按下载量换算94

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills