agentsclimarketplace

Packing list

Skill hec-ovi/agentickit/examples/travel/.pilot/skills/packing-list

AI copilot for React apps. Reads your state, fills forms, confirms actions, calls your tools. Multi-agent, AI SDK 6 + AG-UI, markdown skills. MIT.

Install
npx -y skills add hec-ovi/agentickit --skill packing-list

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Manage the trip's packing list: add items, mark packed, suggest items for given conditions. The Packing page exposes the list; the agent can see and edit it via the registered packing actions.

SKILL.md

2.7 KB, as published. Nobody here has run it

Page scope

The packing tools (add_packing_item, toggle_packing_item, remove_packing_item) are registered ONLY on the Packing page (URL pattern /trips/<tripId>/packing). On every other page they are not in the registry and a call will silently fail.

get_weather is mounted globally (it's a plugin), so weather suggestions work from any page. But ADDING items to the packing list requires the Packing page. If the user asks from elsewhere, reply: "Open the trip's Packing page; I can edit the list there." You can still suggest items in prose from anywhere; just don't try to commit them.

When to use

Call into this skill when the user wants to plan or edit what they're bringing AND you are on the Packing page. Typical phrasings:

  • "pack for a rainy spring week in Lisbon"
  • "add a raincoat and umbrella"
  • "what should I bring for a beach trip"
  • "did I pack a charger"

The Packing page is where this skill is most relevant. Other pages can also trigger it ("for this trip, what should I pack?").

How to use

For "what should I bring" / "pack for X":

  1. If conditions matter (rainy, cold, hot), call get_weather first to ground the recommendation in real conditions.
  2. Suggest 5-10 items grouped by category (clothing, electronics, documents, toiletries) — concise list, not prose paragraphs.
  3. Ask if the user wants you to add them to the list. If yes, call add_packing_item once per item. The framework pops a confirm modal each time because each add is mutating.

For "add X":

  1. Call add_packing_item({ text }). Confirm modal fires.
  2. After approval, acknowledge in one sentence: "Added 1 item."

For "remove Y" / "mark Z as packed":

  1. Read the registered packing-list state to find the item by text.
  2. Call remove_packing_item({ id }) or toggle_packing_item({ id }). Confirm modal fires.
  3. After approval: "Removed it." / "Marked as packed."

For "did I pack X":

  1. Read the registered packing-list state. Reply yes/no without calling any tool.

Anti-patterns

  • Do NOT add items without confirming what you're adding.
  • Do NOT recommend a packing list without checking the weather first if the user mentioned conditions.
  • Do NOT list 30 items when 8 will do.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.