
Research
/Security News
Trivy Under Attack Again: Widespread GitHub Actions Tag Compromise Exposes CI/CD Secrets
Attackers compromised Trivy GitHub Actions by force-updating tags to deliver malware, exposing CI/CD secrets across affected pipelines.
@apify/apify-openclaw-plugin
Advanced tools
Web scraping and AI-powered data extraction via Apify for OpenClaw — market research, competitor intelligence, trend analysis, lead generation, e-commerce, social media analytics, and more.
Universal web scraping and data extraction via Apify — 57+ Actors across Instagram, Facebook, TikTok, YouTube, Google Maps, Google Search, e-commerce, and more.
openclaw plugins install @apify/apify-openclaw-plugin
Restart the Gateway after installation.
The plugin registers a single tool — apify — with three actions:
| Action | Purpose |
|---|---|
discover + query | Search the Apify Store for Actors by keyword |
discover + actorId | Fetch an Actor's input schema + README |
start + actorId + input | Run any Apify Actor, returns runId / datasetId |
collect + runs | Poll status and return results for completed runs |
The tool uses a two-phase async pattern: start fires off a run and returns immediately. collect fetches results when the run completes. The agent does other work in between.
APIFY_API_KEY environment variable.{
plugins: {
entries: {
"apify": {
config: {
apiKey: "apify_api_...", // optional if APIFY_API_KEY env var is set
baseUrl: "https://api.apify.com",
maxResults: 20,
enabledTools: [], // empty = all tools enabled
},
},
},
},
// Make the tool available to agents:
tools: {
alsoAllow: ["apify"], // or "apify" or "group:plugins"
},
}
Or use the interactive setup wizard:
openclaw apify setup
discover (search) → discover (schema) → start → collect
{ action: "discover", query: "amazon price scraper" }{ action: "discover", actorId: "apify~google-search-scraper" }{ action: "start", actorId: "apify~google-search-scraper", input: { queries: ["OpenAI"] } }{ action: "collect", runs: [{ runId: "...", actorId: "...", datasetId: "..." }] }Actor IDs use the username~actor-name format (tilde separator, not slash).
The tool description includes 57+ known Actors across these categories:
Most Actors accept arrays of URLs/queries in their input (e.g., startUrls, queries). Always batch multiple targets into a single run — one run with 5 URLs is cheaper and faster than 5 separate runs.
// 1. Search the Apify Store
const search = await apify({
action: "discover",
query: "linkedin company scraper",
});
// 2. Get an Actor's input schema
const schema = await apify({
action: "discover",
actorId: "compass~crawler-google-places",
});
// 3. Start a Google Search scrape
const started = await apify({
action: "start",
actorId: "apify~google-search-scraper",
input: { queries: ["OpenAI", "Anthropic"], maxPagesPerQuery: 1 },
label: "search",
});
// -> { runs: [{ runId, actorId, datasetId, status }] }
// 4. Collect results
const results = await apify({
action: "collect",
runs: started.runs,
});
// -> { completed: [...], pending: [...] }
// Instagram profile scraping
await apify({
action: "start",
actorId: "apify~instagram-profile-scraper",
input: { usernames: ["natgeo", "nasa"] },
});
// TikTok search
await apify({
action: "start",
actorId: "clockworks~tiktok-scraper",
input: { searchQueries: ["AI tools"], resultsPerPage: 20 },
});
The tool description instructs agents to delegate apify calls to a sub-agent. The sub-agent handles the full discover → start → collect workflow and returns only the relevant extracted data — not raw API responses or run metadata.
APIFY_API_KEY env var — never logged or included in output.https://api.apify.com prefix is allowed (SSRF prevention).# Install dependencies
npm install
# Type check
npx tsc --noEmit
# Run tests
npx vitest run
# Pack (dry run)
npm pack --dry-run
For issues with this integration, contact integrations@apify.com.
MIT
FAQs
Web scraping and AI-powered data extraction via Apify for OpenClaw — market research, competitor intelligence, trend analysis, lead generation, e-commerce, social media analytics, and more.
The npm package @apify/apify-openclaw-plugin receives a total of 22 weekly downloads. As such, @apify/apify-openclaw-plugin popularity was classified as not popular.
We found that @apify/apify-openclaw-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Attackers compromised Trivy GitHub Actions by force-updating tags to deliver malware, exposing CI/CD secrets across affected pipelines.

Security News
ENISA’s new package manager advisory outlines the dependency security practices companies will need to demonstrate as the EU’s Cyber Resilience Act begins enforcing software supply chain requirements.

Research
/Security News
We identified over 20 additional malicious extensions, along with over 20 related sleeper extensions, some of which have already been weaponized.