name: git-deploy description: Simple deployment skill for local git operations. Use when you need to add, commit, and push changes to the Git repository. Designed for quick local deployments (Tasks #3, #4, #5).
This skill automates the standard git workflow for local development: - Stage all changes - Commit with a message - Push to the current branch
The script uses pre-configured repository URL and token.
scripts/deploy.sh "feat: Task #X - Description"
整体质量一般,有明显的安全隐患。主要优点是使用简单,能自动化完成 git 提交推送流程。但致命问题是 Token 直接暴露在文档里,容易被他人获取使用,这是很大的安全风险。此外功能比较单一,缺少灵活配置,容易操作失误。敏感信息管理和功能丰富度都需要加强。