Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计提醒

configure-git-webserver配置 git 网络服务器

Agent Skill

configure-git-webserver 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

912

周安装

38

GitHub Stars

93

下载量

304
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill configure-git-webserver

简介

configure-git-webserver 提供基于 Git 的自动部署方案,通过 post-receive hook 触发网页更新。

  • 适用于静态站点或轻量级服务的持续交付场景。
  • 需配置裸仓库与 web 内容目录映射关系。
  • 包含钩子脚本编写,需确保执行环境与权限正确。
  • 建议配合 Nginx 反向代理增强安全性。

SKILL.md

Configure Git Webserver

Overview

This skill provides guidance for setting up a Git-based web deployment system where pushing to a Git repository automatically deploys content to a web server. The typical workflow involves creating a bare Git repository, configuring a post-receive hook to deploy content, and running a web server to serve the deployed files.

Approach

Component Identification

Before implementation, identify all required components:

  1. Bare Git repository - The central repository that receives pushes
  2. Web content directory - Where deployed files are served from
  3. Post-receive hook - Automates deployment on push
  4. Web server - Serves the deployed content
  5. User access - Permissions for users to push to the repository

Implementation Sequence

Execute tasks in dependency order:

  1. Create the bare Git repository first (other components depend on its location)
  2. Create the web content directory
  3. Create and configure the post-receive hook (depends on both repository and web directory)
  4. Start the web server (depends on web directory existing)
  5. Configure user access as needed

Post-Receive Hook Design

The post-receive hook should:

  • Handle multiple branch names (both master and main for compatibility)
  • Use git --work-tree to checkout to the web directory
  • Be marked executable (chmod +x)
  • Include the proper shebang (#!/bin/bash)

Example hook structure:

#!/bin/bash
while read oldrev newrev ref
do
    branch=$(echo $ref | cut -d/ -f3)
    if [ "$branch" = "main" ] || [ "$branch" = "master" ]; then
        git --work-tree=/path/to/web/dir --git-dir=/path/to/repo checkout -f $branch
    fi
done

Web Server Options

Consider available options based on environment:

  • python3 -m http.server - Simple, usually available, single-threaded
  • nginx - Production-ready, requires installation
  • node http-server - Requires Node.js
  • busybox httpd - Lightweight, often available in minimal environments

Verification Strategies

Component-Level Verification

Verify each component independently before testing the full workflow:

  1. Repository verification: Check that the bare repository exists and has correct structure ls -la /path/to/repo # Should show HEAD, objects/, refs/, etc.
  2. Hook verification: Confirm hook exists and is executable ls -la /path/to/repo/hooks/post-receive
  3. Web server verification: Confirm server is running and listening ss -tlnp | grep:PORT # or netstat -tlnp, or ps aux | grep server

End-to-End Testing

Test the complete workflow:

  1. Clone the repository (use local path for initial testing)
  2. Create a test file and commit
  3. Push to the repository
  4. Verify the file appears in the web directory
  5. Verify the file is accessible via HTTP

Pre-Check Available Commands

Before using system commands, verify availability to reduce trial-and-error:

command -v netstat || command -v ss  # Network status
command -v systemctl || command -v service  # Service management

Common Pitfalls

Persistence Issues

Problem: Background processes (like python3 -m http.server &) do not survive system restarts.

Mitigation: For production use, create a systemd service or use a process manager. For testing purposes, background processes are acceptable but document the limitation.

Permission Issues

Problem: Users cannot push to the repository or the hook cannot write to the web directory.

Mitigation:

  • Verify repository ownership and permissions
  • Ensure the user running the hook has write access to the web directory
  • Check that the hook itself is executable

Branch Name Handling

Problem: Hook only handles master but user pushes to main (or vice versa).

Mitigation: Handle both common default branch names in the hook logic.

Testing Methodology

Problem: Testing with local paths (/git/server) may pass but SSH-based access (user@server:/git/server) may fail.

Mitigation: If SSH access is required, verify SSH configuration and user access separately from the Git/web functionality.

Error Handling in Hooks

Problem: Hook failures are silent, making debugging difficult.

Mitigation: Add error output and logging to hooks:

exec 2>&1  # Redirect stderr to stdout
set -e     # Exit on error

Single-Threaded Web Servers

Problem: Simple web servers like python3 -m http.server are single-threaded and unsuitable for concurrent access.

Mitigation: Document this limitation. For production, use a proper web server like nginx.

Task Breakdown Guidance

Avoid excessive granularity in task tracking. Group related operations:

  • Good: "Set up bare Git repository with post-receive hook"
  • Avoid: Separate tasks for "create directory", "run git init", "create hook file", "make hook executable"

Focus task tracking on logical milestones rather than individual commands.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.19%
按下载量换算86

Gemini CLI

26.35%
按下载量换算80

Codex

18.2%
按下载量换算55

Antigravity

13.1%
按下载量换算40

OpenCode

8.61%
按下载量换算26

windsurf

3.82%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills