store-sort

store-sort is a skill for Claude Code from dbhq-uk/trello-skill. It costs 76 tokens per session (1,128 once invoked), scanned A, original, MIT.

A Trello shopping-list organizer that groups cards in the order a supermarket is laid out and adds a food-type emoji to each card. It uses store presets, with Tesco in the United Kingdom as the supplied default.

In plain words
What is it for?
Use it to organize a Trello shopping list by supermarket sections, add missing items when needed, and check for basic pantry staples.
Why use it?
It reduces backtracking in the shop and makes a long shopping list quicker to scan.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_SKILL_DIR} variable.

Part of the trello plugin — 5 skills shipped together

Good fit Use it to organize a Trello shopping list by supermarket sections, add missing items when needed, and check for basic pantry staples.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dbhq-uk/trello-skill/store-sort
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 dbhq-uk/trello-skill --skill store-sort
Clone the repo
git clone --depth 1 https://github.com/dbhq-uk/trello-skill

Made for: Claude Code.

Or install trello, the plugin that ships this one along with the rest of its 5 skills.

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 store-sort

README.md
[![agentmods](https://agentmods.dev/badge/skills/dbhq-uk/trello-skill/store-sort.svg)](https://agentmods.dev/skills/dbhq-uk/trello-skill/store-sort)
Your own site
<a href="https://agentmods.dev/skills/dbhq-uk/trello-skill/store-sort"><img src="https://agentmods.dev/badge/skills/dbhq-uk/trello-skill/store-sort.svg" alt="Measured on agentmods" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,128 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.00076 $0.01128
Opus 5 $0.00038 $0.00564
Sonnet 5 $0.00015 $0.00226
Haiku 4.5 $0.00008 $0.00113

Measured 7d ago against content hash 444ece5578e2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

store-sort 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 7d 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.

skills/store-sort/SKILL.md · 78 lines

How it starts

The opening of the file, as written. The whole thing — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Store-Sort - shopping list into aisle order

Reorders a Trello shopping list to match how a supermarket lays out its store, prefixing a food-type emoji to every card so the list is fast to shop and easy to scan. Works for any store through a preset that defines the aisle order, and ships with a Tesco (UK) preset as the default. Built on the trello skill in this pack.

How it works

  1. Resolve the target board and list
  2. Load the store preset (aisle order) - default Tesco, see references/tesco.md
  3. Classify each card into a section and prefix the right emoji (see references/emoji-reference.md)
  4. Optionally add missing items and run a pantry-staples check
  5. Position every card in the preset's canonical order
  6. Verify the displayed order

Resolving the board and list

There are no hardcoded defaults - nothing personal is baked into this skill. If the user has not named a board and list, ask. Then resolve IDs:

${CLAUDE_SKILL_DIR}/../trello/scripts/trello-boards.sh find "<board name>"
${CLAUDE_SKILL_DIR}/../trello/scripts/trello-boards.sh lists <board-id>

If the user always sorts the same list, they can name it once ("the Shopping list on my Home board") and you resolve it each run - do not store personal board or list IDs in this skill.

Choosing a store preset

  • Default - Tesco (UK): the canonical aisle order, position layout, and within-section sub-ordering live in references/tesco.md.
  • Another store: ask the user for their store's layout (entrance to checkout), or start from the closest preset and adjust. A new preset can be saved as references/<store>.md mirroring the Tesco one.

Workflow

  1. Fetch current cards as JSON
    ${CLAUDE_SKILL_DIR}/../trello/scripts/trello-cards.sh list-json <list-id>
    
  2. Classify each card by section using the active preset and the emoji reference.
  3. Pantry-staples check (optional, see below) before adding new staples.
  4. Create any missing new cards (one Bash call per card; batch them in a single message):
    ${CLAUDE_SKILL_DIR}/../trello/scripts/trello-cards.sh create <list-id> "🥫 Item name" ""
    
  5. Rename existing cards to prepend the correct emoji if missing or wrong:
    ${CLAUDE_SKILL_DIR}/../trello/scripts/trello-cards.sh update <card-id> name "🥫 Marmite"
    
  6. Position every card in the preset's canonical order with explicit pos values:
    ${CLAUDE_SKILL_DIR}/../trello/scripts/trello-cards.sh position <card-id> <pos>
    
  7. Verify and show the final ordering grouped by section:
    ${CLAUDE_SKILL_DIR}/../trello/scripts/trello-cards.sh list <list-id> 50
    

Read the full file on GitHub · 78 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago First seen · 78 lines · 76 tokens per session scan A 444ece5578e2

Subscribe to this mod's changes

store-sort is a skill published in the GitHub repository dbhq-uk/trello-skill (2 stars, last pushed today), licensed MIT. It adds 76 tokens to every session and 1,128 once invoked, about $0.0004 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

company-brain

Your team's shared, AI-ready knowledge base — people, companies, meetings, SOPs, and decisions structured so Claude can answer questions on your team's behalf. Team-scope sibling to second-brain (which is personal-scope). Seven modes — capture (drop something into the right structured dir), compile (process into wiki…

coreyhaines31/makerskills · 322 tokens

domain

When you want to brainstorm and check available .com domains for a new project — brand naming, aftermarket pricing (HugeDomains / Afternic / Sedo / Dan), USPTO trademark screening, and social handle availability. Built on Laura Roeder's "work backwards from availability, not from a name you fell in love with"…

coreyhaines31/makerskills · 232 tokens

slide-deck

When you want to draft, update, convert, or export a slide deck for a React/Next.js slide system (${SLIDEDECKREPO:-$HOME/code/your-slide-deck-site}/src/app/slides/). Writes TypeScript Slide[] arrays using your primitives (Eyebrow, Heading, Accent, Body, BulletList, Divider, TwoCol, GradientText), 12 cycling brand…

coreyhaines31/makerskills · 259 tokens

service-desk

Runs the IT service desk — intake, triage, prioritization, escalation, knowledge, and the metrics that improve service rather than distort it. Use this to set up or fix a service desk, design ticket priority and escalation, reduce repeat contacts, structure a knowledge base, or work out why a desk hitting its targets…

cbrock84/headcount · 73 tokens

session-cleanup

Identify stale and empty Claude Code sessions in the Agent Monitor and explain the cleanup endpoint (POST /api/settings/cleanup), always showing the exact list of what WOULD be removed before anything is deleted. Cleanup permanently deletes data, so this skill previews first and requires explicit user confirmation.…

hoangsonww/Claude-Code-Agent-Monitor · 67 tokens

kanban-tui

Comprehensive kanban board and task management via ktui CLI. Use for project tracking, todo lists, task dependencies, workflow automation, and board management. Activates when user mentions boards, tasks, kanban, or project management. If the ktui command is not available, but uv is available utilize uvx kanban-tui…

Zaloog/kanban-tui · 80 tokens