add-gitmcp — ebpf开发 add-gitmcp, community, ebpf开发, ide skills, Linux安全配置, LSM防护设置, GitMCP URL添加, MCP配置管理, 安全开发实践, Claude Code, Cursor

v1.0.0

关于此技能

非常适合需要高级 ebpf 和 Linux Security Modules (LSM) 集成的 Linux 安全代理,提供真正的 Linux 保护。 add-gitmcp是将GitMCP URL添加到项目的MCP配置中的技能

功能特性

支持ebpf
支持Linux安全
支持LSM防护
GitMCP URL添加
MCP配置支持
安全和高效的开发

# 核心主题

Cybereason-Public Cybereason-Public
[31]
[1]
更新于: 3/10/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
59
Canonical Locale
en
Detected Body Locale
en

非常适合需要高级 ebpf 和 Linux Security Modules (LSM) 集成的 Linux 安全代理,提供真正的 Linux 保护。 add-gitmcp是将GitMCP URL添加到项目的MCP配置中的技能

核心价值

赋予代理利用 GitMCP 文档 URL 在项目 MCP 配置中,利用 ebpf 和 LSM 提高安全性,并为与 GitMCP 等服务的无缝集成提供确定性 URL,GitMCP 可以将任何公共 GitHub 仓库转换为 MCP 兼容的文档服务器。

适用 Agent 类型

非常适合需要高级 ebpf 和 Linux Security Modules (LSM) 集成的 Linux 安全代理,提供真正的 Linux 保护。

赋予的主要能力 · add-gitmcp

自动将 GitMCP 文档 URL 添加到项目 MCP 配置中
为 MCP 兼容的文档服务器生成确定性 URL
利用 ebpf 和 LSM 集成增强 Linux 安全性

! 使用限制与门槛

  • 需要 GitMCP 服务可用
  • 仅限于公共 GitHub 仓库
  • 依赖于 ebpf 和 Linux Security Modules (LSM) 兼容性

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

add-gitmcp 是什么?

非常适合需要高级 ebpf 和 Linux Security Modules (LSM) 集成的 Linux 安全代理,提供真正的 Linux 保护。 add-gitmcp是将GitMCP URL添加到项目的MCP配置中的技能

如何安装 add-gitmcp?

运行命令:npx killer-skills add Cybereason-Public/owLSM/add-gitmcp。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

add-gitmcp 适用于哪些场景?

典型场景包括:自动将 GitMCP 文档 URL 添加到项目 MCP 配置中、为 MCP 兼容的文档服务器生成确定性 URL、利用 ebpf 和 LSM 集成增强 Linux 安全性。

add-gitmcp 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

add-gitmcp 有哪些限制?

需要 GitMCP 服务可用;仅限于公共 GitHub 仓库;依赖于 ebpf 和 Linux Security Modules (LSM) 兼容性。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add Cybereason-Public/owLSM/add-gitmcp。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    add-gitmcp 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

add-gitmcp

安装 add-gitmcp,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Add GitMCP

You are a helper that adds GitMCP documentation URLs to the project's MCP configuration.

What is GitMCP?

GitMCP is a service that turns any public GitHub repository into an MCP-compatible documentation server. It works on-the-fly — no registration needed. URLs are deterministic.

URL Format:

https://gitmcp.io/{owner}/{repo}

Input Parameters

ParameterRequiredDescription
repoYesGitHub repo URL, owner/repo format, or just repo name

Accepted input formats:

  • Full URL: https://github.com/owner/repo
  • Full URL with .git: https://github.com/owner/repo.git
  • SSH URL: git@github.com:owner/repo.git
  • Short format: owner/repo
  • Just repo name: repo (will search or ask for owner)

Example invocations:

Workflow (Fast Path)

IMPORTANT: Do NOT make network calls to validate repos. GitMCP URLs are deterministic and work for any public repo. Skip validation to avoid timeouts.

Step 1: Parse Repository Input

Extract owner and repo name from the input. This is string parsing only — no network calls.

If user provides owner/repo: Use directly. If user provides just repo:

  • Check the Quick Reference table below for known repos
  • If not found, ask user for the owner

Step 2: Construct GitMCP URL

GITMCP_URL = "https://gitmcp.io/{owner}/{repo}"

Step 3: Add to Project MCP Configuration

Always use project-level config: .cursor/mcp.json

Never use user-level config (~/.cursor/mcp.json)

Read the existing .cursor/mcp.json (if exists), add the new entry:

json
1{ 2 "mcpServers": { 3 "{repo}-docs": { 4 "url": "https://gitmcp.io/{owner}/{repo}" 5 } 6 } 7}

If file exists: Merge the new server into existing mcpServers If file doesn't exist: Create it with proper structure

Step 4: Report Result

✅ GitMCP Added
Repository: {owner}/{repo}
GitMCP URL: https://gitmcp.io/{owner}/{repo}
Config: .cursor/mcp.json
Server name: {repo}-docs

Restart Cursor to load the new MCP server.

Server Naming Convention

  • Pattern: {repo}-docs
  • Examples: vulnhuntr-docs, libbpf-docs, sigma-docs
  • If name exists, use {owner}-{repo}-docs

Quick Reference: Known Repos

Use this table to quickly resolve repo names without network lookups:

Repo NameOwnerFull Path
vulnhuntrprotectaiprotectai/vulnhuntr
sigmaSigmaHQSigmaHQ/sigma
pySigmaSigmaHQSigmaHQ/pySigma
libbpflibbpflibbpf/libbpf
bcciovisoriovisor/bcc
bpftoollibbpflibbpf/bpftool
ciliumciliumcilium/cilium
falcofalcosecurityfalcosecurity/falco
ebpfciliumcilium/ebpf
traceeaquasecurityaquasecurity/tracee

Error Handling

ScenarioAction
Cannot parse inputAsk user for owner/repo format
Unknown repo nameAsk user for the owner
Config file malformedReport JSON error, don't modify
Server name existsUse {owner}-{repo}-docs instead

Notes

  1. No validation needed — GitMCP URLs work for any public repo without verification
  2. Project-level only — Always use .cursor/mcp.json, never user-level
  3. Fast execution — No network calls during skill execution
  4. Restart required — User must restart Cursor after adding

相关技能

寻找 add-gitmcp 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具