From v8gh
Verse8 Tracker 칸반보드 관련 요청을 처리합니다. 이슈 조회, 상태 변경, 보드 요약, 사용자별 이슈 확인 등 GitHub Projects 관련 모든 작업에 사용됩니다.
npx claudepluginhub planetarium/claude-pluginsThis skill is limited to using the following tools:
사용자의 요청을 분석하여 Verse8 Tracker 칸반보드에서 적절한 작업을 수행하세요.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
사용자의 요청을 분석하여 Verse8 Tracker 칸반보드에서 적절한 작업을 수행하세요. 모든 작업은 반드시 planetarium/projects/140 범위 안에서만 수행합니다.
사용자 요청: $ARGUMENTS
작업 전 아래 두 가지를 모두 확인하세요:
gh auth status 로 로그인 여부와 project 스코프 확인gh api graphql -f query='{ organization(login: "planetarium") { projectV2(number: 140) { title } } }'
하나라도 실패하면 /v8gh:login 을 안내하고 작업을 중단하세요.
-status:Done)| Status | Option ID |
|---|---|
| Backlog | f75ad846 |
| Ready | 61e4505c |
| In progress | 47fc9ee4 |
| In review | df73e18b |
| Done | 98236657 |
| Team | Option ID |
|---|---|
| Agent8 | 3d387ab6 |
| Platform | 67d2e6a0 |
| FE | b5efdf0c |
| Content | c1edbe95 |
| Design | 3e364242 |
| Product | d0e81350 |
| Mobile | 224654f6 |
| Priority | Option ID |
|---|---|
| P0 | 79628723 |
| P1 | 0a877460 |
| P2 | da944a9c |
| Product | Option ID |
|---|---|
| Gitlab | 45a31d61 |
| Game Server | e418ad0a |
| NPM Library | 5f15542b |
| Security | 09f3f13f |
| Payment | 77805303 |
| Agent8 | 7454b03f |
| GoodgangLabs | 4ffa8066 |
| V8 Frontend | 6bf8a15e |
| V8 API | 03c087fd |
| MobileClient | fd2108fd |
| Tag | Option ID |
|---|---|
| Released | 0eec9de0 |
| in QA | 1561d8b2 |
| triage needed | 7b45a1ce |
| 필드 | ID | 타입 |
|---|---|---|
| Title | PVTF_lADOAEAFvc4BLwFXzg7O0lI | TITLE |
| Assignees | PVTF_lADOAEAFvc4BLwFXzg7O0lM | ASSIGNEES |
| Labels | PVTF_lADOAEAFvc4BLwFXzg7O0lU | LABELS |
| Estimate | PVTF_lADOAEAFvc4BLwFXzg7O2uU | NUMBER |
| Start date | PVTF_lADOAEAFvc4BLwFXzg7O2uY | DATE |
| Target date | PVTF_lADOAEAFvc4BLwFXzg7O2uc | DATE |
| Release | PVTF_lADOAEAFvc4BLwFXzg7QBh0 | DATE |
gh api graphql -f query='
query($cursor: String) {
organization(login: "planetarium") {
projectV2(number: 140) {
items(first: 100, after: $cursor) {
nodes {
id
content {
... on Issue { title number url state repository { nameWithOwner } }
... on DraftIssue { title body }
}
fieldValues(first: 15) {
nodes {
... on ProjectV2ItemFieldSingleSelectValue {
name
field { ... on ProjectV2FieldCommon { name } }
}
... on ProjectV2ItemFieldUserValue {
users(first: 5) { nodes { login } }
field { ... on ProjectV2FieldCommon { name } }
}
... on ProjectV2ItemFieldDateValue {
date
field { ... on ProjectV2FieldCommon { name } }
}
... on ProjectV2ItemFieldNumberValue {
number
field { ... on ProjectV2FieldCommon { name } }
}
}
}
}
pageInfo { hasNextPage endCursor }
}
}
}
}
'
gh api graphql -f query='
mutation {
updateProjectV2ItemFieldValue(input: {
projectId: "PVT_kwDOAEAFvc4BLwFX"
itemId: "ITEM_ID"
fieldId: "FIELD_ID"
value: { singleSelectOptionId: "OPTION_ID" }
}) { projectV2Item { id } }
}
'