Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/CodySwannGT/lisa --skill lisa-linear-verify명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | lisa-linear-verify |
| description | Verifies a Linear work item… |
| allowed-tools | ["Bash","Skill"] |
Fetch the live Linear work item and run it through lisa-linear-validate-issue. This catches any field that was dropped or reformatted between the pre-write spec and what Linear stored.
This skill is the destination of the lisa-tracker-verify shim when tracker = "linear". Read-only — never writes.
Reads linear.workspace, linear.teamKey from .lisa.config.json (with .local override).
$ARGUMENTS is a Linear identifier:
ENG-123)https://linear.app/<workspace>/project/<slug>-<id>)If $ARGUMENTS is not parseable, stop and report.
linear.workspace, linear.teamKey from .lisa.config.json (with .local override).lisa-linear-access operation: list-teams({query: <teamKey>}).<TEAM>-<n> → Issue/project/<slug>-<id> → ProjectCall lisa-linear-access operation: get-issue (for Issues) or lisa-linear-access operation: get-project (for Projects). Capture every field, label, relation, comment, milestone, and project membership.
Pass the fetched item to lisa-linear-validate-issue (in identifier mode — let it derive the spec from the live state). The validator runs both Specification AND Feasibility gates against what Linear actually stored.
Return the validator's report verbatim — same structured format as lisa-linear-validate-issue. Callers (especially lisa-linear-write-issue Phase 7) parse the verdict to decide whether to declare success.
If the verdict is FAIL, the caller should fix the item and re-run verify. Never declare success on a FAIL verdict.
get_issue / get_project returns an access error, surface it and exit — don't pretend the item is fine.