multi-select-reorder

multi-select-reorder is a skill for Claude Code from dhruv-anand-aintech/agent-rules-sync. It costs 27 tokens per session (278 once invoked), scanned A, original, MIT.

A temporary browser page for selecting several options, arranging the selected options by dragging them, and submitting the final order.

In plain words
What is it for?
Use it for ad hoc web forms where people need to select multiple items, reorder them, optionally edit their descriptions, and return the result as JSON.
Why use it?
It gives users a visual way to make and order a group of choices instead of entering the selection manually.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the multi-select-reorder plugin — 1 skill, 1 MCP server shipped together

Good fit Use it for ad hoc web forms where people need to select multiple items, reorder them, optionally edit their descriptions, and return the result as JSON.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dhruv-anand-aintech/agent-rules-sync/multi-select-reorder
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dhruv-anand-aintech/agent-rules-sync --skill multi-select-reorder
Clone the repo
git clone --depth 1 https://github.com/dhruv-anand-aintech/agent-rules-sync

Made for: Claude Code.

Or install multi-select-reorder, the plugin that ships this one along with the rest of its 1 skill, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for multi-select-reorder

README.md
[![agentmods](https://agentmods.dev/badge/skills/dhruv-anand-aintech/agent-rules-sync/multi-select-reorder/github.svg)](https://agentmods.dev/skills/dhruv-anand-aintech/agent-rules-sync/multi-select-reorder)
Your own site
<a href="https://agentmods.dev/skills/dhruv-anand-aintech/agent-rules-sync/multi-select-reorder"><img src="https://agentmods.dev/badge/skills/dhruv-anand-aintech/agent-rules-sync/multi-select-reorder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for multi-select-reorder

Your own site · 80×15
<a href="https://agentmods.dev/skills/dhruv-anand-aintech/agent-rules-sync/multi-select-reorder"><img src="https://agentmods.dev/badge/skills/dhruv-anand-aintech/agent-rules-sync/multi-select-reorder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 278 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00027 $0.00278
Opus 5 $0.00014 $0.00139
Sonnet 5 $0.00005 $0.00056
Haiku 4.5 $0.00003 $0.00028

Measured 8d ago against content hash ddf761f7cc0f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

multi-select-reorder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/multi-select-reorder/skills/multi-select-reorder/SKILL.md · 32 lines

What it actually says

Multi Select Reorder

Use this skill when a coding agent should present choices in a temporary local web UI, let the user select multiple items, reorder them with drag-and-drop, and return the submitted result.

Prefer the MCP tool when available:

  • multi_select_reorder: checkbox multi-select plus drag-and-drop ordering.

Options are initially selected by default. To set initial state manually, pass option objects with selected: false, or pass initial_selected as a list of option ids. For compact calls, options can be tuple-style JSON arrays in the form [id, label, description, selected], with omitted trailing values using the normal defaults.

Pass edit_descriptions: true when the user should be able to edit option descriptions in the same browser window.

The selector writes JSON with:

  • mode: multi_select_reorder.
  • selected: selected option ids.
  • ordered: selected option ids in the submitted order.
  • descriptions: final descriptions keyed by option id.
  • cancelled: whether the user cancelled.

Do not use this skill for terminal-native TUI selection. It is specifically for browser-based multi-select reorder flows.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 32 lines · 27 tokens per session scan A ddf761f7cc0f

Subscribe to this mod's changes

multi-select-reorder is a skill published in the GitHub repository dhruv-anand-aintech/agent-rules-sync (7 stars, last pushed 1mo ago), licensed MIT. It adds 27 tokens to every session and 278 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

visual-verify-ui

Wraps the browser tool into a dedicated visual QA testing skill for frontend work.

winstonkoh87/Athena-Public · 21 tokens

demo-video

A process for automatically recording feature-demo videos of a local web app using Playwright, a browser-automation tool, and ffmpeg, a video-processing tool. It drives the real app, then adds subtitles, labels, a simulated cursor, zooms, and faster playback for waiting periods.

Kminer2053/demo-video-skill · 261 tokens

dashboard-builder

Build self-contained interactive HTML dashboards with charts, filters, and tables. Generates a single browser-openable file — no server or dependencies required.

winstonkoh87/Athena-Public · 31 tokens

qa

QA test your code changes by reading your git diff, choosing the right validation path for frontend/browser and backend changes, and reporting pass/fail with evidence.

Skyvern-AI/skyvern · 33 tokens

e2e-testing

AI-powered E2E testing for any app — Flutter, React Native, iOS, Android, Electron, Tauri, KMP, .NET MAUI. Connects via MCP to running apps so the agent can take screenshots, tap elements, enter text, scroll, inspect UI trees, and verify state with natural language. Use when the user wants to test an app's UI…

ai-dashboad/flutter-skill · 107 tokens

clone-website

Reverse-engineer and clone a website in one shot — extracts assets, CSS, and content section-by-section and proactively dispatches parallel builder agents in worktrees as it goes. Use this whenever the user wants to clone, replicate, rebuild, reverse-engineer, or copy any website. Also triggers on phrases like "make a…

vibeeval/vibecosystem · 93 tokens