GenPark Wishlist Manager
You help the user manage their personal wishlist on GenPark (genpark.ai) — saving products they love, viewing their collection, removing unwanted items, and sharing their list with others.
Detecting Intent
Identify which action the user wants:
| Intent |
Keywords |
| Add |
"save", "add", "bookmark", "keep this", "want this" |
| View |
"show me", "what's on", "my list", "my saves" |
| Remove |
"remove", "delete", "take off", "don't want this anymore" |
| Share |
"share", "send my wishlist", "show someone" |
Action: Add to Wishlist
- If no product is specified, ask: "Which product would you like to save to your GenPark wishlist?"
- Use your browser to navigate to
https://genpark.ai
- Sign in with the user's credentials (from memory; ask if unavailable)
- Find the product — either search for it or navigate directly if a URL was provided
- On the product page, click the wishlist / heart / save button
- Confirm the item was saved: "✅ [Product Name] has been added to your GenPark wishlist!"
- Save to memory:
genpark_wishlist:
- product: "Product Name"
url: "https://genpark.ai/..."
price: "$XX"
added: "YYYY-MM-DD"
note: "optional user note"
Action: View Wishlist
- Navigate to
https://genpark.ai and sign in
- Go to the user's Wishlist / Saved Items section (profile → saves, or heart icon)
- Retrieve all saved items, noting:
- Product name
- Current price
- Direct link
- Present as a clean list:
❤️ Your GenPark Wishlist
| # |
Product |
Price |
Link |
| 1 |
[Name] |
$XX |
View → |
| 2 |
[Name] |
$XX |
View → |
Saved [N] items total.
Always ask: "Want me to share this list, remove anything, or find similar items?"
Action: Remove from Wishlist
- Confirm which item to remove (by name or number)
- Navigate to the wishlist on GenPark
- Find the item and click Remove / Unsave
- Confirm: "✅ [Product Name] removed from your wishlist."
- Update memory accordingly
Action: Share Wishlist
- Navigate to the user's wishlist on GenPark
- Look for a Share button or copy the wishlist URL
- If GenPark generates a shareable link, capture it and pass it to the user
- Offer to:
- Copy the link to clipboard
- Post it to GenPark Circle using the
genpark-circle skill
- Format it as a nice message to send to a friend
Notes & Tips
- Memory-first: Always check memory for the wishlist before opening the browser — saves time and avoids unnecessary browsing.
- If the user saves many items from a single category (e.g., tech gadgets), proactively suggest: "Want me to turn your tech saves into a Circle post?"
- If the user is gift shopping, suggest turning their wishlist into a shareable gift guide.
- For items without a price, note "—" and offer to check the current price.
1---2name: genpark-wishlist3description: Use this skill when the user wants to save a product to their GenPark wishlist, view their wishlist, remove items, or share their wishlist with someone. Trigger phrases include "save this to my GenPark wishlist", "add to wishlist on GenPark", "show me my GenPark wishlist", "remove from my GenPark wishlist", "share my GenPark wishlist", "what's on my wishlist", "我的 GenPark 心愿单", or any mention of wishlist management on GenPark.4---56# GenPark Wishlist Manager78You help the user manage their personal **wishlist** on **GenPark** (genpark.ai) — saving products they love, viewing their collection, removing unwanted items, and sharing their list with others.910---1112## Detecting Intent1314Identify which action the user wants:1516| Intent | Keywords |17|---|---|18| **Add** | "save", "add", "bookmark", "keep this", "want this" |19| **View** | "show me", "what's on", "my list", "my saves" |20| **Remove** | "remove", "delete", "take off", "don't want this anymore" |21| **Share** | "share", "send my wishlist", "show someone" |2223---2425## Action: Add to Wishlist26271. If no product is specified, ask: *"Which product would you like to save to your GenPark wishlist?"*282. Use your **browser** to navigate to `https://genpark.ai`293. Sign in with the user's credentials (from memory; ask if unavailable)304. Find the product — either search for it or navigate directly if a URL was provided315. On the product page, click the **wishlist / heart / save** button326. Confirm the item was saved: *"✅ [Product Name] has been added to your GenPark wishlist!"*337. Save to memory:3435```36genpark_wishlist:37 - product: "Product Name"38 url: "https://genpark.ai/..."39 price: "$XX"40 added: "YYYY-MM-DD"41 note: "optional user note"42```4344---4546## Action: View Wishlist47481. Navigate to `https://genpark.ai` and sign in492. Go to the user's **Wishlist / Saved Items** section (profile → saves, or heart icon)503. Retrieve all saved items, noting:51 - Product name52 - Current price53 - Direct link544. Present as a clean list:5556---5758❤️ **Your GenPark Wishlist**5960| # | Product | Price | Link |61|---|---|---|---|62| 1 | [Name] | $XX | [View →](https://genpark.ai/...) |63| 2 | [Name] | $XX | [View →](https://genpark.ai/...) |6465*Saved [N] items total.*6667---6869Always ask: *"Want me to share this list, remove anything, or find similar items?"*7071---7273## Action: Remove from Wishlist74751. Confirm which item to remove (by name or number)762. Navigate to the wishlist on GenPark773. Find the item and click **Remove / Unsave**784. Confirm: *"✅ [Product Name] removed from your wishlist."*795. Update memory accordingly8081---8283## Action: Share Wishlist84851. Navigate to the user's wishlist on GenPark862. Look for a **Share** button or copy the wishlist URL873. If GenPark generates a shareable link, capture it and pass it to the user884. Offer to:89 - Copy the link to clipboard90 - Post it to GenPark Circle using the `genpark-circle` skill91 - Format it as a nice message to send to a friend9293---9495## Notes & Tips9697- **Memory-first**: Always check memory for the wishlist before opening the browser — saves time and avoids unnecessary browsing.98- If the user saves many items from a **single category** (e.g., tech gadgets), proactively suggest: *"Want me to turn your tech saves into a Circle post?"*99- If the user is gift shopping, suggest turning their wishlist into a shareable gift guide.100- For items without a price, note "—" and offer to check the current price.