用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/eron1703/claude-config-loader --skill project命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Load CI/CD pipeline configuration and deployment information when working with automation or deployments
Load database relationships, shared resources, and schema information when working with data models or database configuration
Load development environment information including folder structure, OrbStack setup, and system configuration
正在显示 SKILL.md
基于 SOC 职业分类
| name | project |
| description | Show information about the current project based on directory |
| disable-model-invocation | false |
!pwd
!basename $(pwd)
!if [ -d .git ]; then echo "Git repository: $(git remote get-url origin 2>/dev/null || echo 'No remote configured')"; echo "Current branch: $(git branch --show-current 2>/dev/null)"; else echo "Not a git repository"; fi
!if [ -f package.json ]; then echo "Node.js/JavaScript project"; elif [ -f requirements.txt ] || [ -f pyproject.toml ]; then echo "Python project"; elif [ -f Cargo.toml ]; then echo "Rust project"; elif [ -f go.mod ]; then echo "Go project"; else echo "Unknown project type"; fi
!if [ -f docker-compose.yml ] || [ -f docker-compose.yaml ]; then echo "Docker Compose project"; cat docker-compose.yml 2>/dev/null || cat docker-compose.yaml 2>/dev/null | head -50; else echo "No Docker Compose configuration found"; fi
!if [ -f ./claude_instructions.md ]; then echo "Project has claude_instructions.md"; elif [ -f ./CLAUDE.md ]; then echo "Project has CLAUDE.md"; else echo "No project-specific rules found"; fi
Use this information to understand the current project context before starting work.