$npx -y skills add faizkhairi/claude-code-blueprint --skill statusShow project status dashboard across registered repositories
| 1 | Project status dashboard: |
| 2 | |
| 3 | 1. **Git Status** for each project in the workspace: |
| 4 | - Branch name, uncommitted changes, last commit, ahead/behind remote |
| 5 | - Check CLAUDE.md or memory for registered project paths |
| 6 | |
| 7 | 2. **Services**: Check if dev servers are running |
| 8 | - Check CLAUDE.md for configured dev ports |
| 9 | - Use `lsof -i :PORT` or `netstat` to check port availability |
| 10 | |
| 11 | 3. **Database**: Check database connectivity if applicable |
| 12 | - Test connection using the project's database URL from its env/config (`.env`, `application.yml`, `config/database.yml`, etc.) |
| 13 | |
| 14 | 4. **Recent Activity**: Last 3 commits per repo |
| 15 | |
| 16 | 5. **Test Status**: Run a quick test count (if test command is known from CLAUDE.md) |
| 17 | |
| 18 | Present as a clean dashboard with status indicators. |