Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

arkit-advanced先进的阿基特

Agent Skill

arkit-advanced 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

356

周安装

15

GitHub Stars

4

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill arkit-advanced

简介

arkit-advanced 提供 iOS ARKit 高级功能支持,重点实现场景重建与 3D 对象精准跟踪。

  • 适合开发虚拟试穿、环境测绘或多用户协同 AR 应用,要求设备搭载 A12+ 芯片。
  • 利用 ARWorldTrackingConfiguration 生成实境网格,支持动态物体检测与空间锚定。
  • 使用前应确认 Xcode 项目已配置 ARKit 权限,并在真机上测试陀螺仪与摄像头校准状态。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

arkit-advanced

Purpose

This skill provides advanced ARKit capabilities for iOS AR development, focusing on scene reconstruction and 3D object tracking to enable complex applications like virtual try-ons or environmental mapping.

When to Use

Use this skill for projects requiring high-fidelity AR interactions, such as integrating real-world geometry into apps, handling dynamic object detection, or building multi-user AR experiences on iOS devices with A12+ chips.

Key Capabilities

  • Scene reconstruction via ARWorldTrackingConfiguration for generating 3D meshes from real-world environments.
  • 3D object tracking using ARObjectScanningConfiguration to detect and anchor custom objects.
  • Advanced lighting estimation with ARFrame's lightEstimate property for realistic rendering.
  • Integration with RealityKit for efficient scene management and physics simulation.

Usage Patterns

To use this skill in OpenClaw, invoke it via the CLI with specific flags for task generation. Start by specifying the skill ID and providing context, then chain commands for refinement. For example, generate code for scene reconstruction by passing a JSON config file. Always include device compatibility checks in your workflow.

Common Commands/API

Use OpenClaw's CLI to interact with this skill. Prefix commands with openclaw run arkit-advanced and add flags for specifics.

  • Command: openclaw run arkit-advanced --feature scene-reconstruction --config path/to/config.json

- Generates Swift code for ARWorldTrackingConfiguration setup. - Code snippet: let configuration = ARWorldTrackingConfiguration() configuration.sceneReconstruction =.mesh session.run(configuration)

  • Command: openclaw run arkit-advanced --feature object-tracking --object-id sample_cube

- Creates code for ARObjectScanningConfiguration. - Code snippet: let configuration = ARObjectScanningConfiguration() configuration.detectionObjects = [ARReferenceObject.referenceObject(for: sampleCube)] session.run(configuration)

  • API Endpoint: For OpenClaw integration, use HTTP endpoints like POST /api/skills/arkit-advanced/run with a JSON payload: {"feature": "scene-reconstruction", "params": {"environment": "outdoors"}}.
  • Config Format: Use JSON files, e.g., {"apiVersion": "2.0", "device": "iPhone 13", "trackingMode": "3D"}. Load via --config flag.

Integration Notes

Integrate this skill into your OpenClaw workflow by setting environment variables for authentication if accessing Apple services, e.g., export $APPLE_DEVELOPER_KEY for API calls. Ensure your project includes the ARKit framework in Xcode; add import ARKit at the top of Swift files. For multi-skill setups, chain with other ar-vr skills using openclaw chain arkit-advanced --next-skill unity-vr. Test on a physical iOS device, as simulators don't support AR hardware.

Error Handling

Handle errors by checking ARSession's state; for example, catch ARSession.RunOptions errors with if error!= nil {print(error!.localizedDescription)}. In OpenClaw commands, use --verbose flag to log failures, e.g., openclaw run arkit-advanced --feature scene-reconstruction --verbose. Common issues include device incompatibility (check A12+ chip) or poor lighting; implement retry logic with session.run(configuration, options: [.removeExistingAnchors]). Parse OpenClaw responses for error codes like 400 for invalid configs.

Concrete Usage Examples

  1. Scene Reconstruction for Virtual Furniture App: Run openclaw run arkit-advanced --feature scene-reconstruction --config furniture_app.json to generate code that scans a room and places a virtual chair. Code snippet: let configuration = ARWorldTrackingConfiguration() configuration.sceneReconstruction =.meshWithClassification arView.session.run(configuration)
  2. 3D Object Tracking for Product Demo: Execute openclaw run arkit-advanced --feature object-tracking --object-id product_model to track a scanned product in AR. Code snippet: guard let referenceObject = try? ARReferenceObject(url: productURL) else {return} let configuration = ARObjectScanningConfiguration() configuration.detectionObjects = [referenceObject] session.run(configuration)

Graph Relationships

  • Related to cluster: ar-vr (e.g., shares dependencies with skills like unity-vr).
  • Connected via tags: arkit (direct link to basic arkit skill), augmented-reality (cross-links with hololens-mixed-reality), ios-ar (integrates with swift-ios tools), ar-advanced (extends to advanced-ar frameworks).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.12%
按下载量换算49

Claude

27.04%
按下载量换算34

Cursor

17.74%
按下载量换算22

Gemini CLI

10.19%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills