用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zeenie-ai/OpenCompany --skill location-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to generate well-branded interfaces and assets for OpenCompany (opencompany.sh), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Read, search, and write raw local data (files, CSV, JSON, PDF, HTML, XLSX, images) across the workspace and operator-mounted folders. Use when the user asks about local files, documents, spreadsheets, logs, or data on disk.
Understand images (describe content, answer questions about them, extract text/OCR) via a vision model. Use when the user asks what an image, screenshot, chart, scan, or photo contains.
基于 SOC 职业分类
正在显示 SKILL.md
| name | location-skill |
| description | Get Android device GPS location - latitude, longitude, accuracy, speed, and provider information. |
| allowed-tools | location |
| metadata | {"author":"opencompany","version":"1.0","category":"android"} |
Get GPS location from Android device.
This skill provides instructions for the Location tool node. Connect the Location node to Zeenie's input-tools handle to enable location tracking.
Get current GPS location from the Android device.
| Field | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | "status" - Get current location |
| Action | Description |
|---|---|
status | Get current GPS coordinates and location info |
Get current location:
{
"action": "status"
}
{
"success": true,
"service": "location",
"action": "status",
"data": {
"latitude": 37.7749,
"longitude": -122.4194,
"altitude": 10.5,
"accuracy": 15.0,
"speed": 0.0,
"bearing": 180.0,
"provider": "gps",
"timestamp": "2025-01-30T12:00:00Z"
}
}
| Field | Type | Description |
|---|---|---|
| latitude | float | Latitude in degrees |
| longitude | float | Longitude in degrees |
| altitude | float | Altitude in meters (if available) |
| accuracy | float | Horizontal accuracy in meters |
| speed | float | Speed in m/s (if moving) |
| bearing | float | Direction of travel in degrees |
| provider | string | "gps", "network", "fused" |
| timestamp | string | When location was obtained |
{
"error": "Location not available - GPS may be disabled",
"service": "location",
"action": "status"
}
| Accuracy (m) | Quality | Typical Source |
|---|---|---|
| < 5 | Excellent | GPS with clear sky |
| 5-15 | Good | GPS |
| 15-50 | Fair | Network/WiFi |
| 50-100 | Poor | Cell tower |
| > 100 | Very Poor | Coarse location |
| Provider | Description |
|---|---|
| gps | GPS satellites (most accurate outdoors) |
| network | WiFi/Cell towers |
| fused | Combined sources (Android Fused Location) |
| Use Case | Description |
|---|---|
| Location tracking | Get device position |
| Geofencing | Check if in specific area |
| Speed monitoring | Track movement speed |
| Navigation | Get coordinates for routing |
whatsapp_send with message_type="location"1. location.status -> get lat/lng
2. whatsapp_send with:
- message_type: "location"
- latitude: <from location>
- longitude: <from location>
1. location.status -> get lat/lng
2. nearby_places with:
- lat: <from location>
- lng: <from location>
- type: "restaurant"
input-tools handle