원클릭으로
track
Smart task routing -- route tasks to the right system based on category. Triggers: /track, add task, new task, track task.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Smart task routing -- route tasks to the right system based on category. Triggers: /track, add task, new task, track task.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | track |
| description | Smart task routing -- route tasks to the right system based on category. Triggers: /track, add task, new task, track task. |
Route incoming tasks to the correct system based on their category. This skill demonstrates the pattern of having multiple task backends and routing to the right one based on task content analysis.
CUSTOMIZE: Define your task categories and destinations.
| Category | Destination | Tool/Method |
|---|---|---|
| Personal / household / content | Trello (or your personal task app) | trello_create_card or API call |
| Server / brain / infrastructure | dashboard.md (vault file) | update_dashboard("add", ...) |
| Work projects | Project management tool (Bitrix, Jira, etc.) | API call + vault backlog |
Analyze the task description for keywords and context:
Personal task manager (e.g., Trello):
Dashboard / vault (server/infra):
Work project tool (e.g., Bitrix/Jira):
Extract from user input:
If user specified destination explicitly -> use it. Otherwise -> classify by keywords and context.
If ambiguous, ask the user:
Where should I put "task description"?
1. Personal tasks (Trello/Todoist/etc.)
2. Dashboard (server/infra)
3. Work project (Jira/Bitrix/etc.)
Personal task manager:
trello_create_card(name="task", list_name="inbox", label_keys="standard")
Dashboard:
update_dashboard("add", "task description", project="brain")
Work project tool:
# Create in external tool via API
project_tool_create_task(title="task", responsible_id="YOUR_USER_ID")
Write-through to vault (for work tasks): After creating a task in an external tool, ALWAYS update the vault backlog:
This ensures your overview/aggregation skills can read from vault without needing to query every external API.
Tell user where the task was created:
Task created in [Trello/Dashboard/Jira]:
"Task title"
[label: standard] [deadline: DD.MM]
If user gives multiple tasks at once:
CUSTOMIZE: Define your time estimate categories.
User can specify estimates inline: