소스 정보
- 저장소
- JPeetz/agent-skills
- 최근 소스 활동
- 2026년 8월 31일 06:31
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/JPeetz/agent-skills --skill linear-project-management명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | linear-project-management |
| description | Use when driving Linear projects and issues from an agent. |
| version | 1.0.0 |
| license | MIT |
| author | Skill Foundry |
| platforms | ["linux","macos","windows"] |
| metadata | {"tags":["linear","project-management","issue-tracking","graphql","mcp","ticketing"],"complexity_priority":"intermediate","managed_workflows":["creating_issue","updating_project","discovering_before_create","bulk_sync","label_taxonomy"]} |
Drive Linear (linear.app) from an agent: create and update issues, projects, and teams; route work with a label taxonomy; and keep workflows aligned with code changes. It is designed for agents using the official Linear MCP server for simple operations and the Linear GraphQL API for anything more advanced.
Two ground rules save most of the pain: always discover before you create
(Linear accumulates duplicates fast) and know the difference between
description and content on a project. This skill encodes both.
Use this skill when you want to:
Don't use for: non-Linear ticketing, or when the data model difference
(description vs content) does not matter — that is exactly when you should
use it, but if you are only reading one status value, a quick GraphQL query is
enough.
lin_api_... ) exposed as the environment
variable LINEAR_ACCESS_TOKEN. Generate at Linear → Settings → Security &
access → Personal API keys. Never hardcode it in files or commits.{"mcpServers": {"linear": {"command": "npx", "args": ["mcp-remote", "https://mcp.linear.app/sse"], "env": {"LINEAR_API_KEY": "{token}"}}}}
Prefer mcp.linear.app; avoid deprecated community servers.@linear/sdk/scripts path (optional).Simple operation via MCP:
Create a high priority bug titled "Fix auth timeout" in the ENG team.
Discovery before create (mandatory):
Search Linear for any existing project matching "checkout-redesign" before creating one.
GraphQL for advanced/authoritative access — run the query through your agent's
GraphQL tool with the Linear endpoint (https://api.linear.app/graphql) and
Authorization: {LINEAR_ACCESS_TOKEN} header.
| Operation | Approach |
|---|---|
| Create/update issue | MCP, or GraphQL issueCreate/issueUpdate |
| Create project | GraphQL projectCreate (set both description + content) |
| Find duplicates first | GraphQL issues/projects search by title/keyword |
| List statuses | GraphQL projectStatuses { nodes { id name } } |
| Milestone | projectMilestoneCreate |
| Resource link | entityExternalLinkCreate |
| Bulk state change | issueUpdate loop, or @linear/sdk script |
description (≤255 chars, shows in
list views) and content (unlimited, shows in the main detail panel). If you
set only one, half the interface is blank. Stop and fill both.
Completion criterion: both fields populated for projects/initiatives.feature, bug,
refactor, chore, spike); 1-2 Domain tags (e.g. security, backend,
frontend, testing, infrastructure); 0-2 Scope tags (blocked,
breaking-change, tech-debt, needs-split, good-first-issue).
Completion criterion: the issue carries one Type and at most 2+1 domain/scope.projectStatuses first, never hardcode an ID.
Completion criterion: status IDs were fetched, not assumed.issueUpdate to Done and update the
project, then verify a sample. Completion criterion: at least 2 issues
verified as Done after the run.description vs content. Set both; one without the other renders blank.LINEAR_ACCESS_TOKEN, never in the skill,
an issue body, or a repo.description AND content.projectStatuses, not a constant.