소스 정보
- 저장소
- rebornix/lean
- 최근 소스 활동
- 2026년 5월 24일 03:18
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/rebornix/lean --skill lean-linear명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | lean-linear |
| description | Use the lean CLI to read, create, and update Linear issues from Codex. |
Use lean as the default interface for Linear work in this repository. Do not call the Linear API directly unless the user explicitly asks for a raw API investigation or lean api is not enough.
This plugin does not bundle a lean binary. Before using Linear workflows, find or bootstrap the CLI:
command -v lean
lean is not installed but the current workspace is the rebornix/lean checkout, build the local CLI and use node dist/index.js as the command:npm install
npm run build
node dist/index.js usage
lean CLI is not available in the current environment. Ask for a checkout path or installation source instead of guessing an npm package or cloning without direction.When examples below use lean, substitute node dist/index.js in a local checkout if there is no global lean command.
Run commands from the repository root after dependencies are installed and the CLI is built:
npm install
npm run build
Authentication is provided by LINEAR_API_KEY or by lean auth login --api-key <key>. Never print or persist secrets outside the existing lean auth path.
Prefer the token-budgeted usage commands before falling back to full help:
lean usage
lean issue usage
lean team usage
lean auth usage
lean --help
When stdout is not a TTY, lean emits JSON success payloads by default. Errors in agent mode are JSON on stderr with stable error, message, and exit_code fields. Do not assume a command succeeded because it printed human-readable text.
Use these output controls intentionally:
lean issue list --json
lean issue list --format text
lean auth status --json
Use --format text only when the human-shaped output is the requested artifact. For automation, parsing, or follow-up decisions, use the JSON default or --json.
List assigned work:
lean issue list --assignee @me --limit 20
List projects before creating project-scoped issues:
lean team view ENG --states --projects --json
lean project list --team ENG
Search for duplicates before creating a new issue:
lean issue search "sync failure" --team ENG --assignee anyone --json
Inspect an issue:
lean issue view ENG-1
lean issue children ENG-1 --json
lean issue tree ENG-1 --json
Create an issue with explicit required fields:
lean issue create --team ENG --project Research --priority High --due-date 2026-05-29 --title "Fix issue sync failure" --description-file /tmp/issue-body.md
Update an issue:
lean issue edit ENG-1 --state "In Progress" --parent ENG-2 --sub-issue-sort-order 1000
lean issue comment ENG-1 --body-file /tmp/comment.md
lean issue close ENG-1
Bulk create or edit from JSON:
lean issue bulk-create --file /tmp/issues.json --json
lean issue bulk-edit --file /tmp/updates.json --json
Use the GraphQL escape hatch when the CLI does not expose a needed operation:
lean api --query '{ viewer { id name email } }'
ENG-1 or UUIDs over fuzzy titles once known.auth_required as setup state and explain the needed auth command.--description-file or --body-file.lean project list --team <key> and pass --project <id-or-name> to lean issue create.lean team view <key> --states --projects --json for state/project discovery and lean issue search before creating possible duplicates.--parent, --due-date, --sub-issue-sort-order, bulk-create, and bulk-edit commands before dropping to raw GraphQL.lean command lacks the needed operation, use lean api before reaching for another Linear client.