CLI tool workflows - discovery, documentation, and recipe creation
Discovers CLI tools and creates multi-tool recipes for complex workflows.
/plugin marketplace add killerapp/mem8-plugin/plugin install mem8@mem8-officialinit|document|recommend|create-recipeCLI tool discovery, documentation, and recipe creation. Access the cli-ninja-tools skill.
/ninja init - Scan project, recommend CLI patterns
/ninja document - Document a CLI tool or recipe you discovered
/ninja recommend - Analyze codebase for CLI tool opportunities
/ninja create-recipe - Deep-dive 2+ CLIs to create new recipes
Scan project and recommend relevant CLI patterns.
Steps:
python3 skills/cli-ninja-tools/scripts/scan.py --jsonpython3 skills/cli-ninja-tools/scripts/discover.py --missing --tier 1skills/cli-ninja-tools/recipes/Help document a CLI tool or multi-tool recipe.
If documenting a single CLI:
{cli} --help to understand capabilitiesskills/cli-ninja-tools/clis/{cli}/quick.md existsIf documenting a recipe (2+ CLIs):
skills/cli-ninja-tools/recipes/TEMPLATE.mdpython3 skills/cli-ninja-tools/scripts/validate.py recipe.mdskills/cli-ninja-tools/recipes/Analyze codebase and recommend CLI tools.
Steps:
python3 skills/cli-ninja-tools/scripts/discover.py --jsonpython3 skills/cli-ninja-tools/scripts/scan.py --jsonskills/cli-ninja-tools/clis/_index.md for tool repertoireDeep-dive into 2+ CLIs to discover powerful combinations.
Dispatch the recipe-creator agent:
Use Task tool with mem8:recipe-creator subagent:
Example:
Explore how gh, jq, and rg can work together for GitHub issue management
The cli-ninja-tools skill contains:
clis/ - Per-CLI documentation (jq, rg, fd, gh, ffmpeg, ast-grep)recipes/ - Multi-CLI combinations by categoryscripts/ - discover.py, scan.py, validate.py# Check what tools are installed
python3 skills/cli-ninja-tools/scripts/discover.py --tier 1
# Scan project for CLI usage
python3 skills/cli-ninja-tools/scripts/scan.py
# Validate a recipe
python3 skills/cli-ninja-tools/scripts/validate.py recipes/github/my-recipe.md