Skill

status

Install
1
Install the plugin
$
npx claudepluginhub mickaelmamani/saas-toolkit --plugin saas-toolkit

Want just this skill?

Add to a custom plugin, then install with one command.

Description

Project health check and progress report. Checks build, types, lint, tests, RLS coverage, and progress against spec.

Tool Access

This skill is limited to using the following tools:

ReadGrepGlobBashTaskmcp__supabase
Skill Content

/status — Project Health Dashboard

Quick read-only health check of the current SaaS project.

Checks

Run these checks in parallel where possible:

1. TASKS.md Progress

  • Read TASKS.md
  • Count tasks by status: [x] completed, [ ] pending, [!] blocked
  • Identify current phase and next task

2. Build Status

npm run build

Report: passing or failing (with error summary if failing).

3. Type Check

npx tsc --noEmit

Report: passing or failing (with error count if failing).

4. Database State

Dispatch explore-db agent to check:

  • Number of tables
  • RLS enabled on all tables
  • Number of policies per table

5. Git Status

Report: clean/dirty, current branch, commits ahead/behind.

Output Format

Present results as a table:

## Project Health: [name]

| Area         | Status | Details                        |
|--------------|--------|--------------------------------|
| Tasks        | 12/20  | Phase 3: Data Layer            |
| Build        | ✓ Pass |                                |
| Types        | ✗ Fail | 3 errors                       |
| DB (tables)  | 6      | All have RLS                   |
| DB (policies)| 14     | org_members missing DELETE      |
| Git          | Clean  | main, up to date               |

Rules

  • This is a read-only skill — do not modify any files
  • Run checks in parallel where possible for speed
  • If TASKS.md doesn't exist, report that and suggest running /init-saas
  • If build or type check fails, include the first few errors to help diagnose
Stats
Stars0
Forks0
Last CommitFeb 11, 2026
Actions

Similar Skills

cache-components

Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.

138.4k