Token导航 LogoToken导航TokenDH.com
AI 工具敏感数据github未标认证来源可访问clear审计通过

axiom-ios-dataaxiom iOS 数据

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

4,703

周安装

202

GitHub Stars

873

下载量

1,648
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

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

简介

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。

  • 适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。
  • 使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实。
  • 涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。
  • axiom-ios-data 属于AI 工具类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

iOS Data & Persistence Router

You MUST use this skill for ANY data persistence, database, axiom-storage, CloudKit, or serialization work.

When to Use

Use this router when working with:

  • Databases (SwiftData, Core Data, GRDB, SQLiteData)
  • Schema migrations
  • CloudKit sync
  • File storage (iCloud Drive, local storage)
  • Data serialization (Codable, JSON)
  • Storage strategy decisions
  • Keychain / secure credential storage
  • Encryption, signing, key management (CryptoKit)

Routing Logic

SwiftData

Working with SwiftData/skill axiom-swiftdata Schema migration/skill axiom-swiftdata-migration Migration issues/skill axiom-swiftdata-migration-diag Migrating from Realm/skill axiom-realm-migration-ref SwiftData vs SQLiteData/skill axiom-sqlitedata-migration

Other Databases

GRDB queries/skill axiom-grdb SQLiteData/skill axiom-sqlitedata Advanced SQLiteData/skill axiom-sqlitedata-ref Core Data patterns/skill axiom-core-data Core Data issues/skill axiom-core-data-diag

Migrations

Database migration safety/skill axiom-database-migration (critical - prevents data loss)

Serialization

Codable issues/skill axiom-codable

Cloud Storage

Cloud sync patterns/skill axiom-cloud-sync CloudKit/skill axiom-cloudkit-ref iCloud Drive/skill axiom-icloud-drive-ref Cloud sync errors/skill axiom-cloud-sync-diag

Keychain & Encryption

Keychain / secure credential storage/skill axiom-keychain Keychain errors/skill axiom-keychain-diag Keychain API reference/skill axiom-keychain-ref Encryption / signing / key management/skill axiom-cryptokit CryptoKit API reference/skill axiom-cryptokit-ref

File Storage

Storage strategy/skill axiom-storage Storage issues/skill axiom-storage-diag Storage management/skill axiom-storage-management-ref File protection/skill axiom-file-protection-ref

tvOS Storage

tvOS data persistence/skill axiom-tvos (CRITICAL: no persistent local storage on tvOS) tvOS + CloudKit/skill axiom-sqlitedata (recommended: SyncEngine as persistent store)

Automated Scanning

Core Data audit → Launch core-data-auditor agent or /axiom:audit core-data (migration risks, thread-confinement, N+1 queries, production data loss) Codable audit → Launch codable-auditor agent or /axiom:audit codable (try? swallowing errors, JSONSerialization, date handling) iCloud audit → Launch icloud-auditor agent or /axiom:audit icloud (entitlement checks, file coordination, CloudKit anti-patterns) Storage audit → Launch storage-auditor agent or /axiom:audit storage (wrong file locations, missing backup exclusions, data loss risks) Database schema audit → Launch database-schema-auditor agent or /axiom:audit database-schema (unsafe ALTER TABLE, DROP operations, missing idempotency, foreign key misuse) SwiftData audit → Launch swiftdata-auditor agent or /axiom:audit swiftdata (struct models, missing VersionedSchema, relationship defaults, background context misuse, N+1 patterns)

Decision Tree

  1. SwiftData? → swiftdata, swiftdata-migration
  2. Core Data? → core-data, core-data-diag
  3. GRDB? → grdb
  4. SQLiteData? → sqlitedata, sqlitedata-ref
  5. ANY schema migration? → database-migration (ALWAYS — prevents data loss)
  6. Realm migration? → realm-migration-ref
  7. SwiftData vs SQLiteData? → sqlitedata-migration
  8. Cloud sync architecture? → cloud-sync
  9. CloudKit? → cloudkit-ref
  10. iCloud Drive? → icloud-drive-ref
  11. Cloud sync errors? → cloud-sync-diag
  12. Codable/JSON serialization? → codable
  13. File storage strategy? → storage, storage-diag, storage-management-ref
  14. File protection? → file-protection-ref
  15. Keychain / storing tokens, passwords, secrets securely? → keychain, keychain-diag, keychain-ref
  16. SecItem errors (errSecDuplicateItem, errSecItemNotFound, errSecInteractionNotAllowed)? → keychain-diag
  17. Encryption, signing, Secure Enclave, CryptoKit? → cryptokit, cryptokit-ref
  18. Quantum-secure cryptography, HPKE, ML-KEM? → cryptokit
  19. Want Core Data safety scan? → core-data-auditor (Agent)
  20. Want Codable anti-pattern scan? → codable-auditor (Agent)
  21. Want iCloud sync audit? → icloud-auditor (Agent)
  22. Want storage location audit? → storage-auditor (Agent)
  23. Want database schema/migration safety scan? → database-schema-auditor (Agent)
  24. Want SwiftData code audit? → swiftdata-auditor (Agent)
  25. tvOS data persistence? → axiom-tvos (CRITICAL: no persistent local storage) + axiom-sqlitedata (CloudKit SyncEngine)

Anti-Rationalization

ThoughtReality
"Just adding a column, no migration needed"Schema changes without migration crash users. database-migration prevents data loss.
"I'll handle the migration manually"Manual migrations miss edge cases. database-migration covers rollback and testing.
"Simple query, I don't need the skill"Query patterns prevent N+1 and thread-safety issues. The skill has copy-paste solutions.
"CloudKit sync is straightforward"CloudKit has 15+ failure modes. cloud-sync-diag diagnoses them systematically.
"I know Codable well enough"Codable has silent data loss traps (try? swallows errors). codable skill prevents production bugs.
"I'll use local storage on tvOS"tvOS has NO persistent local storage. System deletes Caches at any time. axiom-tvos explains the iCloud-first pattern.
"UserDefaults is fine for this token"UserDefaults is unencrypted, backed up to iCloud, and visible to MDM profiles. One audit catches it. keychain stores tokens securely.
"I'll encrypt it myself with CommonCrypto"CryptoKit replaced CommonCrypto's buffer-management nightmares with one-line APIs. cryptokit prevents misuse.

Critical Pattern: Migrations

ALWAYS invoke /skill axiom-database-migration when adding/modifying database columns.

This prevents:

  • "FOREIGN KEY constraint failed" errors
  • "no such column" crashes
  • Data loss from unsafe migrations

Example Invocations

User: "I need to add a column to my SwiftData model" → Invoke: /skill axiom-database-migration (critical - prevents data loss)

User: "How do I query SwiftData with complex filters?" → Invoke: /skill axiom-swiftdata

User: "CloudKit sync isn't working" → Invoke: /skill axiom-cloud-sync-diag

User: "Should I use SwiftData or SQLiteData?" → Invoke: /skill axiom-sqlitedata-migration

User: "Check my Core Data code for safety issues" → Invoke: core-data-auditor agent

User: "Scan for Codable anti-patterns before release" → Invoke: codable-auditor agent

User: "Audit my iCloud sync implementation" → Invoke: icloud-auditor agent

User: "Check if my files are stored in the right locations" → Invoke: storage-auditor agent

User: "Audit my database migrations for safety" → Invoke: database-schema-auditor agent

User: "Check my SwiftData models for issues" → Invoke: swiftdata-auditor agent

User: "How do I persist data on tvOS?" → Invoke: /skill axiom-tvos + /skill axiom-sqlitedata

User: "My tvOS app loses data between launches" → Invoke: /skill axiom-tvos

User: "How do I store an auth token securely?" → Invoke: /skill axiom-keychain

User: "errSecDuplicateItem but I checked and the item doesn't exist" → Invoke: /skill axiom-keychain-diag

User: "How do I encrypt data with AES in Swift?" → Invoke: /skill axiom-cryptokit

User: "I need to sign data with the Secure Enclave" → Invoke: /skill axiom-cryptokit

User: "What's ML-KEM and should I use it?" → Invoke: /skill axiom-cryptokit

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenCode

25.46%
按下载量换算420

Claude Code

25.29%
按下载量换算417

Codex

18.8%
按下载量换算310

Antigravity

12.92%
按下载量换算213

Cursor

7.47%
按下载量换算123

Gemini CLI

3.79%
按下载量换算62

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills