This repository provides AI assistant Skills for Baidu Map WebAPI. Use them with Claude, Cursor, or other clients that support skills so the AI can reference accurate API docs and examples when you work with Baidu Map server-side APIs.
| Skill | Description |
|---|---|
| baidu-map-webapi | Baidu Map WebAPI: POI search (keyword / nearby / bounds / multi-dimensional), route planning (driving / walking / cycling / motorcycle / transit), geocoding & reverse geocoding, administrative division query, weather query, suggested departure time, route duration prediction, and more. For server-side or direct HTTP API integration. |
git clone https://github.com/baidu-maps/webapi-skills.git
cd webapi-skillsDownload the webapi-skills.zip asset from Releases, then unzip it:
unzip webapi-skills.zip
cd skillsLink or copy the skill directories under skills/ into your environment's skills folder so the AI can load its docs during conversations.
Claude Desktop (local)
- Skills directory is usually:
~/.claude/skills/ - Register via symlink (recommended):
ln -sfn "$(pwd)/skills/baidu-map-webapi" ~/.claude/skills/baidu-map-webapi
- Or copy the
skills/baidu-map-webapifolder into~/.claude/skills/.
Cursor
- Skills directory is usually:
~/.cursor/skills/ - Register via symlink (recommended):
ln -sfn "$(pwd)/skills/baidu-map-webapi" ~/.cursor/skills/baidu-map-webapi
- Or copy the
skills/baidu-map-webapifolder into~/.cursor/skills/.
When your questions mention "Baidu Map", "WebAPI", "POI search", "route planning", "geocoding", "weather query", or similar, the assistant will use this skill's docs to give answers and code that match the Baidu Map WebAPI.
.
├── skills/
│ └── baidu-map-webapi/ # Baidu Map WebAPI skill
│ ├── SKILL.md # Skill entry and index
│ ├── references/ # API reference docs
│ │ ├── capabilities/ # Advanced capability docs (route duration, departure time, etc.)
│ └── recipes/ # usage scenarios
└── README.md
SKILL.md lists all reference and recipe files so the AI can load them as needed.
If a skill declares a license (e.g. MIT), that applies to that skill; the repo may use the same license.