원클릭으로
leetcode
Work on LeetCode problems in the ~/leetcode directory
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Work on LeetCode problems in the ~/leetcode directory
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when the user asks to take on, work on, or pick up a Linear issue - fetches issue details and sets up an isolated git worktree before starting implementation
Start the clawdbot gateway and show status
Open a new tab in iTerm, optionally start Claude with instructions
A simple hello world skill that demonstrates basic skill creation
Navigate to ~/kraken directory, initialize claude, and show local changes
Show and explain all uncommitted changes with a clear diff summary
| name | leetcode |
| description | Work on LeetCode problems in the ~/leetcode directory |
| argument-hint | ["problem-number"] |
When this skill is invoked:
Change to the ~/leetcode directory as the working directory
When the user mentions "opening" a solution or says "open" with a problem number:
~/leetcode/<problem_number>/solution.pyemacs ~/leetcode/<problem_number>/solution.pyIf the user provides a problem number as an argument (e.g., /leetcode 42):
~/leetcode/<problem_number>/solution.py with the class and method signature and pass as the body:
class Solution:
def methodName(self, param: Type) -> ReturnType:
pass
emacs ~/leetcode/<problem_number>/solution.py &IMPORTANT: Never implement the solution body. Only look up the method signature. Just create the stub and open it.
emacs ~/leetcode/123/solution.py