소스 정보
- 저장소
- ChenKuanSun/teamclaw
- 최근 소스 활동
- 2026년 4월 16일 22:25
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ChenKuanSun/teamclaw --skill linear명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | linear |
| description | Create, search, and manage Linear issues, projects, and cycles via the GraphQL API |
| homepage | https://developers.linear.app/docs/graphql/working-with-the-graphql-api |
| metadata | {"openclaw":{"emoji":"🟣","requires":{"env":"[Truncated]"},"primaryEnv":"LINEAR_TOKEN"}} |
Create, search, and manage Linear issues, projects, and cycles using the Linear GraphQL API.
All requests use a Bearer token. The single API endpoint is https://api.linear.app/graphql.
Common headers for every request:
-H "Authorization: $LINEAR_TOKEN" \
-H "Content-Type: application/json"
curl -s -X POST https://api.linear.app/graphql \
-H "Authorization: $LINEAR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "query { viewer { assignedIssues(first: 20, orderBy: updatedAt) { nodes { id identifier title state { name } priority priorityLabel assignee { name } project { name } cycle { name number } updatedAt } } } }"
}'
Key response path: data.viewer.assignedIssues.nodes[]. Each issue has identifier (e.g. "ENG-123"), title, state.name, priorityLabel.
curl -s -X POST https://api.linear.app/graphql \
-H "Authorization: $LINEAR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "query($filter: IssueFilter) { issues(filter: $filter, first: 20) { nodes { id identifier title state { name } priority priorityLabel assignee { name } labels { nodes { name } } } } }",
"variables": {
"filter": {
"state": { "name": { "in": ["In Progress", "Todo"] } },
"team": { "key": { "eq": "ENG" } }
}
}
}'
Useful filter fields: state.name, assignee.email, priority (1=Urgent, 2=High, 3=Medium, 4=Low, 0=None), label.name, project.name, cycle.number.
curl -s -X POST https://api.linear.app/graphql \
-H "Authorization: $LINEAR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "query($id: String!) { issue(id: $id) { id identifier title description state { id name } priority priorityLabel assignee { id name email } team { id key name } project { id name } cycle { id name number } labels { nodes { id name } } comments { nodes { body user { name } createdAt } } createdAt updatedAt } }",
"variables": { "id": "ENG-123" }
}'
Note: The id variable accepts both the UUID and the human-readable identifier (e.g. "ENG-123").
curl -s -X POST https://api.linear.app/graphql \
-H "Authorization: $LINEAR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "mutation($input: IssueCreateInput!) { issueCreate(input: $input) { success issue { id identifier title url } } }",
"variables": {
"input": {
"teamId": "TEAM_UUID",
"title": "Implement SSO login flow",
"description": "Add SAML-based SSO integration for enterprise customers.\n\n## Acceptance Criteria\n- Support SAML 2.0\n- Auto-provision users on first login",
"priority": 2,
"stateId": "STATE_UUID",
"labelIds": ["LABEL_UUID"]
}
}
}'
Response: data.issueCreate.issue.identifier, data.issueCreate.issue.url.
Priority values: 0=None, 1=Urgent, 2=High, 3=Medium, 4=Low. Description supports Markdown.
curl -s -X POST https://api.linear.app/graphql \
-H "Authorization: $LINEAR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "mutation($id: String!, $input: IssueUpdateInput!) { issueUpdate(id: $id, input: $input) { success issue { id identifier state { name } } } }",
"variables": {
"id": "ISSUE_UUID_OR_IDENTIFIER",
"input": { "stateId": "STATE_UUID" }
}
}'
To find valid state IDs, query workflow states for a team (see below).
curl -s -X POST https://api.linear.app/graphql \
-H "Authorization: $LINEAR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "mutation($id: String!, $input: IssueUpdateInput!) { issueUpdate(id: $id, input: $input) { success issue { id identifier assignee { name } } } }",
"variables": {
"id": "ENG-123",
"input": { "assigneeId": "USER_UUID" }
}
}'
curl -s -X POST https://api.linear.app/graphql \
-H "Authorization: $LINEAR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "mutation($input: CommentCreateInput!) { commentCreate(input: $input) { success comment { id body } } }",
"variables": {
"input": {
"issueId": "ISSUE_UUID",
"body": "Deployed to staging. Smoke tests passing. Ready for review."
}
}
}'
Comment body supports Markdown.
curl -s -X POST https://api.linear.app/graphql \
-H "Authorization: $LINEAR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "query { teams { nodes { id key name states { nodes { id name type } } } } }"
}'
Key response: data.teams.nodes[] with key (e.g. "ENG"), name, and states.nodes[] containing workflow states with type (backlog, unstarted, started, completed, cancelled).
curl -s -X POST https://api.linear.app/graphql \
-H "Authorization: $LINEAR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "query { projects(first: 20, orderBy: updatedAt) { nodes { id name state progress teams { nodes { key } } targetDate } } }"
}'
curl -s -X POST https://api.linear.app/graphql \
-H "Authorization: $LINEAR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "query($teamId: String!) { team(id: $teamId) { activeCycle { id name number startsAt endsAt progress { completedScopeCount totalScopeCount } issues { nodes { identifier title state { name } assignee { name } } } } } }",
"variables": { "teamId": "TEAM_UUID" }
}'
| Type | Description | Key Fields |
|---|---|---|
| Issue | Work item | identifier, title, state, priority, assignee |
| Team | Group of members | key, name, states (workflow states) |
| Project | Collection of issues | name, state, progress, targetDate |
| Cycle | Time-boxed sprint | number, startsAt, endsAt, progress |
| WorkflowState | Issue status | name, type (backlog/unstarted/started/completed/cancelled) |
| Label | Tag for issues | name, color |
| User | Team member | name, email, displayName |
POST https://api.linear.app/graphql.first/after cursor-based pagination. Check pageInfo.hasNextPage and pageInfo.endCursor.a: issueUpdate(...) { ... } b: issueUpdate(...) { ... }.IssueFilter input type supports nested boolean logic with and, or fields for complex queries.