Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

interactive-leetcode互动式 leetcode

Agent Skill

interactive-leetcode 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

40,343

周安装

1,648

GitHub Stars

公开资料未说明

下载量

13,052
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:interactive-leetcode(互动式 leetcode)
来源仓库:https://github.com/sperekrestova/interactive-leetcode
安装命令:
openclaw skills install interactive-leetcode
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install interactive-leetcode

简介

当用户想要练习 LeetCode 问题、提交解决方案或设置 LeetCode 集成时使用。涵盖MCP服务器安装、学习指导练习流程、解决方案提交和身份验证。

SKILL.md

name
interactive-leetcode-mcp
description
Use when the user wants to practice LeetCode problems, submit solutions, or set up LeetCode integration. Covers MCP server installation, learning-guided practice flow, solution submission, and authentication.
homepage
https://github.com/SPerekrestova/interactive-leetcode-mcp
disable-model-invocation
true
metadata
clawdbot
requires
bins
[npx]
config
[~/.leetcode-mcp/credentials.json]
credentials
stores
~/.leetcode-mcp/credentials.json
contents
csrftoken, LEETCODE_SESSION, createdAt timestamp
permissions
0600

Interactive LeetCode MCP

MCP server for LeetCode practice with learning-guided hints, solution submission, and AI-driven authentication.

Prerequisite: Ensure MCP Server Is Connected

Before anything else, check whether the get_started tool is available. If it is, the server is connected — skip to the next section.

If get_started is NOT available, the MCP server needs to be installed. Ask the user for confirmation before proceeding — explain that this will download and run an npm package.

The npm package is @sperekrestova/interactive-leetcode-mcp (source: GitHub). It runs over stdio transport. Requires Node.js >= 20.

After the user confirms, add to the client's MCP configuration (the exact file varies by client):

{
  "mcpServers": {
    "leetcode": {
      "command": "npx",
      "args": ["-y", "@sperekrestova/interactive-leetcode-mcp@3.1.1"]
    }
  }
}

For Claude Code specifically, you can also run:

claude mcp add --transport stdio leetcode -- npx -y @sperekrestova/interactive-leetcode-mcp@3.1.1

Pin a specific version (shown above) rather than using @latest to avoid executing untested code. Users can check for newer versions at the npm page or GitHub releases and update the pinned version after reviewing the changelog.

After adding the server, tell the user to restart their session so the MCP tools become available. Do not proceed with the session flow until get_started is accessible.

First Action: Always Call get_started

At the START of every LeetCode session, call the get_started tool. It returns the full usage guide: prompt invocation rules, session flow, learning mode rules, auth flow, and language map.

Do not skip this — it is a single fast call, not redundant with tool descriptions. The server has MCP prompts that must be explicitly invoked — they are NOT auto-active. The get_started response tells you exactly when and how.

Session Flow (Critical)

1. Call get_started              <-- FIRST, every session
2. Invoke leetcode_learning_mode <-- BEFORE any problem discussion
3. User picks a problem
4. Invoke leetcode_problem_workflow(problemSlug, difficulty)
5. Invoke leetcode_workspace_setup(language, problemSlug, codeTemplate)
6. Guide user with progressive hints (4 levels)
7. submit_solution when ready

Steps 2, 4, and 5 are MCP prompt invocations. Invoke them via the Skill tool or equivalent prompt mechanism. All three must happen BEFORE the user starts coding.

Step 2 is non-negotiable. If you skip leetcode_learning_mode, you will bypass the progressive hint system and may show solutions prematurely. Invoke it before searching for or discussing any problem.

Prompt Invocation Rules

PromptWhenParams
leetcode_learning_modeSTART of session, before any problemnone
leetcode_problem_workflowAfter user selects a problemproblemSlug, difficulty
leetcode_workspace_setupBefore user starts codinglanguage, problemSlug, codeTemplate
leetcode_authentication_guideOn auth need, 401 errors, expired credsnone

Learning Mode Rules

  • Never show a full solution without working through hint levels 1 → 2 → 3
  • Level 1: Guiding questions ("What pattern do you see?")
  • Level 2: General approaches ("Consider using a hash map...")
  • Level 3: Specific hints ("Iterate once, tracking seen values...")
  • Level 4: Pseudocode or partial implementation
  • Only show complete solutions when explicitly requested AFTER earlier hints
  • get_problem_solution returns full community solutions — Level 4 or explicit request only

Tool Quick Reference

ToolPurposeAuth?
get_daily_challengeToday's challengeNo
get_problemProblem by slugNo
search_problemsFind by tags/difficulty/keywordsNo
list_problem_solutionsSolution metadata (topicIds)No
get_problem_solutionFull solution — Level 4 onlyNo
submit_solutionSubmit codeNo*
get_user_profileAny user's statsNo
get_recent_submissionsRecent submissionsNo
get_recent_ac_submissionsAccepted submissionsNo
get_user_contest_rankingContest rankingNo
start_leetcode_authStart auth flowNo
save_leetcode_credentialsValidate + save credsNo
check_auth_statusCheck credential stateNo
get_user_statusCurrent user infoYes
get_problem_submission_reportSubmission detailYes
get_problem_progressProgress with filtersYes
get_all_submissionsAll submissionsYes

*submit_solution requires saved credentials to succeed.

Auth Flow

  1. Before auth-sensitive actions → call check_auth_status
  2. If not authenticated or expired → ask the user if they want to authenticate. Explain that this will store LeetCode session cookies locally at ~/.leetcode-mcp/credentials.json (owner-read/write only). Do not proceed without consent.
  3. After consent → invoke leetcode_authentication_guide prompt
  4. Call start_leetcode_auth → the prompt will guide the user through providing credentials → call save_leetcode_credentials with the values the user provides
  5. On success → retry original action
  6. On 401 from any tool → repeat from step 1

Always delegate auth guidance to the leetcode_authentication_guide prompt. Do not improvise your own auth instructions — the prompt handles browser-specific guidance, error recovery, and troubleshooting.

Credential storage: The MCP server stores credentials locally at ~/.leetcode-mcp/credentials.json with file permissions 0o600 (owner-read/write only). Only csrftoken, LEETCODE_SESSION, and a createdAt timestamp are stored. Credentials are never transmitted to any third party — they are used exclusively for direct LeetCode API calls. Typical credential lifetime is 7-14 days.

Submission Language Map

User saysPass to submit_solution
Python / Python 3python3
Python 2python
Javajava
C++cpp
JavaScriptjavascript
TypeScripttypescript

Default: "Python" without version → python3.

Resources (Read-Only Lookups)

Resource URIWhat it provides
categories://problems/allAll problem categories
tags://problems/allAll 60+ topic tags
langs://problems/allAll supported submission languages
problem://{titleSlug}Problem detail
solution://{topicId}Solution detail (same learning-mode rules apply)

Common Mistakes

  • Jumping to problem search before invoking leetcode_learning_mode
  • Showing full solutions without progressing through hint levels 1 → 2 → 3
  • Not invoking leetcode_workspace_setup — code should live in a file, not only in chat
  • Guiding auth manually instead of invoking leetcode_authentication_guide
  • Passing "Python" to submit_solution instead of "python3"
  • Not calling check_auth_status before auth-sensitive operations
  • Skipping get_started and assuming tool descriptions are sufficient

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.01%
按下载量换算10,704

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills