add-gitmcp — ebpf linux add-gitmcp, community, ebpf linux, ide skills, lsm segurança, gitmcp url, mcp configuração, linux segurança ebpf, adicionar url gitmcp

v1.0.0

Sobre este Skill

Perfeito para Agentes de Segurança do Linux que precisam de integração avançada de ebpf e Módulos de Segurança do Linux (LSM) para proteção real do Linux. O add-gitmcp é uma ferramenta que adiciona URLs GitMCP ao arquivo de configuração do MCP para melhorar a segurança do Linux.

Recursos

Adiciona URLs GitMCP ao arquivo de configuração do MCP
Funciona com repositórios públicos do GitHub
Não requer registro
Melhora a segurança do Linux com ebpf e lsm
Suporta URLs determinísticas

# Core Topics

Cybereason-Public Cybereason-Public
[31]
[1]
Updated: 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

Perfeito para Agentes de Segurança do Linux que precisam de integração avançada de ebpf e Módulos de Segurança do Linux (LSM) para proteção real do Linux. O add-gitmcp é uma ferramenta que adiciona URLs GitMCP ao arquivo de configuração do MCP para melhorar a segurança do Linux.

Por que usar essa habilidade

Habilita os agentes a utilizarem URLs de documentação do GitMCP em configurações de projeto MCP, aproveitando ebpf e LSM para segurança aprimorada e fornecendo URLs determinísticos para integração sem interrupções com serviços como o GitMCP, que transforma qualquer repositório público do GitHub em um servidor de documentação compatível com MCP.

Melhor para

Perfeito para Agentes de Segurança do Linux que precisam de integração avançada de ebpf e Módulos de Segurança do Linux (LSM) para proteção real do Linux.

Casos de Uso Práticos for add-gitmcp

Automatizar a adição de URLs de documentação do GitMCP às configurações de projeto MCP
Gerar URLs determinísticos para servidores de documentação compatíveis com MCP
Aprimorar a segurança do Linux com integração de ebpf e LSM

! Segurança e Limitações

  • Exige a disponibilidade do serviço GitMCP
  • Limitado a repositórios públicos do GitHub
  • Dependente da compatibilidade de ebpf e Módulos de Segurança do Linux (LSM)

Why this page is reference-only

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

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs 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 & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is add-gitmcp?

Perfeito para Agentes de Segurança do Linux que precisam de integração avançada de ebpf e Módulos de Segurança do Linux (LSM) para proteção real do Linux. O add-gitmcp é uma ferramenta que adiciona URLs GitMCP ao arquivo de configuração do MCP para melhorar a segurança do Linux.

How do I install add-gitmcp?

Run the command: npx killer-skills add Cybereason-Public/owLSM/add-gitmcp. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for add-gitmcp?

Key use cases include: Automatizar a adição de URLs de documentação do GitMCP às configurações de projeto MCP, Gerar URLs determinísticos para servidores de documentação compatíveis com MCP, Aprimorar a segurança do Linux com integração de ebpf e LSM.

Which IDEs are compatible with add-gitmcp?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for add-gitmcp?

Exige a disponibilidade do serviço GitMCP. Limitado a repositórios públicos do GitHub. Dependente da compatibilidade de ebpf e Módulos de Segurança do Linux (LSM).

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Cybereason-Public/owLSM/add-gitmcp. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use add-gitmcp immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

add-gitmcp

Install add-gitmcp, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
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

Habilidades Relacionadas

Looking for an alternative to add-gitmcp or another community skill for your workflow? Explore these related open-source skills.

Ver tudo

openclaw-release-maintainer

Logo of openclaw
openclaw

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

widget-generator

Logo of f
f

Gerar plugins de widgets personalizáveis para o sistema de feed do prompts.chat

flags

Logo of vercel
vercel

O Framework React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Desenvolvedor