| name | graphify-supercli |
| description | Use this skill when working with graphify through supercli to understand supercli-specific workarounds and best practices. |
Graphify Supercli Integration
Supercli-Specific Workarounds
Graphify commands work through supercli, but multi-word arguments require explicit flags instead of positional args.
Multi-word Arguments
Use explicit --flag style arguments for strings with spaces:
sc graphify graph query "how does auth work"
sc graphify graph query --question "how does auth work"
Passthrough with Complex Commands
For complex commands through the passthrough (_._), use -- separator:
sc graphify _ _ -- <command> --flag "value with spaces"
sc graphify _ _ -- query --question "what is this project about"
When Positional Args Work
Single-word arguments work fine:
sc graphify graph update . (single path)
sc graphify graph explain resolveCwd (single node name)
sc graphify graph path execute resolveCwd (two single-word node names)
Quick Reference