用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/michaelbleterman/ai-scrum --skill project-discovery命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | Project Discovery |
| description | Detect tech stack and project context before implementing changes |
This skill ensures you understand the existing codebase before making changes.
context = discover_project_context(".")
# Returns: {"language": "Python", "frameworks": ["FastAPI"], ...}
# Find related implementations
search_codebase("user.*auth|registration")
search_codebase("class.*Controller|class.*Service")
# Understand patterns before coding
read_file("src/auth/userController.js")
read_file("requirements.txt") # or package.json
enrich_task_context(
task_description="Add user registration endpoint",
context_data={
"tech_stack": "Node.js, Express.js",
"related_files": "src/auth/userController.js",
"patterns": "RESTful API, JWT authentication"
}
)
NEVER assume the tech stack without verification
NEVER create parallel implementations in different languages
ALWAYS match existing coding patterns and conventions
| Indicator | Project Type |
|---|---|
package.json + node_modules | Node.js |
requirements.txt + venv | Python |
pom.xml or build.gradle | Java |
go.mod | Go |
Cargo.toml | Rust |
If you see apps/ or packages/ directories: