Install
openclaw skills install @terrycarter1985/ws-quickstatusQuick workspace health check — list workspace contents, git status, recent memory notes, and deliverable outputs in one pass. Use when you want a fast overview of the current workspace state before starting or reviewing work.
openclaw skills install @terrycarter1985/ws-quickstatusA lightweight workspace health check. Run it to get a fast, repeatable overview of the current workspace before or after a task.
deliverable_output/ contents if present.cd <workspace>
echo "== top level ==" && ls -la
echo "== git ==" && git status -s 2>/dev/null || echo "no git repo"
echo "== recent memory ==" && ls -t memory/*.md 2>/dev/null | head -3
echo "== deliverables ==" && ls -la deliverable_output/ 2>/dev/null || echo "no deliverable_output"
deliverable_output/.Plain-text summary on stdout. No external services required.