verify-project-setuplisted
Install: claude install-skill CocoRoF/geny-executor
# Verify — host + project setup snapshot
The output below is *captured at skill execution time*. Read it,
note any mismatches, then explain to the user what's healthy, what's
suspicious, and what to fix next. Do **not** re-run these commands
yourself — the data is already here.
## Operating system + shell
- OS: !`uname -s`
- Kernel: !`uname -r`
- Architecture: !`uname -m`
- Shell: !`echo "$SHELL"`
- Working dir: !`pwd`
## Runtime versions
```!
for cmd in node npm pnpm bun yarn python python3 pip uv ruff git gh docker make; do
if command -v "$cmd" >/dev/null 2>&1; then
ver="$("$cmd" --version 2>&1 | head -n 1)"
printf " %-8s %s\n" "$cmd" "$ver"
fi
done
```
## Project files (top-level)
- package.json: !`[ -f package.json ] && echo present || echo absent`
- pyproject.toml: !`[ -f pyproject.toml ] && echo present || echo absent`
- requirements.txt: !`[ -f requirements.txt ] && echo present || echo absent`
- Dockerfile: !`[ -f Dockerfile ] && echo present || echo absent`
- .env.example: !`[ -f .env.example ] && echo present || echo absent`
- README.md: !`[ -f README.md ] && echo present || echo absent`
- LICENSE: !`[ -f LICENSE ] && echo present || echo absent`
## Git state
- Repo root: !`git rev-parse --show-toplevel 2>/dev/null || echo "(not a git repo)"`
- Branch: !`git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "(not a git repo)"`
- HEAD: !`git rev-parse --short HEAD 2>/dev/null || echo "(not a git repo)"`
- Dirty?: !`git diff --quiet 2>/dev/null &&