Scan Report
This report was generated in Chinese. Some content may be in Chinese.
5 /100
GitHub Manager CLI
GitHub 仓库管理工具 - PR审查、部署、Changelog生成、CI/CD配置、Issue管理、项目看板
GitHub Manager CLI 是一个合法的 GitHub 仓库管理工具,代码与文档描述完全一致,无恶意行为或阴影功能。
Safe to install
该技能可安全使用。无需额外安全措施。
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | 依赖版本锁定缺失 Supply Chain | package.json:18 |
| Low | 可选Webhook配置存在 Sensitive Access | config-template.json:6 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | WRITE | WRITE | ✓ Aligned | github-cli.js:28 配置文件读写 |
| Network | READ/WRITE | READ/WRITE | ✓ Aligned | github-cli.js:47 Octokit GitHub API调用 |
| Shell | READ | READ | ✓ Aligned | generate-changelog.js:29 execSync git log 仅用于读取提交历史 |
3 findings
Medium External URL 外部 URL
https://your-webhook-url.com SKILL.md:191 Medium External URL 外部 URL
https://your-webhook-url.com/webhook config-template.json:6 Medium External URL 外部 URL
https://staging.example.com/health templates/github-actions/deploy-workflow.yml:141 File Tree
13 files · 89.9 KB · 3308 lines JavaScript 4f · 1898L
Markdown 3f · 659L
YAML 4f · 597L
JSON 2f · 154L
├─
▾
.github
│ └─
▾
workflows
│ ├─
ci.yml
YAML
│ └─
deploy.yml
YAML
├─
▾
scripts
│ ├─
code-review.js
JavaScript
│ ├─
generate-changelog.js
JavaScript
│ └─
project-manager.js
JavaScript
├─
▾
templates
│ └─
▾
github-actions
│ ├─
ci-workflow.yml
YAML
│ └─
deploy-workflow.yml
YAML
├─
config-template.json
JSON
├─
github-cli.js
JavaScript
├─
package.json
JSON
├─
README.md
Markdown
├─
SKILL_CN.md
Markdown
└─
SKILL.md
Markdown
Dependencies 4 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
@octokit/rest | ^20.0.2 | npm | No | 官方 GitHub API 客户端 |
commander | ^11.0.0 | npm | No | CLI 参数解析 |
chalk | ^4.1.2 | npm | No | 终端彩色输出 |
inquirer | ^8.2.6 | npm | No | 交互式 CLI 提示 |
Security Positives
✓ 代码与 SKILL.md 文档描述完全一致,无阴影功能
✓ 仅使用官方 @octokit/rest 库进行 GitHub API 操作
✓ shell 执行仅限于 git log 等只读命令
✓ GitHub Token 存储于本地配置文件,不外传
✓ 无 base64 编码、eval()、反分析等混淆技术
✓ 无凭证收割、远程代码执行、数据外泄等恶意模式
✓ GitHub Actions 工作流模板符合标准安全实践