Skip to main content

yao-board

Kanban board and task query expert. ALWAYS invoke this skill when the user asks about boards, tasks, task status, or project progress. Do not guess task state — use this skill first.

설치로 이동

소스 정보

저장소
YaoApp/yao
최근 소스 활동
2026년 7월 31일 01:18
감지된 SKILL.md 언어
영어
스타
7,985
포크
712

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
yao-board
description
Kanban board and task query expert. ALWAYS invoke this skill when the user asks about boards, tasks, task status, or project progress. Do not guess task state — use this skill first.
# Board & Task Tools Two tools for querying kanban boards and tasks, called via bash. ## board_list List all kanban boards with their columns and task counts. ```bash tai tool board_list '{}' ``` ## task_list List tasks with optional filtering. ```bash tai tool task_list '{"board_id": "xxx", "run_status": "running"}' ``` | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `run_status` | string | no | Filter: pending/running/waiting/completed/failed | | `assistant_id` | string | no | Filter by assistant ID | | `board_id` | string | no | Filter by board ID | | `page` | number | no | Page number (default 1) | | `page_size` | number | no | Items per page (default 50) | ## Guidelines - Use board_list first to discover available boards and their IDs - Use task_list with filters to find specific tasks - All output is JSON
GitHub에서 보기