WS QuickStatus provides a fast, repeatable snapshot of workspace files, Git state, recent memory, and deliverables.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install ws-quickstatus
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install ws-quickstatus using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
WS QuickStatus is a lightweight workspace health-check skill for Openclaw Skills that helps developers and AI agents orient themselves before starting work or verify results before wrapping up. It combines common shell checks into one concise, plain-text overview.
The skill inspects top-level workspace contents, reports concise Git status when available, identifies the three most recent Markdown files in the memory directory, and checks the deliverable_output directory for generated artifacts. It requires no external services.
ls -la.git status -s when the workspace is a Git repository; otherwise report that no Git repository is available.memory/ by modification time and display the three most recent entries.deliverable_output/ and list its contents when the directory exists.WS QuickStatus does not require package installation, API credentials, or external services. Use a shell with access to the workspace and standard Unix commands such as cd, ls, git, and head.
Run the health check from the workspace root:
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"
Replace <workspace> with the path to the project or agent workspace. Missing Git, memory, or deliverable directories are handled as informational conditions rather than requiring external configuration.
The skill produces a plain-text stdout report rather than persistent structured data.
| Section | Source | Reported information |
|---|---|---|
| Top level | Workspace root | Full listing of top-level files and directories from ls -la |
| Git | Repository metadata, if present | Short-form working-tree status from git status -s |
| Recent memory | memory/*.md |
Up to three Markdown files sorted by modification time |
| Deliverables | deliverable_output/, if present |
Directory listing of generated outputs |
Key workspace paths include:
memory/ for recent Markdown context notes.deliverable_output/ for task outputs and handoff artifacts.The skill also declares the Clawdbot metadata emoji 🟢. No files are generated or modified by the check.
Loading
A structured review workflow for validating RDK Model Zoo samples against repository standards and delivery specifications.

GoBuy checks marketplace evidence quality and returns a dated 0–100 trust score before an AI agent recommends or compares a product.

hal-image gives AI agents a fail-open workflow for inspecting, transforming, compressing, and delivering images without exposing local file paths.

Inspect CloudRobo quotas, compute capacity, resource pools, and node-level infrastructure details through a read-only CLI and SDK workflow.

Safely automate the browser session a user is already signed into, including authenticated dashboards, internal tools, webmail, billing pages, and live web applications.








































