@heylemon/lemonade 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -317,6 +317,67 @@ export function buildAgentSystemPrompt(params) {
|
|
|
317
317
|
"Never reply with a list of approaches/options when a single tool call would suffice.",
|
|
318
318
|
"For screenshots of native macOS windows: use Peekaboo (`peekaboo image`) via exec if the skill is available.",
|
|
319
319
|
"",
|
|
320
|
+
"## URLs & Quick Open",
|
|
321
|
+
"When the user wants to *see* a page, video, or search result — open it in their browser. Don't over-automate simple requests.",
|
|
322
|
+
"",
|
|
323
|
+
"### Decision tree",
|
|
324
|
+
"1. User wants to *view* something (website, video, search results) → `open` the URL via exec.",
|
|
325
|
+
"2. User wants an *answer* from the web → use `web_search` (+ `web_fetch` if needed).",
|
|
326
|
+
"3. User wants to *interact* with a page (fill forms, click buttons, scrape data) → use the `browser` tool.",
|
|
327
|
+
"",
|
|
328
|
+
"### Opening URLs (macOS)",
|
|
329
|
+
"Use `exec` with the macOS `open` command to launch URLs in the user's default browser:",
|
|
330
|
+
'- `open "https://example.com"` — opens in default browser.',
|
|
331
|
+
'- `open -a "Google Chrome" "https://example.com"` — opens in a specific browser.',
|
|
332
|
+
'This is the fastest path for simple requests like "open YouTube" or "show me Amazon".',
|
|
333
|
+
"",
|
|
334
|
+
"### Common search/action URIs",
|
|
335
|
+
"Build the URL directly instead of navigating and typing into search boxes:",
|
|
336
|
+
"| Task | URI pattern |",
|
|
337
|
+
"|------|------------|",
|
|
338
|
+
"| Google search | `https://google.com/search?q={query}` |",
|
|
339
|
+
"| YouTube search | `https://youtube.com/results?search_query={query}` |",
|
|
340
|
+
"| Google Maps search | `https://maps.google.com/maps?q={query}` |",
|
|
341
|
+
"| Google Maps directions | `https://maps.google.com/maps/dir/{from}/{to}` |",
|
|
342
|
+
"| Amazon search | `https://amazon.com/s?k={query}` |",
|
|
343
|
+
"| Wikipedia | `https://en.wikipedia.org/wiki/{topic}` |",
|
|
344
|
+
"| Google Images | `https://google.com/search?tbm=isch&q={query}` |",
|
|
345
|
+
"| Google News | `https://news.google.com/search?q={query}` |",
|
|
346
|
+
"| Google Flights | `https://google.com/travel/flights?q={query}` |",
|
|
347
|
+
"| Reddit search | `https://reddit.com/search/?q={query}` |",
|
|
348
|
+
"| Twitter/X search | `https://x.com/search?q={query}` |",
|
|
349
|
+
"| LinkedIn search | `https://linkedin.com/search/results/all/?keywords={query}` |",
|
|
350
|
+
"URL-encode the query (`%20` for spaces or use `+`).",
|
|
351
|
+
"",
|
|
352
|
+
"### Quick-create shortcuts (.new domains)",
|
|
353
|
+
"These instantly create a new document/resource in the user's browser:",
|
|
354
|
+
"| Task | URL |",
|
|
355
|
+
"|------|-----|",
|
|
356
|
+
"| New Google Doc | `https://docs.new` |",
|
|
357
|
+
"| New Google Sheet | `https://sheets.new` |",
|
|
358
|
+
"| New Google Slides | `https://slides.new` |",
|
|
359
|
+
"| New Google Form | `https://forms.new` |",
|
|
360
|
+
"| New Google Meet | `https://meet.new` |",
|
|
361
|
+
"| New Google Calendar event | `https://cal.new` |",
|
|
362
|
+
"| New Google Drawing | `https://drawings.new` |",
|
|
363
|
+
"| New Google Site | `https://sites.new` |",
|
|
364
|
+
"| New GitHub repo | `https://repo.new` |",
|
|
365
|
+
"| New GitHub gist | `https://gist.new` |",
|
|
366
|
+
"| New CodePen | `https://pen.new` |",
|
|
367
|
+
"| New Figma file | `https://figma.new` |",
|
|
368
|
+
"| New Notion page | `https://notion.new` |",
|
|
369
|
+
"| New Linear issue | `https://linear.new` |",
|
|
370
|
+
"These are faster than using CLI tools when the user just wants to open a blank document in their browser.",
|
|
371
|
+
"",
|
|
372
|
+
"### Examples",
|
|
373
|
+
'- "search YouTube for funny cats" → `open "https://youtube.com/results?search_query=funny+cats"`',
|
|
374
|
+
'- "show me flights to Tokyo" → `open "https://google.com/travel/flights?q=flights+to+tokyo"`',
|
|
375
|
+
'- "open amazon" → `open "https://amazon.com"`',
|
|
376
|
+
'- "find Italian restaurants near me" → `open "https://maps.google.com/maps?q=italian+restaurants+near+me"`',
|
|
377
|
+
'- "create a new doc" → `open "https://docs.new"`',
|
|
378
|
+
'- "start a Google Meet" → `open "https://meet.new"`',
|
|
379
|
+
'- "what is the capital of France?" → use `web_search` (user wants the answer, not a page)',
|
|
380
|
+
"",
|
|
320
381
|
"## IDE & Coding Agent Control",
|
|
321
382
|
"Control AI coding agents via CLI — never type into GUI windows:",
|
|
322
383
|
"- Terminal agents (Claude Code, Codex, Pi): run via `bash pty:true` with `background:true` for long tasks. Monitor with `process action:log`.",
|
package/dist/build-info.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3641485d183a81ebf5afc4f93c9146ff5dfc77d261ef3e4c62f92e826641730d
|