AgentSkillsCN

position

位置追踪——记录位置信息、查看时间轴、追踪实体。当用户提及地点、坐标,或希望追踪某物/某人的行踪时,可使用此技能。

SKILL.md
--- frontmatter
name: position
description: Location tracking - log positions, view timelines, track entities. Use when the user mentions locations, coordinates, or wants to track where something/someone is.

position - Location Tracking

Track geographic positions for entities over time with labels and notes.

When to use position

  • User mentions a location or coordinates
  • User wants to track where something is
  • User asks about location history
  • User discusses travel or movement

Available MCP tools

ToolPurpose
mcp__position__add_positionLog a position
mcp__position__get_currentGet latest position
mcp__position__get_timelineGet position history
mcp__position__list_entitiesList tracked entities
mcp__position__remove_entityRemove an entity

Common patterns

Log a position

code
mcp__position__add_position(
  name="harper",
  lat=37.7749,
  lng=-122.4194,
  label="San Francisco Office"
)

Get current location

code
mcp__position__get_current(name="harper")

Get timeline

code
mcp__position__get_timeline(name="harper", since="2026-01-01")

List all tracked entities

code
mcp__position__list_entities()

CLI commands (if MCP unavailable)

bash
position add harper --lat 37.7749 --lng -122.4194 --label "SF Office"
position current harper           # Latest position
position timeline harper          # History
position list                     # All entities
position export --format geojson  # GeoJSON export
position export --format markdown # Markdown table

Data location

~/.local/share/position/position.db (SQLite, respects XDG_DATA_HOME)