From retriever
Handles /sort slash commands to list sort options, apply single/multi-column sorts like date_created desc file_name asc, or reset to default in Retriever via Python tools.
How this skill is triggered — by the user, by Claude, or both
Slash command
/retriever:sortThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> Operates under `retriever:routing`. If the user's intent actually fits a different tier — another `retriever:*` skill, a Tier 2 slash, a Tier 3 `tools.py` subcommand, or (last resort) direct DB access — stop and re-route against the ladder before continuing.
Operates under
retriever:routing. If the user's intent actually fits a different tier — anotherretriever:*skill, a Tier 2 slash, a Tier 3tools.pysubcommand, or (last resort) direct DB access — stop and re-route against the ladder before continuing.
Use this skill for /sort, /sort list, /sort <field> <asc|desc>, /sort <field> <asc|desc>, <field> <asc|desc>, and /sort default.
For the exact read-only forms /sort and /sort list:
/sort: python3 skills/tool-template/tools.py slash . /sort/sort list: python3 skills/tool-template/tools.py slash . /sort listRETRIEVER_CANONICAL_TOOL_PATH pointed at ../tool-template/tools.py.For /sort <field> <asc|desc>, comma-separated multi-column sort specs, and /sort default:
/sort.npx claudepluginhub sdemyanov/retrieverManages displayed columns in Retriever tables via /columns slash commands: list, set, add, remove fields, or reset to default.
Guides designing filter and sort query parameters for list endpoints, covering operator syntax, injection prevention, and sort conventions.
Guides creation, organization, and debugging of slash commands for Claude Code, covering YAML frontmatter, dynamic arguments, bash execution, user interactions, programmatic invocation, and best practices.