@heylemon/lemonade 0.3.0 → 0.3.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.
- package/dist/agents/system-prompt.js +22 -14
- package/dist/build-info.json +3 -3
- package/dist/canvas-host/a2ui/.bundle.hash +1 -1
- package/dist/cli/skills-cli.js +1 -1
- package/package.json +1 -1
- /package/skills/bird/{SKILL.md → SKILL.md.disabled} +0 -0
- /package/skills/blucli/{SKILL.md → SKILL.md.disabled} +0 -0
- /package/skills/bluebubbles/{SKILL.md → SKILL.md.disabled} +0 -0
- /package/skills/clawdhub/{SKILL.md → SKILL.md.disabled} +0 -0
- /package/skills/gog/{SKILL.md → SKILL.md.disabled} +0 -0
- /package/skills/himalaya/{SKILL.md → SKILL.md.disabled} +0 -0
- /package/skills/voice-call/{SKILL.md → SKILL.md.disabled} +0 -0
|
@@ -156,7 +156,7 @@ function buildDocsSection(params) {
|
|
|
156
156
|
"Mirror: https://docs.lemonade.ai",
|
|
157
157
|
"Source: https://github.com/lemonade/lemonade",
|
|
158
158
|
"Community: https://discord.com/invite/clawd",
|
|
159
|
-
"Find new skills
|
|
159
|
+
"Find new skills in the Lemon app under Settings > Skills.",
|
|
160
160
|
"For Lemonade behavior, commands, config, or architecture: consult local docs first.",
|
|
161
161
|
"When diagnosing issues, run `lemonade status` yourself when possible; only ask the user if you lack access (e.g., sandboxed).",
|
|
162
162
|
"",
|
|
@@ -340,13 +340,13 @@ export function buildAgentSystemPrompt(params) {
|
|
|
340
340
|
"If the user asks you to do something (take a screenshot, send a file, etc.), just do it — pick the best approach and act.",
|
|
341
341
|
"Never reply with a list of approaches/options when a single tool call would suffice.",
|
|
342
342
|
"For screenshots of native macOS windows: use Peekaboo (`peekaboo image`) via exec if the skill is available.",
|
|
343
|
-
'When the user mentions ANY third-party app or service (Jira, GitHub, LinkedIn, HubSpot,
|
|
343
|
+
'CRITICAL: When the user mentions ANY third-party app or service (Trello, Jira, GitHub, LinkedIn, HubSpot, Asana, Salesforce, Todoist, etc.) that is NOT in the Integration CLI table below, you MUST run `lemon-composio search "<task>"` IMMEDIATELY. NEVER say "I don\'t have that integration" or suggest alternatives. Composio supports 1000+ apps — always search first, then act on the results.',
|
|
344
344
|
"",
|
|
345
345
|
"## URLs & Quick Open",
|
|
346
346
|
"",
|
|
347
347
|
"### Decision tree",
|
|
348
348
|
"1. Service has a dedicated `lemon-*` CLI tool (Gmail, Calendar, Drive, Docs, Sheets, Slides, Notion, Slack, YouTube) → **always use the CLI tool**. Never open these in a browser or via URI.",
|
|
349
|
-
'2.
|
|
349
|
+
'2. ANY other app/service (Trello, Jira, LinkedIn, HubSpot, Asana, Salesforce, Todoist, etc.) → **always run `lemon-composio search "<task>"`** first. Never say you can\'t do it without searching.',
|
|
350
350
|
"3. User wants an *answer* from the web → use `web_search` (+ `web_fetch` if needed).",
|
|
351
351
|
"4. User wants to *interact* with a page (fill forms, click buttons, scrape data) → use Lemonade's dedicated `browser` tool.",
|
|
352
352
|
"5. User wants to *view* a general website (no CLI or Composio tool exists) → use Lemonade's dedicated `browser` tool to navigate there.",
|
|
@@ -367,17 +367,25 @@ export function buildAgentSystemPrompt(params) {
|
|
|
367
367
|
"**Never open** `mail.google.com`, `calendar.google.com`, `drive.google.com`, `docs.google.com`, `sheets.google.com`, `slides.google.com`, `notion.so`, `app.slack.com`, or `youtube.com` in any browser. Use the CLI.",
|
|
368
368
|
'**Creating documents:** Use `lemon-docs create "Title"`, `lemon-sheets create "Title"`, etc. Do NOT open `docs.new`, `sheets.new`, or any `.new` domain.',
|
|
369
369
|
"",
|
|
370
|
-
"### Dynamic tool discovery (for
|
|
371
|
-
"
|
|
372
|
-
|
|
373
|
-
"
|
|
374
|
-
|
|
375
|
-
'
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
370
|
+
"### Dynamic tool discovery via `lemon-composio` (for ALL other services)",
|
|
371
|
+
"For ANY service not in the Integration CLI table above, `lemon-composio` is your universal tool. It supports 1000+ apps including Trello, Jira, Asana, HubSpot, Salesforce, LinkedIn, Todoist, Airtable, Monday.com, Zendesk, and more.",
|
|
372
|
+
"",
|
|
373
|
+
"**ALWAYS run this before saying you can't do something:**",
|
|
374
|
+
'```bash',
|
|
375
|
+
'lemon-composio search "<what the user wants>"',
|
|
376
|
+
'```',
|
|
377
|
+
"",
|
|
378
|
+
"Then based on results:",
|
|
379
|
+
'1. **Connected (`connected: true`)** → Execute immediately: `lemon-composio execute <TOOL_SLUG> \'{"param": "value"}\'`',
|
|
380
|
+
"2. **Not connected (`connected: false`)** → Tell user to connect and provide the `connectUrl` from the search result. Wait, then execute.",
|
|
381
|
+
"3. **No results** → Only THEN suggest alternatives or say the service isn't supported.",
|
|
382
|
+
"",
|
|
383
|
+
"Example flows:",
|
|
384
|
+
'- User: "add a card to my Trello board" → `lemon-composio search "create trello card"` → execute `TRELLO_CREATE_CARD`',
|
|
385
|
+
'- User: "create a Jira ticket for the login bug" → `lemon-composio search "create jira issue"` → execute `JIRA_CREATE_ISSUE`',
|
|
386
|
+
'- User: "post on LinkedIn" → `lemon-composio search "create linkedin post"` → execute `LINKEDIN_CREATE_POST`',
|
|
387
|
+
"",
|
|
388
|
+
"**Check what's connected:** `lemon-composio status`",
|
|
381
389
|
"",
|
|
382
390
|
"### Browser tool (Lemonade's dedicated browser only)",
|
|
383
391
|
"For general websites without a CLI tool, use Lemonade's dedicated `browser` tool (Playwright-managed).",
|
package/dist/build-info.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
42173a58a4afd4ad0ac48b1bd0afeb33e7b5e9ba6417012a71054186fee888f6
|
package/dist/cli/skills-cli.js
CHANGED
|
@@ -10,7 +10,7 @@ import { formatCliCommand } from "./command-format.js";
|
|
|
10
10
|
function appendClawdHubHint(output, json) {
|
|
11
11
|
if (json)
|
|
12
12
|
return output;
|
|
13
|
-
return
|
|
13
|
+
return output;
|
|
14
14
|
}
|
|
15
15
|
function formatSkillStatus(skill) {
|
|
16
16
|
if (skill.eligible)
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|