@mindstudio-ai/agent 0.1.18 → 0.1.20
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/cli.js +214 -72
- package/dist/index.d.ts +121 -17
- package/dist/index.js +178 -64
- package/dist/index.js.map +1 -1
- package/dist/postinstall.js +214 -72
- package/llms.txt +9 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -724,6 +724,15 @@ Scrape public profile data from an X (Twitter) account by URL.
|
|
|
724
724
|
- Input: `{ url: string }`
|
|
725
725
|
- Output: `{ profile: { text: string, html: string, json?: object, screenshotUrl?: string, metadata?: { title: string, description: string, url: string, image: string } } }`
|
|
726
726
|
|
|
727
|
+
#### screenshotUrl
|
|
728
|
+
Capture a screenshot of a web page as a PNG image.
|
|
729
|
+
- Takes a viewport or full-page screenshot of the given URL.
|
|
730
|
+
- Returns a CDN-hosted PNG image URL.
|
|
731
|
+
- Viewport mode captures only the visible area; fullPage captures the entire scrollable page.
|
|
732
|
+
- You can customize viewport width/height, add a delay, or wait for a CSS selector before capturing.
|
|
733
|
+
- Input: `{ url: string, mode?: "viewport" | "fullPage", width?: number, height?: number, delay?: number, waitFor?: string }`
|
|
734
|
+
- Output: `{ screenshotUrl: string }`
|
|
735
|
+
|
|
727
736
|
#### searchGmailEmails
|
|
728
737
|
Search for emails in the connected Gmail account using a Gmail search query. To list recent inbox emails, pass an empty query string.
|
|
729
738
|
- Requires a Google OAuth connection with Gmail readonly scope.
|