hermoso 0.1.182 → 0.1.183

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.
Files changed (2) hide show
  1. package/mcp/tools.mjs +3 -1
  2. package/package.json +1 -1
package/mcp/tools.mjs CHANGED
@@ -460,7 +460,9 @@ const geoLine = (r) => {
460
460
  const dims = d.deliveredWidth && d.deliveredHeight ? `${d.deliveredWidth}x${d.deliveredHeight}` : '';
461
461
  const bits = [dims, d.deliveredAspect, d.deliveredResolution].filter(Boolean);
462
462
  if (!bits.length && !d.deliveryNote) return '';
463
- return (bits.length ? `\nDelivered: ${bits.join(' · ')} (measured off the file)` : '') + (d.deliveryNote ? `\n⚠ ${d.deliveryNote}` : '');
463
+ // A worker's own disclosure rides the read-back (2026-09-01): the Multiplier reports `mechanism` (motion-transfer vs the
464
+ // video-edit fallback) and a `note` saying why — a caller who never sees them reads an edited take as a driven one.
465
+ return (bits.length ? `\nDelivered: ${bits.join(' · ')} (measured off the file)` : '') + (d.deliveryNote ? `\n⚠ ${d.deliveryNote}` : '') + (d.mechanism ? `\nMechanism: ${d.mechanism}` : '') + (d.note && d.note !== d.deliveryNote ? `\nℹ ${d.note}` : '');
464
466
  };
465
467
 
466
468
  // Shared outputSchema fields for the job-based render tools (the renderJob result that becomes structuredContent).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hermoso",
3
- "version": "0.1.182",
3
+ "version": "0.1.183",
4
4
  "mcpName": "io.github.hermoso-ai/hermoso",
5
5
  "description": "AI ad studio and marketing MCP server with 745 tools. Research the ads already running in any market, generate finished image, video and UGC avatar ads, publish and schedule them to your own channels, build and manage the ad campaigns behind them, and read what they achieved. AD PLATFORMS: Meta, Google Ads, TikTok Ads, LinkedIn Ads, Reddit Ads, X Ads, Pinterest Ads, Snapchat Ads, Microsoft Advertising, Apple Search Ads and ChatGPT Ads, plus product feeds in Google Merchant Center. PUBLISHING AND SCHEDULING: Facebook, Instagram, Threads, TikTok, YouTube, X, LinkedIn, Pinterest, Bluesky and Telegram. AD RESEARCH: the Meta, Google and LinkedIn ad libraries plus organic TikTok, Instagram, YouTube, Threads and Reddit. ANALYTICS: Google Analytics 4, Google Search Console and every connected platform's own post and campaign insights. Also brand onboarding, 50+ image and video generation models, ad scoring, competitor teardowns, Google Drive and OneDrive, a CLI and installable Claude skills.",
6
6
  "type": "module",