AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Preferences Management

skill-hec-ovi-agentickit-preferences-management · by hec-ovi

|

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add skill-hec-ovi-agentickit-preferences-management

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-hec-ovi-agentickit-preferences-management)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Preferences Management? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Page scope

update_preferences is auto-registered on the Preferences page (URL /preferences) by usePilotState({ name: "preferences", setValue }). On every other page it is not in the registry and a call will silently fail.

If the user asks to change a preference from elsewhere, reply: "Open the Preferences page; I can change settings there." Do not try to mutate preferences from a trip-detail or itinerary context.

When to use

Call into this skill when the user wants to change a long-term setting that affects future trips AND you are on the Preferences page. Typical phrasings:

  • "set my home airport to LAX"
  • "always plan in EUR"
  • "default trip length is 5 days"
  • "restore the demo seeds"

Do NOT use this for trip-specific edits — those go through trip-mutation skills (add-day-item, propose-flight, etc.) and target the active trip.

How to use

For a settings change:

  1. Identify the field and value. The schema has

homeAirport, preferredCurrency, defaultTripLengthDays, prefersAisleSeat, prefersWindowSeat.

  1. Call update_preferences({ field, value }). The framework pops a

confirm modal (mutating).

  1. After approval, acknowledge in one sentence: "Home airport set to LAX."

For "restore the demo seeds":

The demo-seeds restore is a UI-only action exposed as a button on the Preferences page; it is NOT a tool the agent can call. Direct the user to the Preferences page button instead of trying to invoke a tool.

Anti-patterns

  • Do NOT change preferences silently — the confirm modal exists for a

reason; the user's defaults shouldn't move without their nod.

  • Do NOT batch multiple preference changes into one update_preferences

call; do them one at a time so each gets its own confirm gate.

  • Do NOT confuse trip-level edits with preference edits. "Use EUR for

this trip" is a trip-level action, not a preference.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.