gnfs-status

star 5

显示 GNFS 项目当前状态:构建状态、测试结果、最近修改

MaYiding By MaYiding schedule Updated 6/2/2026

name: gnfs-status description: 显示 GNFS 项目当前状态:构建状态、测试结果、最近修改 disable-model-invocation: true

GNFS Project Status

快速检查项目健康状态。

Steps

  1. 构建状态 — 尝试编译,报告是否成功
cmake --build build -j$(sysctl -n hw.ncpu) 2>&1 | tail -5
  1. 测试状态 — 运行全部测试并汇总
ctest --test-dir build --output-on-failure 2>&1 | tail -20
  1. 最近修改 — 列出最近修改的源文件
find include src tests -name "*.hpp" -o -name "*.cpp" | xargs ls -lt | head -10
  1. 代码统计 — 报告文件数和行数
find include src -name "*.hpp" -o -name "*.cpp" | xargs wc -l | tail -1

Output Format

汇总为简洁的状态报告:

  • 🔨 Build: ✅ Success / ❌ Failed (error summary)
  • 🧪 Tests: X/Y passed
  • 📝 Recent changes: top 5 modified files
  • 📊 Codebase: N files, M lines
Install via CLI
npx skills add https://github.com/MaYiding/GNFS --skill gnfs-status
Repository Details
star Stars 5
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator