ps
The ps module extends the standard process viewing capability by adding interactive TUI features and the ability to export process snapshots in structured data formats like JSON and CSV.
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
--- name: "ps" description: "The ps module extends the standard process viewing capability by adding interactive TUI features and the ability to export process snapshots in structured data formats like JSON and CSV." license: "MIT" --- # ps - Enhanced Process Status The `ps` module extends the standard process viewing capability by adding interactive TUI features and the ability to export process snapshots in structured data formats like JSON and CSV. ## When to Activate - When the user wants to browse processes using an interactive UI (FZF or CSV app). - When exporting current process lists to JSON, CSV, or TSV for scripting. - When converting legacy `ps aux` output into structured data formats. ## Core Principles & Rules - **Interactive Exploration**: Use `fz` for a fast, searchable TUI experience. - **Data Exporting**: Prioritize `--json` or `--csv` when the user intends to process the data with other tools (like `jq`). - **Piping Compatibility**: Can consume output from standard `ps` commands and transform it. ## Patterns & Examples ### Interactive UI ```bash # View processes in a searchable interactive TUI x ps fz ``` ### Export to JSON ```bash # Output current process information as a JSON array x ps --json ``` ### Data Transformation ```bash # Convert a specific ps command output to CSV ps -ef | x ps --tocsv ``` ## Checklist - [ ] Confirm if the user needs an interactive view or a static data export. - [ ] Verify the desired output format (JSON, CSV, TSV). - [ ] Ensure specific `ps` flags are used if narrowing down the process list.
More General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

