원클릭으로
location-skill
Get Android device GPS location - latitude, longitude, accuracy, speed, and provider information.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Get Android device GPS location - latitude, longitude, accuracy, speed, and provider information.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
| 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