← 返回 Skills 市场
Map Agent - iOS LLM Agent SDK(高德官方 AI Agent Skill)
作者
GaodeMapOfficial
· GitHub ↗
· v1.0.2
· MIT-0
89
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install ios-llm-agent-sdk
功能描述
Map Agent - 高德地图 MALLMKit SDK 集成技能,支持自然语言查询、Map 路线规划、POI搜索、导航控制等智能 Map 地图服务,以及与高德 Map APP 的 IPC 通信
使用说明 (SKILL.md)
Map Agent - iOS LLM Agent SDK(高德官方 AI Agent Skill)
高德地图 MALLMKit SDK 集成技能,支持自然语言查询、路线规划、POI搜索、导航控制等智能地图服务,以及与高德地图 APP 的 IPC 通信(授权认证、建联、收发数据)。
适用场景
- 集成高德智能语音助手到 iOS 应用
- 实现自然语言驱动的地图交互(如"去西藏"、"附近的肯德基")
- 导航控制与数据监听
- 合作方 APP 与高德地图 APP 建立 IPC 通信链路,收发数据
触发词
| 触发词 | 文档 | 说明 |
|---|---|---|
| 接入LLM Agent SDK | 接入 Agent | Agent 初始化、命令注册、查询调用完整流程 |
| 链接高德app | 链接高德 APP | Link 页面创建、授权认证、建联、导航命令收发完整流程 |
💡 别名:说"接入agent"或"接入agent sdk"也会匹配到"接入LLM Agent SDK"触发词。 💡 别名:说"连接高德app"、"接入linkKit"、"IPC通信"、"与高德APP通信"也会匹配到"链接高德app"触发词。
快速开始
- Agent SDK 首次接入请阅读:快速集成指南
- Link SDK 首次接入请阅读:Link 快速集成指南
API 文档 — Agent SDK(按需查阅)
| 文档 | 说明 |
|---|---|
| 智能查询 | 发起自然语言查询、多轮对话 |
| 查询结果处理 | 处理路线、POI、导航等查询结果 |
| 导航控制 | 开始/停止导航、切换路线、播报模式 |
| 导航数据监听 | 实时监听导航数据回调 |
| 出行方式配置 | 导航环境、路线偏好、家/公司位置 |
| IPC链路管理 | APP链路模式的建联与授权 |
| 生命周期管理 | 场景管理、状态重置、内存管理 |
| 日志管理 | SDK 内部日志监听 |
API 文档 — Link SDK(按需查阅)
| 文档 | 说明 |
|---|---|
| 认证管理 | 通过 AMapAuthorizationManager 完成授权流程与回调处理 |
| 连接管理 | 通过 AMapLinkManager 建立连接、状态监听、自动重连、断开连接 |
| 数据传输与命令 | 发送数据、导航命令(途经点/目的地/播报/开始导航)、数据监听 |
参考文档(深入查阅)
| 文档 | 说明 |
|---|---|
| Agent 核心类参考 | Agent SDK 公共类与枚举速查 |
| 常见问题排查 | 错误码与常见问题解决 |
| 语音指令参考 | 支持的自然语言指令示例 |
| Link 核心类参考 | Link SDK 公共类速查 |
| Link 错误码参考 | Link SDK 错误码速查 |
安全使用建议
This package is documentation and example code for integrating AMap's iOS MALLMKit (Agent + Link). It does not itself install binaries or ask for secrets, so the footprint is small — however before using the code in a real app: 1) Verify you obtained MALLMKit and any native libs (.a, frameworks) from the official AMap/Open Platform; 2) Carefully review any place you or generated code would call configureAgentURL or point server endpoints — do not point these to unknown third-party URLs (they could receive user queries, location, or navigation data); 3) Check Info.plist/URL-scheme changes and ensure they match your privacy policy and user consent requirements (location and IPC carry sensitive data); 4) Confirm how API keys and authorization are obtained and stored (examples use NSUserDefaults — consider secure storage if needed); 5) If you will let an AI agent auto-generate or run code using these docs, review generated code before execution to ensure no endpoint or data-exfil behavior was introduced. If you need me to highlight every line that sends data out or to flag unsafe default values in the examples, I can scan specific files for those calls.
功能分析
Type: OpenClaw Skill
Name: ios-llm-agent-sdk
Version: 1.0.2
The bundle provides legitimate documentation and code templates for integrating the AMap (高德地图) MALLMKit SDK into iOS applications. It includes detailed guides for natural language map queries, navigation control, and IPC communication with the official AMap app. The code examples and instructions in SKILL.md and the api/ directory are consistent with standard iOS development practices for mapping services and do not contain any evidence of data exfiltration, malicious execution, or harmful prompt injection.
能力标签
能力评估
Purpose & Capability
Name/description describe an iOS SDK integration skill and the files (quick-start, API references, code examples) are exactly what is needed to integrate an iOS LLM Agent and Link IPC with AMap; there are no unrelated requirements (no extra env vars, binaries, or installs).
Instruction Scope
The runtime instructions stay within SDK integration scope (initialization, authorization, IPC, sending JSON commands, navigation control). Two items to be aware of: (1) the docs show an API to configure a custom Agent service URL (configureAgentURL) — pointing that to an untrusted external endpoint could redirect queries/data outside expected servers; (2) LinkManager server probing and IPC sendDataToClient: will transmit JSON messages and navigation/location-related data to the linked app or server. These behaviors are coherent with the skill's purpose but carry privacy/data-exfiltration risk if misconfigured.
Install Mechanism
Instruction-only skill with no install spec and no code to execute on install; nothing is downloaded or written to disk by the skill package itself.
Credentials
The skill declares no environment variables, credentials, or config paths. The examples mention using API keys and Info.plist settings (expected for an SDK integration) but do not request unrelated credentials.
Persistence & Privilege
The skill does not request permanent inclusion (always:false) nor attempt to modify other skills. It shows example persistence of authorization state in NSUserDefaults (local, expected for mobile SDKs).
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install ios-llm-agent-sdk - 安装完成后,直接呼叫该 Skill 的名称或使用
/ios-llm-agent-sdk触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
优化展示名称,Map 关键词前置提升搜索排名
v1.0.1
优化展示名称和描述,增加 Map 关键词提升搜索可见性
v1.0.0
首次发布:高德地图 MALLMKit SDK 集成技能,支持自然语言查询、路线规划、POI搜索、导航控制等智能地图服务
元数据
常见问题
Map Agent - iOS LLM Agent SDK(高德官方 AI Agent Skill) 是什么?
Map Agent - 高德地图 MALLMKit SDK 集成技能,支持自然语言查询、Map 路线规划、POI搜索、导航控制等智能 Map 地图服务,以及与高德 Map APP 的 IPC 通信. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 89 次。
如何安装 Map Agent - iOS LLM Agent SDK(高德官方 AI Agent Skill)?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install ios-llm-agent-sdk」即可一键安装,无需额外配置。
Map Agent - iOS LLM Agent SDK(高德官方 AI Agent Skill) 是免费的吗?
是的,Map Agent - iOS LLM Agent SDK(高德官方 AI Agent Skill) 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Map Agent - iOS LLM Agent SDK(高德官方 AI Agent Skill) 支持哪些平台?
Map Agent - iOS LLM Agent SDK(高德官方 AI Agent Skill) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Map Agent - iOS LLM Agent SDK(高德官方 AI Agent Skill)?
由 GaodeMapOfficial(@lbs-amap)开发并维护,当前版本 v1.0.2。
推荐 Skills