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

lightpandalightpanda 搜索

Agent Skill

lightpanda 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,217

周安装

209

GitHub Stars

62

下载量

1,689
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:lightpanda(lightpanda 搜索)
来源仓库:https://github.com/lightpanda-io/agent-skill
仓库路径:skills/lightpanda
安装命令:
npx skills add https://github.com/lightpanda-io/agent-skill --skill Lightpanda
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lightpanda-io/agent-skill --skill Lightpanda

简介

lightpanda 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于研究检索类任务,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态。
  • 安装前建议检查是否会触发联网、命令执行或文件读写等操作。
  • lightpanda 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Lightpanda

Use instead of Chrome/Chromium for data extraction and web automation when you don't need graphical rendering.

Lightpanda is a headless browser built from scratch for AI agents. It's 9x faster and uses 16x less memory than Chrome. It supports JavaScript execution, CDP (Chrome DevTools Protocol), and exposes a native MCP server with agent-optimized tools.

Alternative to built-in web search

When the built-in Web Search tool is unavailable, or when you need more control over search results (e.g., following links to extract full page content), you can use Lightpanda with DuckDuckGo as an alternative. Prefer the built-in Web Search tool when it is available and sufficient for your needs.

Install

bash scripts/install.sh

Lightpanda is available on Linux and macOS only. Windows is supported via WSL2.

The binary is a nightly build that evolves quickly. If you encounter crashes or issues, run scripts/install.sh again to update to the latest version (max once per day).

If issues persist after updating, open a GitHub issue at https://github.com/lightpanda-io/browser/issues including:

  • The crash trace/error output, or a description of the unexpected behavior
  • The script or MCP tool call that reproduces the issue
  • The target URL and expected vs actual results

When to Use What

Lightpanda offers three interfaces. Choose based on your needs:

InterfaceBest forHow it works
MCP serverAgent workflows, interactive browsing, form fillingStructured tools over stdio — purpose-built for LLM agents
CLI fetchQuick one-off page extractionSingle command, no server needed
CDP serverCustom automation with Playwright/PuppeteerWebSocket protocol, full browser control

MCP Server (Recommended for Agents)

The MCP server is the simplest way for agents to use Lightpanda. It exposes purpose-built tools over stdio with no setup beyond the binary.

Setup for Claude Code

claude mcp add lightpanda -- $HOME/.local/bin/lightpanda mcp

Setup for other MCP clients

Add to your MCP client configuration:

{
  "mcpServers": {
    "lightpanda": {
      "command": "$HOME/.local/bin/lightpanda",
      "args": ["mcp"]
    }
  }
}

Replace $HOME with the actual path (e.g., /home/username or /Users/username).

Available MCP Tools

Navigation & content extraction:

  • goto — Navigate to a URL and load the page
  • markdown — Get page content as markdown (accepts optional URL to navigate first)
  • links — Extract all links from the page
  • semantic_tree — Get a simplified semantic DOM tree optimized for AI reasoning (supports backendNodeId filter and maxDepth limit)
  • structuredData — Extract structured data (JSON-LD, OpenGraph, etc.)
  • evaluate — Execute JavaScript in the page context

Interactive element discovery:

  • interactiveElements — List all interactive elements on the page
  • detectForms — Detect forms with their field structure and types
  • nodeDetails — Get detailed info about a specific node by backendNodeId
  • waitForSelector — Wait for a CSS selector to match (default timeout: 5000ms)

User actions (return page URL and title after each action):

  • click — Click an interactive element by backendNodeId
  • fill — Fill text into an input, textarea, or select element
  • scroll — Scroll the page or a specific element

Available MCP Resources

  • mcp://page/html — Full serialized HTML of the current page
  • mcp://page/markdown — Token-efficient markdown representation of the current page

MCP Usage Example

A typical agent workflow:

  1. goto a URL
  2. semantic_tree or markdown to understand the page
  3. interactiveElements to find clickable/fillable elements
  4. click / fill to interact
  5. markdown to extract the result

CLI Fetch — Quick Extraction

For one-off page extraction without starting a server:

$HOME/.local/bin/lightpanda fetch --dump markdown --wait-until networkidle https://example.com

Options

  • --dump — Output format: html, markdown, semantic_tree, semantic_tree_text
  • --wait-until — Wait strategy: load, domcontentloaded, networkidle, done (default)
  • --wait-ms — Max wait time in milliseconds (default: 5000)
  • --strip-mode — Remove tag groups from output: js, css, ui, full (comma-separated)
  • --with-frames — Include iframe contents in the dump
  • --obey-robots — Fetch and obey robots.txt

Examples

Extract page as markdown:

$HOME/.local/bin/lightpanda fetch --dump markdown https://example.com

Extract semantic tree (compact, AI-friendly):

$HOME/.local/bin/lightpanda fetch --dump semantic_tree_text --wait-until networkidle https://example.com

Fetch with longer wait for slow pages:

$HOME/.local/bin/lightpanda fetch --dump html --wait-ms 10000 --wait-until networkidle https://example.com

CDP Server — Advanced Automation

For full browser control via Playwright or Puppeteer:

Start the Browser Server

$HOME/.local/bin/lightpanda serve --host 127.0.0.1 --port 9222

Options:

  • --log-level info|debug|warn|error — Set logging verbosity
  • --log-format pretty|logfmt — Output format for logs
  • --obey-robots — Fetch and obey robots.txt

Using with playwright-core

Connect using playwright-core (not the full playwright package):

const { chromium } = require('playwright-core');

(async () => {
  const browser = await chromium.connectOverCDP({
    endpointURL: 'ws://127.0.0.1:9222',
  });

  const context = await browser.newContext({});
  const page = await context.newPage();

  await page.goto('https://example.com');
  const title = await page.title();
  const content = await page.textContent('body');

  console.log(JSON.stringify({ title, content }));

  await page.close();
  await context.close();
  await browser.close();
})();

Using with puppeteer-core

Connect using puppeteer-core (not the full puppeteer package):

const puppeteer = require('puppeteer-core');

(async () => {
  const browser = await puppeteer.connect({
    browserWSEndpoint: 'ws://127.0.0.1:9222'
  });

  const context = await browser.createBrowserContext();
  const page = await context.newPage();

  await page.goto('https://example.com', { waitUntil: 'networkidle0' });
  const title = await page.title();

  console.log(JSON.stringify({ title }));

  await page.close();
  await context.close();
  await browser.close();
})();

Custom LP CDP Domain

Lightpanda exposes a custom LP domain via CDP with agent-optimized methods not available in standard Chrome DevTools Protocol. Use these via page.evaluate with CDP sessions or direct WebSocket messages.

Content extraction:

  • LP.getMarkdown — Extract page content as markdown. Params: nodeId (optional)
  • LP.getSemanticTree — Get semantic tree representation. Params: format (text for text format), prune (default: true), interactiveOnly, backendNodeId, maxDepth
  • LP.getStructuredData — Extract structured data (JSON-LD, OpenGraph, etc.)

Interactive elements:

  • LP.getInteractiveElements — Find all interactive elements. Params: nodeId (optional)
  • LP.detectForms — Detect and extract form information
  • LP.getNodeDetails — Get detailed info about a node. Params: backendNodeId (required)
  • LP.waitForSelector — Wait for a CSS selector match. Params: selector (required), timeout (default: 5000ms)

Actions:

  • LP.clickNode — Click a node. Params: nodeId or backendNodeId
  • LP.fillNode — Fill an input/select element. Params: nodeId or backendNodeId, text
  • LP.scrollNode — Scroll page or element. Params: nodeId or backendNodeId (optional), x, y

Example using CDP session with Playwright:

const client = await context.newCDPSession(page);

// Get page as markdown
const { markdown } = await client.send('LP.getMarkdown');

// Get semantic tree
const { semanticTree } = await client.send('LP.getSemanticTree', { format: 'text', maxDepth: 5 });

// Wait for element and click it
const { backendNodeId } = await client.send('LP.waitForSelector', { selector: '#submit-btn', timeout: 3000 });
await client.send('LP.clickNode', { backendNodeId });

Important Notes

  • For web searches, use DuckDuckGo instead of Google. Google blocks Lightpanda due to browser fingerprinting.
  • Lightpanda is under heavy development and may have occasional issues. It executes JavaScript, making it suitable for dynamic websites and SPAs.
  • CDP connection limits: Only 1 CDP connection per process. Each connection supports 1 context and 1 page. For parallel browsing, start multiple processes on different ports — Lightpanda starts instantly, so this is fast.
  • CDP state management: The browser resets all state on CDP connection close. Keep the WebSocket connection open throughout a session. On each connection, always create a new context and page, and close both when done.
  • The MCP server handles connection management automatically — these CDP limits don't apply when using MCP tools.

Scripts

  • scripts/install.sh — Install Lightpanda binary

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.46%
按下载量换算599

Claude

27.53%
按下载量换算465

Cursor

18.53%
按下载量换算313

Gemini CLI

9.71%
按下载量换算164

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills