Install
$ agentstack add skill-hec-ovi-agentickit-preferences-management ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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:
- Identify the field and value. The schema has
homeAirport, preferredCurrency, defaultTripLengthDays, prefersAisleSeat, prefersWindowSeat.
- Call
update_preferences({ field, value }). The framework pops a
confirm modal (mutating).
- 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.
- Author: hec-ovi
- Source: hec-ovi/agentickit
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.