[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-apify-apify-actorization":3,"mdc-lcshj2-key":37,"related-repo-apify-apify-actorization":2033,"related-org-apify-apify-actorization":2100},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"apify-actorization","convert projects into Apify Actors","Convert existing projects into Apify Actors - serverless cloud programs. Actorize JavaScript\u002FTypeScript (SDK with Actor.init\u002Fexit), Python (async context manager), or any language (CLI wrapper). Use when migrating code to Apify, wrapping CLI tools as Actors, or adding Actor SDK to existing projects.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"apify","Apify","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fapify.png",[12,14,17,20,23],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"Automation","automation",{"name":18,"slug":19,"type":13},"Web Scraping","web-scraping",{"name":21,"slug":22,"type":13},"Migration","migration",{"name":24,"slug":25,"type":13},"Serverless","serverless",2231,"https:\u002F\u002Fgithub.com\u002Fapify\u002Fagent-skills","2026-04-06T18:00:46.151104",null,244,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"Collection of Apify Agent Skills","https:\u002F\u002Fgithub.com\u002Fapify\u002Fagent-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fapify-actorization","---\nname: apify-actorization\ndescription: Convert existing projects into Apify Actors - serverless cloud programs. Actorize JavaScript\u002FTypeScript (SDK with Actor.init\u002Fexit), Python (async context manager), or any language (CLI wrapper). Use when migrating code to Apify, wrapping CLI tools as Actors, or adding Actor SDK to existing projects.\n---\n\n# Apify Actorization\n\nActorization converts existing software into reusable serverless applications compatible with the Apify platform. Actors are programs packaged as Docker images that accept well-defined JSON input, perform an action, and optionally produce structured JSON output.\n\n## Quick start\n\n1. Run `apify init` in project root\n2. Wrap code with SDK lifecycle (see language-specific section below)\n3. Configure `.actor\u002Finput_schema.json`\n4. Test with `apify run --input '{\"key\": \"value\"}'`\n5. Deploy with `apify push`\n\n## When to use this skill\n\n- Converting an existing project to run on the Apify platform\n- Adding Apify SDK integration to a project\n- Wrapping a CLI tool or script as an Actor\n- Migrating a Crawlee project to Apify\n\n## Prerequisites\n\nVerify `apify` CLI is installed:\n\n```bash\napify --help\n```\n\nIf not installed, use one of these methods (listed in order of preference):\n\n```bash\n# Preferred: install via a package manager (provides integrity checks)\nnpm install -g apify-cli\n\n# Or (Mac): brew install apify-cli\n```\n\n> **Security note:** Do NOT install the CLI by piping remote scripts to a shell\n> (e.g. `curl ... | bash` or `irm ... | iex`). Always use a package manager.\n\nVerify CLI is logged in:\n\n```bash\napify info  # Should return your username\n```\n\nIf not logged in, authenticate using OAuth (opens browser):\n\n```bash\napify login\n```\n\nIf browser login isn't available (headless environment or CI), ensure the `APIFY_TOKEN` environment variable is exported (note: the variable is `APIFY_TOKEN`, not `APIFY_API_TOKEN`). The CLI reads it automatically - no explicit login needed. If the user doesn't have a token, generate one at https:\u002F\u002Fconsole.apify.com\u002Fsettings\u002Fintegrations.\n\n> **Apify platform environment:** When the Actor runs on the Apify platform, `APIFY_TOKEN` is auto-injected as an environment variable and the Apify SDK reads it automatically — you do not need to pass it explicitly. Locally, `apify login` stores credentials in `~\u002F.apify` and the SDK uses them.\n\n> **Security note:** Avoid passing tokens as command-line arguments (e.g. `apify login -t \u003Ctoken>`).\n> Arguments are visible in process listings and may be recorded in shell history.\n> Prefer OAuth login or environment variables instead.\n> Never log, print, or embed `APIFY_TOKEN` in source code or configuration files.\n> Use a token with the minimum required permissions (scoped token) and rotate it periodically.\n\n## Actorization checklist\n\nCopy this checklist to track progress:\n\n- [ ] Step 1: Analyze project (language, entry point, inputs, outputs)\n- [ ] Step 2: Run `apify init` to create Actor structure\n- [ ] Step 3: Apply language-specific SDK integration\n- [ ] Step 4: Configure `.actor\u002Finput_schema.json`\n- [ ] Step 5: Configure `.actor\u002Foutput_schema.json` (if applicable)\n- [ ] Step 6: Update `.actor\u002Factor.json` metadata\n- [ ] Step 7: Write README.md for Apify Store listing\n- [ ] Step 8: Test locally with `apify run`\n- [ ] Step 9: Deploy with `apify push`\n\n## Step 1: Analyze the project\n\nBefore making changes, understand the project:\n\n1. **Identify the language** - JavaScript\u002FTypeScript, Python, or other\n2. **Find the entry point** - The main file that starts execution\n3. **Identify inputs** - Command-line arguments, environment variables, config files\n4. **Identify outputs** - Files, console output, API responses\n5. **Check for state** - Does it need to persist data between runs?\n\n## Step 2: Initialize Actor structure\n\nRun in the project root:\n\n```bash\napify init\n```\n\nThis creates:\n- `.actor\u002Factor.json` - Actor configuration and metadata\n- `.actor\u002Finput_schema.json` - Input definition for Apify Console\n- `Dockerfile` (if not present) - Container image definition\n\n## Step 3: Apply language-specific changes\n\nChoose based on your project's language:\n\n- **JavaScript\u002FTypeScript**: See [js-ts-actorization.md](references\u002Fjs-ts-actorization.md)\n- **Python**: See [python-actorization.md](references\u002Fpython-actorization.md)\n- **Other Languages (CLI-based)**: See [cli-actorization.md](references\u002Fcli-actorization.md)\n\n### Quick reference\n\n| Language | Install | Wrap Code |\n|----------|---------|-----------|\n| JS\u002FTS | `npm install apify` | `await Actor.init()` ... `await Actor.exit()` |\n| Python | `pip install apify` | `async with Actor:` |\n| Other | Use CLI in wrapper script | `apify actor:get-input` \u002F `apify actor:push-data` |\n\n## Steps 4-6: Configure schemas\n\nSee [schemas-and-output.md](references\u002Fschemas-and-output.md) for detailed configuration of:\n- Input schema (`.actor\u002Finput_schema.json`)\n- Output schema (`.actor\u002Foutput_schema.json`)\n- Actor configuration (`.actor\u002Factor.json`)\n- State management (request queues, key-value stores)\n\nValidate schemas against `@apify\u002Fjson_schemas` npm package.\n\n## Step 7: Write README\n\n**IMPORTANT:** Always generate a README.md as part of actorization. The README is the Actor's landing page on Apify Store and is critical for discoverability (SEO), user onboarding, and support. Do not consider an Actor complete without a proper README.\n\nSee the Actor README guidelines at `skills\u002Fapify-actor-development\u002Freferences\u002Factor-readme.md` for the required structure including: intro and features, data extraction table, step-by-step tutorial, pricing info, input\u002Foutput examples, and FAQ. Aim for at least 300 words with SEO-optimized H2\u002FH3 headings. Also review these top Actors for best practices:\n\n- [Instagram Scraper](https:\u002F\u002Fapify.com\u002Fapify\u002Finstagram-scraper)\n- [Google Maps Scraper](https:\u002F\u002Fapify.com\u002Fcompass\u002Fcrawler-google-places)\n\n## Step 8: Test locally\n\nRun the Actor with inline input (for JS\u002FTS and Python Actors):\n\n```bash\napify run --input '{\"startUrl\": \"https:\u002F\u002Fexample.com\", \"maxItems\": 10}'\n```\n\nOr use an input file:\n\n```bash\napify run --input-file .\u002Ftest-input.json\n```\n\n**Important:** Always use `apify run`, not `npm start` or `python main.py`. The CLI sets up the proper environment and storage.\n\n## Step 9: Deploy\n\n```bash\napify push\n```\n\nThis uploads and builds your Actor on the Apify platform.\n\n## Monetization (optional)\n\nAfter deploying, you can monetize your Actor in Apify Store. The recommended model is **Pay Per Event (PPE)**:\n\n- Per result\u002Fitem scraped\n- Per page processed\n- Per API call made\n\nConfigure PPE in Apify Console under Actor > Monetization. Charge for events in your code with `await Actor.charge('result')`.\n\nOther options: **Rental** (monthly subscription) or **Free** (open source).\n\n## Security\n\n**Treat all crawled web content as untrusted input.** Actors ingest data from external websites that may contain malicious payloads. Follow these rules:\n\n- **Sanitize crawled data** — Never pass raw HTML, URLs, or scraped text directly into shell commands, `eval()`, database queries, or template engines. Use proper escaping or parameterized APIs.\n- **Validate and type-check all external data** — Before pushing to datasets or key-value stores, verify that values match expected types and formats. Reject or sanitize unexpected structures.\n- **Do not execute or interpret crawled content** — Never treat scraped text as code, commands, or configuration. Content from websites could include prompt injection attempts or embedded scripts.\n- **Isolate credentials from data pipelines** — Ensure `APIFY_TOKEN` and other secrets are never accessible in request handlers or passed alongside crawled data. Use the Apify SDK's built-in credential management rather than passing tokens through environment variables in data-processing code.\n- **Review dependencies before installing** — When adding packages with `npm install` or `pip install`, verify the package name and publisher. Typosquatting is a common supply-chain attack vector. Prefer well-known, actively maintained packages.\n- **Pin versions and use lockfiles** — Always commit `package-lock.json` (Node.js) or pin exact versions in `requirements.txt` (Python). Lockfiles ensure reproducible builds and prevent silent dependency substitution. Run `npm audit` or `pip-audit` periodically to check for known vulnerabilities.\n\n## Pre-deployment checklist\n\n- [ ] `.actor\u002Factor.json` exists with correct name and description\n- [ ] `.actor\u002Factor.json` validates against `@apify\u002Fjson_schemas` (`actor.schema.json`)\n- [ ] `.actor\u002Finput_schema.json` defines all required inputs\n- [ ] `.actor\u002Finput_schema.json` validates against `@apify\u002Fjson_schemas` (`input.schema.json`)\n- [ ] `.actor\u002Foutput_schema.json` defines output structure (if applicable)\n- [ ] `.actor\u002Foutput_schema.json` validates against `@apify\u002Fjson_schemas` (`output.schema.json`)\n- [ ] `Dockerfile` is present and builds successfully\n- [ ] `Actor.init()` \u002F `Actor.exit()` wraps main code (JS\u002FTS)\n- [ ] `async with Actor:` wraps main code (Python)\n- [ ] Inputs are read via `Actor.getInput()` \u002F `Actor.get_input()`\n- [ ] Outputs use `Actor.pushData()` or key-value store\n- [ ] `apify run` executes successfully with test input\n- [ ] `README.md` exists with proper structure (intro, features, data table, tutorial, pricing, input\u002Foutput examples)\n- [ ] `generatedBy` is set in actor.json meta section\n\n## MCP tools\n\n### Apify MCP\n\nIf the Apify MCP server is configured, use these tools for documentation:\n\n- `search-apify-docs` - Search documentation\n- `fetch-apify-docs` - Get full doc pages\n\nOtherwise, the MCP Server url: `https:\u002F\u002Fmcp.apify.com\u002F?tools=docs`.\n\n### Playwright MCP (debugging)\n\nThe Playwright MCP server is a useful tool for debugging Actors that interact with the web - it lets the agent drive a real browser to inspect pages, capture selectors, and reproduce issues.\n\nInstall with the Claude Code CLI:\n\n```bash\nclaude mcp add playwright npx @playwright\u002Fmcp@latest\n```\n\nOr add it manually to your MCP config:\n\n```json\n{\n  \"mcpServers\": {\n    \"playwright\": {\n      \"command\": \"npx\",\n      \"args\": [\"@playwright\u002Fmcp@latest\"]\n    }\n  }\n}\n```\n\n## Resources\n\n- [Actorization Academy](https:\u002F\u002Fdocs.apify.com\u002Facademy\u002Factorization) - Comprehensive guide\n- [Apify SDK for JavaScript](https:\u002F\u002Fdocs.apify.com\u002Fsdk\u002Fjs) - Full SDK reference\n- [Apify SDK for Python](https:\u002F\u002Fdocs.apify.com\u002Fsdk\u002Fpython) - Full SDK reference\n- [Apify CLI Reference](https:\u002F\u002Fdocs.apify.com\u002Fcli) - CLI commands\n- [Actor Specification](https:\u002F\u002Fraw.githubusercontent.com\u002Fapify\u002Factor-whitepaper\u002Frefs\u002Fheads\u002Fmaster\u002FREADME.md) - Complete specification\n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,50,56,63,120,126,150,156,168,196,201,260,291,296,320,325,344,382,418,445,451,456,584,590,595,648,654,659,678,683,717,723,728,777,784,906,912,925,967,980,986,996,1009,1032,1038,1043,1083,1088,1116,1147,1153,1172,1177,1183,1195,1213,1225,1244,1250,1260,1384,1390,1662,1668,1674,1679,1704,1716,1722,1727,1732,1772,1777,1959,1965,2027],{"type":43,"tag":44,"props":45,"children":46},"element","h1",{"id":4},[47],{"type":48,"value":49},"text","Apify Actorization",{"type":43,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Actorization converts existing software into reusable serverless applications compatible with the Apify platform. Actors are programs packaged as Docker images that accept well-defined JSON input, perform an action, and optionally produce structured JSON output.",{"type":43,"tag":57,"props":58,"children":60},"h2",{"id":59},"quick-start",[61],{"type":48,"value":62},"Quick start",{"type":43,"tag":64,"props":65,"children":66},"ol",{},[67,82,87,98,109],{"type":43,"tag":68,"props":69,"children":70},"li",{},[71,73,80],{"type":48,"value":72},"Run ",{"type":43,"tag":74,"props":75,"children":77},"code",{"className":76},[],[78],{"type":48,"value":79},"apify init",{"type":48,"value":81}," in project root",{"type":43,"tag":68,"props":83,"children":84},{},[85],{"type":48,"value":86},"Wrap code with SDK lifecycle (see language-specific section below)",{"type":43,"tag":68,"props":88,"children":89},{},[90,92],{"type":48,"value":91},"Configure ",{"type":43,"tag":74,"props":93,"children":95},{"className":94},[],[96],{"type":48,"value":97},".actor\u002Finput_schema.json",{"type":43,"tag":68,"props":99,"children":100},{},[101,103],{"type":48,"value":102},"Test with ",{"type":43,"tag":74,"props":104,"children":106},{"className":105},[],[107],{"type":48,"value":108},"apify run --input '{\"key\": \"value\"}'",{"type":43,"tag":68,"props":110,"children":111},{},[112,114],{"type":48,"value":113},"Deploy with ",{"type":43,"tag":74,"props":115,"children":117},{"className":116},[],[118],{"type":48,"value":119},"apify push",{"type":43,"tag":57,"props":121,"children":123},{"id":122},"when-to-use-this-skill",[124],{"type":48,"value":125},"When to use this skill",{"type":43,"tag":127,"props":128,"children":129},"ul",{},[130,135,140,145],{"type":43,"tag":68,"props":131,"children":132},{},[133],{"type":48,"value":134},"Converting an existing project to run on the Apify platform",{"type":43,"tag":68,"props":136,"children":137},{},[138],{"type":48,"value":139},"Adding Apify SDK integration to a project",{"type":43,"tag":68,"props":141,"children":142},{},[143],{"type":48,"value":144},"Wrapping a CLI tool or script as an Actor",{"type":43,"tag":68,"props":146,"children":147},{},[148],{"type":48,"value":149},"Migrating a Crawlee project to Apify",{"type":43,"tag":57,"props":151,"children":153},{"id":152},"prerequisites",[154],{"type":48,"value":155},"Prerequisites",{"type":43,"tag":51,"props":157,"children":158},{},[159,161,166],{"type":48,"value":160},"Verify ",{"type":43,"tag":74,"props":162,"children":164},{"className":163},[],[165],{"type":48,"value":8},{"type":48,"value":167}," CLI is installed:",{"type":43,"tag":169,"props":170,"children":175},"pre",{"className":171,"code":172,"language":173,"meta":174,"style":174},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","apify --help\n","bash","",[176],{"type":43,"tag":74,"props":177,"children":178},{"__ignoreMap":174},[179],{"type":43,"tag":180,"props":181,"children":184},"span",{"class":182,"line":183},"line",1,[185,190],{"type":43,"tag":180,"props":186,"children":188},{"style":187},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[189],{"type":48,"value":8},{"type":43,"tag":180,"props":191,"children":193},{"style":192},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[194],{"type":48,"value":195}," --help\n",{"type":43,"tag":51,"props":197,"children":198},{},[199],{"type":48,"value":200},"If not installed, use one of these methods (listed in order of preference):",{"type":43,"tag":169,"props":202,"children":204},{"className":171,"code":203,"language":173,"meta":174,"style":174},"# Preferred: install via a package manager (provides integrity checks)\nnpm install -g apify-cli\n\n# Or (Mac): brew install apify-cli\n",[205],{"type":43,"tag":74,"props":206,"children":207},{"__ignoreMap":174},[208,217,241,251],{"type":43,"tag":180,"props":209,"children":210},{"class":182,"line":183},[211],{"type":43,"tag":180,"props":212,"children":214},{"style":213},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[215],{"type":48,"value":216},"# Preferred: install via a package manager (provides integrity checks)\n",{"type":43,"tag":180,"props":218,"children":220},{"class":182,"line":219},2,[221,226,231,236],{"type":43,"tag":180,"props":222,"children":223},{"style":187},[224],{"type":48,"value":225},"npm",{"type":43,"tag":180,"props":227,"children":228},{"style":192},[229],{"type":48,"value":230}," install",{"type":43,"tag":180,"props":232,"children":233},{"style":192},[234],{"type":48,"value":235}," -g",{"type":43,"tag":180,"props":237,"children":238},{"style":192},[239],{"type":48,"value":240}," apify-cli\n",{"type":43,"tag":180,"props":242,"children":244},{"class":182,"line":243},3,[245],{"type":43,"tag":180,"props":246,"children":248},{"emptyLinePlaceholder":247},true,[249],{"type":48,"value":250},"\n",{"type":43,"tag":180,"props":252,"children":254},{"class":182,"line":253},4,[255],{"type":43,"tag":180,"props":256,"children":257},{"style":213},[258],{"type":48,"value":259},"# Or (Mac): brew install apify-cli\n",{"type":43,"tag":261,"props":262,"children":263},"blockquote",{},[264],{"type":43,"tag":51,"props":265,"children":266},{},[267,273,275,281,283,289],{"type":43,"tag":268,"props":269,"children":270},"strong",{},[271],{"type":48,"value":272},"Security note:",{"type":48,"value":274}," Do NOT install the CLI by piping remote scripts to a shell\n(e.g. ",{"type":43,"tag":74,"props":276,"children":278},{"className":277},[],[279],{"type":48,"value":280},"curl ... | bash",{"type":48,"value":282}," or ",{"type":43,"tag":74,"props":284,"children":286},{"className":285},[],[287],{"type":48,"value":288},"irm ... | iex",{"type":48,"value":290},"). Always use a package manager.",{"type":43,"tag":51,"props":292,"children":293},{},[294],{"type":48,"value":295},"Verify CLI is logged in:",{"type":43,"tag":169,"props":297,"children":299},{"className":171,"code":298,"language":173,"meta":174,"style":174},"apify info  # Should return your username\n",[300],{"type":43,"tag":74,"props":301,"children":302},{"__ignoreMap":174},[303],{"type":43,"tag":180,"props":304,"children":305},{"class":182,"line":183},[306,310,315],{"type":43,"tag":180,"props":307,"children":308},{"style":187},[309],{"type":48,"value":8},{"type":43,"tag":180,"props":311,"children":312},{"style":192},[313],{"type":48,"value":314}," info",{"type":43,"tag":180,"props":316,"children":317},{"style":213},[318],{"type":48,"value":319},"  # Should return your username\n",{"type":43,"tag":51,"props":321,"children":322},{},[323],{"type":48,"value":324},"If not logged in, authenticate using OAuth (opens browser):",{"type":43,"tag":169,"props":326,"children":328},{"className":171,"code":327,"language":173,"meta":174,"style":174},"apify login\n",[329],{"type":43,"tag":74,"props":330,"children":331},{"__ignoreMap":174},[332],{"type":43,"tag":180,"props":333,"children":334},{"class":182,"line":183},[335,339],{"type":43,"tag":180,"props":336,"children":337},{"style":187},[338],{"type":48,"value":8},{"type":43,"tag":180,"props":340,"children":341},{"style":192},[342],{"type":48,"value":343}," login\n",{"type":43,"tag":51,"props":345,"children":346},{},[347,349,355,357,362,364,370,372,380],{"type":48,"value":348},"If browser login isn't available (headless environment or CI), ensure the ",{"type":43,"tag":74,"props":350,"children":352},{"className":351},[],[353],{"type":48,"value":354},"APIFY_TOKEN",{"type":48,"value":356}," environment variable is exported (note: the variable is ",{"type":43,"tag":74,"props":358,"children":360},{"className":359},[],[361],{"type":48,"value":354},{"type":48,"value":363},", not ",{"type":43,"tag":74,"props":365,"children":367},{"className":366},[],[368],{"type":48,"value":369},"APIFY_API_TOKEN",{"type":48,"value":371},"). The CLI reads it automatically - no explicit login needed. If the user doesn't have a token, generate one at ",{"type":43,"tag":373,"props":374,"children":378},"a",{"href":375,"rel":376},"https:\u002F\u002Fconsole.apify.com\u002Fsettings\u002Fintegrations",[377],"nofollow",[379],{"type":48,"value":375},{"type":48,"value":381},".",{"type":43,"tag":261,"props":383,"children":384},{},[385],{"type":43,"tag":51,"props":386,"children":387},{},[388,393,395,400,402,408,410,416],{"type":43,"tag":268,"props":389,"children":390},{},[391],{"type":48,"value":392},"Apify platform environment:",{"type":48,"value":394}," When the Actor runs on the Apify platform, ",{"type":43,"tag":74,"props":396,"children":398},{"className":397},[],[399],{"type":48,"value":354},{"type":48,"value":401}," is auto-injected as an environment variable and the Apify SDK reads it automatically — you do not need to pass it explicitly. Locally, ",{"type":43,"tag":74,"props":403,"children":405},{"className":404},[],[406],{"type":48,"value":407},"apify login",{"type":48,"value":409}," stores credentials in ",{"type":43,"tag":74,"props":411,"children":413},{"className":412},[],[414],{"type":48,"value":415},"~\u002F.apify",{"type":48,"value":417}," and the SDK uses them.",{"type":43,"tag":261,"props":419,"children":420},{},[421],{"type":43,"tag":51,"props":422,"children":423},{},[424,428,430,436,438,443],{"type":43,"tag":268,"props":425,"children":426},{},[427],{"type":48,"value":272},{"type":48,"value":429}," Avoid passing tokens as command-line arguments (e.g. ",{"type":43,"tag":74,"props":431,"children":433},{"className":432},[],[434],{"type":48,"value":435},"apify login -t \u003Ctoken>",{"type":48,"value":437},").\nArguments are visible in process listings and may be recorded in shell history.\nPrefer OAuth login or environment variables instead.\nNever log, print, or embed ",{"type":43,"tag":74,"props":439,"children":441},{"className":440},[],[442],{"type":48,"value":354},{"type":48,"value":444}," in source code or configuration files.\nUse a token with the minimum required permissions (scoped token) and rotate it periodically.",{"type":43,"tag":57,"props":446,"children":448},{"id":447},"actorization-checklist",[449],{"type":48,"value":450},"Actorization checklist",{"type":43,"tag":51,"props":452,"children":453},{},[454],{"type":48,"value":455},"Copy this checklist to track progress:",{"type":43,"tag":127,"props":457,"children":460},{"className":458},[459],"contains-task-list",[461,473,489,498,512,529,546,555,570],{"type":43,"tag":68,"props":462,"children":465},{"className":463},[464],"task-list-item",[466,471],{"type":43,"tag":467,"props":468,"children":470},"input",{"disabled":247,"type":469},"checkbox",[],{"type":48,"value":472}," Step 1: Analyze project (language, entry point, inputs, outputs)",{"type":43,"tag":68,"props":474,"children":476},{"className":475},[464],[477,480,482,487],{"type":43,"tag":467,"props":478,"children":479},{"disabled":247,"type":469},[],{"type":48,"value":481}," Step 2: Run ",{"type":43,"tag":74,"props":483,"children":485},{"className":484},[],[486],{"type":48,"value":79},{"type":48,"value":488}," to create Actor structure",{"type":43,"tag":68,"props":490,"children":492},{"className":491},[464],[493,496],{"type":43,"tag":467,"props":494,"children":495},{"disabled":247,"type":469},[],{"type":48,"value":497}," Step 3: Apply language-specific SDK integration",{"type":43,"tag":68,"props":499,"children":501},{"className":500},[464],[502,505,507],{"type":43,"tag":467,"props":503,"children":504},{"disabled":247,"type":469},[],{"type":48,"value":506}," Step 4: Configure ",{"type":43,"tag":74,"props":508,"children":510},{"className":509},[],[511],{"type":48,"value":97},{"type":43,"tag":68,"props":513,"children":515},{"className":514},[464],[516,519,521,527],{"type":43,"tag":467,"props":517,"children":518},{"disabled":247,"type":469},[],{"type":48,"value":520}," Step 5: Configure ",{"type":43,"tag":74,"props":522,"children":524},{"className":523},[],[525],{"type":48,"value":526},".actor\u002Foutput_schema.json",{"type":48,"value":528}," (if applicable)",{"type":43,"tag":68,"props":530,"children":532},{"className":531},[464],[533,536,538,544],{"type":43,"tag":467,"props":534,"children":535},{"disabled":247,"type":469},[],{"type":48,"value":537}," Step 6: Update ",{"type":43,"tag":74,"props":539,"children":541},{"className":540},[],[542],{"type":48,"value":543},".actor\u002Factor.json",{"type":48,"value":545}," metadata",{"type":43,"tag":68,"props":547,"children":549},{"className":548},[464],[550,553],{"type":43,"tag":467,"props":551,"children":552},{"disabled":247,"type":469},[],{"type":48,"value":554}," Step 7: Write README.md for Apify Store listing",{"type":43,"tag":68,"props":556,"children":558},{"className":557},[464],[559,562,564],{"type":43,"tag":467,"props":560,"children":561},{"disabled":247,"type":469},[],{"type":48,"value":563}," Step 8: Test locally with ",{"type":43,"tag":74,"props":565,"children":567},{"className":566},[],[568],{"type":48,"value":569},"apify run",{"type":43,"tag":68,"props":571,"children":573},{"className":572},[464],[574,577,579],{"type":43,"tag":467,"props":575,"children":576},{"disabled":247,"type":469},[],{"type":48,"value":578}," Step 9: Deploy with ",{"type":43,"tag":74,"props":580,"children":582},{"className":581},[],[583],{"type":48,"value":119},{"type":43,"tag":57,"props":585,"children":587},{"id":586},"step-1-analyze-the-project",[588],{"type":48,"value":589},"Step 1: Analyze the project",{"type":43,"tag":51,"props":591,"children":592},{},[593],{"type":48,"value":594},"Before making changes, understand the project:",{"type":43,"tag":64,"props":596,"children":597},{},[598,608,618,628,638],{"type":43,"tag":68,"props":599,"children":600},{},[601,606],{"type":43,"tag":268,"props":602,"children":603},{},[604],{"type":48,"value":605},"Identify the language",{"type":48,"value":607}," - JavaScript\u002FTypeScript, Python, or other",{"type":43,"tag":68,"props":609,"children":610},{},[611,616],{"type":43,"tag":268,"props":612,"children":613},{},[614],{"type":48,"value":615},"Find the entry point",{"type":48,"value":617}," - The main file that starts execution",{"type":43,"tag":68,"props":619,"children":620},{},[621,626],{"type":43,"tag":268,"props":622,"children":623},{},[624],{"type":48,"value":625},"Identify inputs",{"type":48,"value":627}," - Command-line arguments, environment variables, config files",{"type":43,"tag":68,"props":629,"children":630},{},[631,636],{"type":43,"tag":268,"props":632,"children":633},{},[634],{"type":48,"value":635},"Identify outputs",{"type":48,"value":637}," - Files, console output, API responses",{"type":43,"tag":68,"props":639,"children":640},{},[641,646],{"type":43,"tag":268,"props":642,"children":643},{},[644],{"type":48,"value":645},"Check for state",{"type":48,"value":647}," - Does it need to persist data between runs?",{"type":43,"tag":57,"props":649,"children":651},{"id":650},"step-2-initialize-actor-structure",[652],{"type":48,"value":653},"Step 2: Initialize Actor structure",{"type":43,"tag":51,"props":655,"children":656},{},[657],{"type":48,"value":658},"Run in the project root:",{"type":43,"tag":169,"props":660,"children":662},{"className":171,"code":661,"language":173,"meta":174,"style":174},"apify init\n",[663],{"type":43,"tag":74,"props":664,"children":665},{"__ignoreMap":174},[666],{"type":43,"tag":180,"props":667,"children":668},{"class":182,"line":183},[669,673],{"type":43,"tag":180,"props":670,"children":671},{"style":187},[672],{"type":48,"value":8},{"type":43,"tag":180,"props":674,"children":675},{"style":192},[676],{"type":48,"value":677}," init\n",{"type":43,"tag":51,"props":679,"children":680},{},[681],{"type":48,"value":682},"This creates:",{"type":43,"tag":127,"props":684,"children":685},{},[686,696,706],{"type":43,"tag":68,"props":687,"children":688},{},[689,694],{"type":43,"tag":74,"props":690,"children":692},{"className":691},[],[693],{"type":48,"value":543},{"type":48,"value":695}," - Actor configuration and metadata",{"type":43,"tag":68,"props":697,"children":698},{},[699,704],{"type":43,"tag":74,"props":700,"children":702},{"className":701},[],[703],{"type":48,"value":97},{"type":48,"value":705}," - Input definition for Apify Console",{"type":43,"tag":68,"props":707,"children":708},{},[709,715],{"type":43,"tag":74,"props":710,"children":712},{"className":711},[],[713],{"type":48,"value":714},"Dockerfile",{"type":48,"value":716}," (if not present) - Container image definition",{"type":43,"tag":57,"props":718,"children":720},{"id":719},"step-3-apply-language-specific-changes",[721],{"type":48,"value":722},"Step 3: Apply language-specific changes",{"type":43,"tag":51,"props":724,"children":725},{},[726],{"type":48,"value":727},"Choose based on your project's language:",{"type":43,"tag":127,"props":729,"children":730},{},[731,747,762],{"type":43,"tag":68,"props":732,"children":733},{},[734,739,741],{"type":43,"tag":268,"props":735,"children":736},{},[737],{"type":48,"value":738},"JavaScript\u002FTypeScript",{"type":48,"value":740},": See ",{"type":43,"tag":373,"props":742,"children":744},{"href":743},"references\u002Fjs-ts-actorization.md",[745],{"type":48,"value":746},"js-ts-actorization.md",{"type":43,"tag":68,"props":748,"children":749},{},[750,755,756],{"type":43,"tag":268,"props":751,"children":752},{},[753],{"type":48,"value":754},"Python",{"type":48,"value":740},{"type":43,"tag":373,"props":757,"children":759},{"href":758},"references\u002Fpython-actorization.md",[760],{"type":48,"value":761},"python-actorization.md",{"type":43,"tag":68,"props":763,"children":764},{},[765,770,771],{"type":43,"tag":268,"props":766,"children":767},{},[768],{"type":48,"value":769},"Other Languages (CLI-based)",{"type":48,"value":740},{"type":43,"tag":373,"props":772,"children":774},{"href":773},"references\u002Fcli-actorization.md",[775],{"type":48,"value":776},"cli-actorization.md",{"type":43,"tag":778,"props":779,"children":781},"h3",{"id":780},"quick-reference",[782],{"type":48,"value":783},"Quick reference",{"type":43,"tag":785,"props":786,"children":787},"table",{},[788,812],{"type":43,"tag":789,"props":790,"children":791},"thead",{},[792],{"type":43,"tag":793,"props":794,"children":795},"tr",{},[796,802,807],{"type":43,"tag":797,"props":798,"children":799},"th",{},[800],{"type":48,"value":801},"Language",{"type":43,"tag":797,"props":803,"children":804},{},[805],{"type":48,"value":806},"Install",{"type":43,"tag":797,"props":808,"children":809},{},[810],{"type":48,"value":811},"Wrap Code",{"type":43,"tag":813,"props":814,"children":815},"tbody",{},[816,851,876],{"type":43,"tag":793,"props":817,"children":818},{},[819,825,834],{"type":43,"tag":820,"props":821,"children":822},"td",{},[823],{"type":48,"value":824},"JS\u002FTS",{"type":43,"tag":820,"props":826,"children":827},{},[828],{"type":43,"tag":74,"props":829,"children":831},{"className":830},[],[832],{"type":48,"value":833},"npm install apify",{"type":43,"tag":820,"props":835,"children":836},{},[837,843,845],{"type":43,"tag":74,"props":838,"children":840},{"className":839},[],[841],{"type":48,"value":842},"await Actor.init()",{"type":48,"value":844}," ... ",{"type":43,"tag":74,"props":846,"children":848},{"className":847},[],[849],{"type":48,"value":850},"await Actor.exit()",{"type":43,"tag":793,"props":852,"children":853},{},[854,858,867],{"type":43,"tag":820,"props":855,"children":856},{},[857],{"type":48,"value":754},{"type":43,"tag":820,"props":859,"children":860},{},[861],{"type":43,"tag":74,"props":862,"children":864},{"className":863},[],[865],{"type":48,"value":866},"pip install apify",{"type":43,"tag":820,"props":868,"children":869},{},[870],{"type":43,"tag":74,"props":871,"children":873},{"className":872},[],[874],{"type":48,"value":875},"async with Actor:",{"type":43,"tag":793,"props":877,"children":878},{},[879,884,889],{"type":43,"tag":820,"props":880,"children":881},{},[882],{"type":48,"value":883},"Other",{"type":43,"tag":820,"props":885,"children":886},{},[887],{"type":48,"value":888},"Use CLI in wrapper script",{"type":43,"tag":820,"props":890,"children":891},{},[892,898,900],{"type":43,"tag":74,"props":893,"children":895},{"className":894},[],[896],{"type":48,"value":897},"apify actor:get-input",{"type":48,"value":899}," \u002F ",{"type":43,"tag":74,"props":901,"children":903},{"className":902},[],[904],{"type":48,"value":905},"apify actor:push-data",{"type":43,"tag":57,"props":907,"children":909},{"id":908},"steps-4-6-configure-schemas",[910],{"type":48,"value":911},"Steps 4-6: Configure schemas",{"type":43,"tag":51,"props":913,"children":914},{},[915,917,923],{"type":48,"value":916},"See ",{"type":43,"tag":373,"props":918,"children":920},{"href":919},"references\u002Fschemas-and-output.md",[921],{"type":48,"value":922},"schemas-and-output.md",{"type":48,"value":924}," for detailed configuration of:",{"type":43,"tag":127,"props":926,"children":927},{},[928,940,951,962],{"type":43,"tag":68,"props":929,"children":930},{},[931,933,938],{"type":48,"value":932},"Input schema (",{"type":43,"tag":74,"props":934,"children":936},{"className":935},[],[937],{"type":48,"value":97},{"type":48,"value":939},")",{"type":43,"tag":68,"props":941,"children":942},{},[943,945,950],{"type":48,"value":944},"Output schema (",{"type":43,"tag":74,"props":946,"children":948},{"className":947},[],[949],{"type":48,"value":526},{"type":48,"value":939},{"type":43,"tag":68,"props":952,"children":953},{},[954,956,961],{"type":48,"value":955},"Actor configuration (",{"type":43,"tag":74,"props":957,"children":959},{"className":958},[],[960],{"type":48,"value":543},{"type":48,"value":939},{"type":43,"tag":68,"props":963,"children":964},{},[965],{"type":48,"value":966},"State management (request queues, key-value stores)",{"type":43,"tag":51,"props":968,"children":969},{},[970,972,978],{"type":48,"value":971},"Validate schemas against ",{"type":43,"tag":74,"props":973,"children":975},{"className":974},[],[976],{"type":48,"value":977},"@apify\u002Fjson_schemas",{"type":48,"value":979}," npm package.",{"type":43,"tag":57,"props":981,"children":983},{"id":982},"step-7-write-readme",[984],{"type":48,"value":985},"Step 7: Write README",{"type":43,"tag":51,"props":987,"children":988},{},[989,994],{"type":43,"tag":268,"props":990,"children":991},{},[992],{"type":48,"value":993},"IMPORTANT:",{"type":48,"value":995}," Always generate a README.md as part of actorization. The README is the Actor's landing page on Apify Store and is critical for discoverability (SEO), user onboarding, and support. Do not consider an Actor complete without a proper README.",{"type":43,"tag":51,"props":997,"children":998},{},[999,1001,1007],{"type":48,"value":1000},"See the Actor README guidelines at ",{"type":43,"tag":74,"props":1002,"children":1004},{"className":1003},[],[1005],{"type":48,"value":1006},"skills\u002Fapify-actor-development\u002Freferences\u002Factor-readme.md",{"type":48,"value":1008}," for the required structure including: intro and features, data extraction table, step-by-step tutorial, pricing info, input\u002Foutput examples, and FAQ. Aim for at least 300 words with SEO-optimized H2\u002FH3 headings. Also review these top Actors for best practices:",{"type":43,"tag":127,"props":1010,"children":1011},{},[1012,1022],{"type":43,"tag":68,"props":1013,"children":1014},{},[1015],{"type":43,"tag":373,"props":1016,"children":1019},{"href":1017,"rel":1018},"https:\u002F\u002Fapify.com\u002Fapify\u002Finstagram-scraper",[377],[1020],{"type":48,"value":1021},"Instagram Scraper",{"type":43,"tag":68,"props":1023,"children":1024},{},[1025],{"type":43,"tag":373,"props":1026,"children":1029},{"href":1027,"rel":1028},"https:\u002F\u002Fapify.com\u002Fcompass\u002Fcrawler-google-places",[377],[1030],{"type":48,"value":1031},"Google Maps Scraper",{"type":43,"tag":57,"props":1033,"children":1035},{"id":1034},"step-8-test-locally",[1036],{"type":48,"value":1037},"Step 8: Test locally",{"type":43,"tag":51,"props":1039,"children":1040},{},[1041],{"type":48,"value":1042},"Run the Actor with inline input (for JS\u002FTS and Python Actors):",{"type":43,"tag":169,"props":1044,"children":1046},{"className":171,"code":1045,"language":173,"meta":174,"style":174},"apify run --input '{\"startUrl\": \"https:\u002F\u002Fexample.com\", \"maxItems\": 10}'\n",[1047],{"type":43,"tag":74,"props":1048,"children":1049},{"__ignoreMap":174},[1050],{"type":43,"tag":180,"props":1051,"children":1052},{"class":182,"line":183},[1053,1057,1062,1067,1073,1078],{"type":43,"tag":180,"props":1054,"children":1055},{"style":187},[1056],{"type":48,"value":8},{"type":43,"tag":180,"props":1058,"children":1059},{"style":192},[1060],{"type":48,"value":1061}," run",{"type":43,"tag":180,"props":1063,"children":1064},{"style":192},[1065],{"type":48,"value":1066}," --input",{"type":43,"tag":180,"props":1068,"children":1070},{"style":1069},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1071],{"type":48,"value":1072}," '",{"type":43,"tag":180,"props":1074,"children":1075},{"style":192},[1076],{"type":48,"value":1077},"{\"startUrl\": \"https:\u002F\u002Fexample.com\", \"maxItems\": 10}",{"type":43,"tag":180,"props":1079,"children":1080},{"style":1069},[1081],{"type":48,"value":1082},"'\n",{"type":43,"tag":51,"props":1084,"children":1085},{},[1086],{"type":48,"value":1087},"Or use an input file:",{"type":43,"tag":169,"props":1089,"children":1091},{"className":171,"code":1090,"language":173,"meta":174,"style":174},"apify run --input-file .\u002Ftest-input.json\n",[1092],{"type":43,"tag":74,"props":1093,"children":1094},{"__ignoreMap":174},[1095],{"type":43,"tag":180,"props":1096,"children":1097},{"class":182,"line":183},[1098,1102,1106,1111],{"type":43,"tag":180,"props":1099,"children":1100},{"style":187},[1101],{"type":48,"value":8},{"type":43,"tag":180,"props":1103,"children":1104},{"style":192},[1105],{"type":48,"value":1061},{"type":43,"tag":180,"props":1107,"children":1108},{"style":192},[1109],{"type":48,"value":1110}," --input-file",{"type":43,"tag":180,"props":1112,"children":1113},{"style":192},[1114],{"type":48,"value":1115}," .\u002Ftest-input.json\n",{"type":43,"tag":51,"props":1117,"children":1118},{},[1119,1124,1126,1131,1132,1138,1139,1145],{"type":43,"tag":268,"props":1120,"children":1121},{},[1122],{"type":48,"value":1123},"Important:",{"type":48,"value":1125}," Always use ",{"type":43,"tag":74,"props":1127,"children":1129},{"className":1128},[],[1130],{"type":48,"value":569},{"type":48,"value":363},{"type":43,"tag":74,"props":1133,"children":1135},{"className":1134},[],[1136],{"type":48,"value":1137},"npm start",{"type":48,"value":282},{"type":43,"tag":74,"props":1140,"children":1142},{"className":1141},[],[1143],{"type":48,"value":1144},"python main.py",{"type":48,"value":1146},". The CLI sets up the proper environment and storage.",{"type":43,"tag":57,"props":1148,"children":1150},{"id":1149},"step-9-deploy",[1151],{"type":48,"value":1152},"Step 9: Deploy",{"type":43,"tag":169,"props":1154,"children":1156},{"className":171,"code":1155,"language":173,"meta":174,"style":174},"apify push\n",[1157],{"type":43,"tag":74,"props":1158,"children":1159},{"__ignoreMap":174},[1160],{"type":43,"tag":180,"props":1161,"children":1162},{"class":182,"line":183},[1163,1167],{"type":43,"tag":180,"props":1164,"children":1165},{"style":187},[1166],{"type":48,"value":8},{"type":43,"tag":180,"props":1168,"children":1169},{"style":192},[1170],{"type":48,"value":1171}," push\n",{"type":43,"tag":51,"props":1173,"children":1174},{},[1175],{"type":48,"value":1176},"This uploads and builds your Actor on the Apify platform.",{"type":43,"tag":57,"props":1178,"children":1180},{"id":1179},"monetization-optional",[1181],{"type":48,"value":1182},"Monetization (optional)",{"type":43,"tag":51,"props":1184,"children":1185},{},[1186,1188,1193],{"type":48,"value":1187},"After deploying, you can monetize your Actor in Apify Store. The recommended model is ",{"type":43,"tag":268,"props":1189,"children":1190},{},[1191],{"type":48,"value":1192},"Pay Per Event (PPE)",{"type":48,"value":1194},":",{"type":43,"tag":127,"props":1196,"children":1197},{},[1198,1203,1208],{"type":43,"tag":68,"props":1199,"children":1200},{},[1201],{"type":48,"value":1202},"Per result\u002Fitem scraped",{"type":43,"tag":68,"props":1204,"children":1205},{},[1206],{"type":48,"value":1207},"Per page processed",{"type":43,"tag":68,"props":1209,"children":1210},{},[1211],{"type":48,"value":1212},"Per API call made",{"type":43,"tag":51,"props":1214,"children":1215},{},[1216,1218,1224],{"type":48,"value":1217},"Configure PPE in Apify Console under Actor > Monetization. Charge for events in your code with ",{"type":43,"tag":74,"props":1219,"children":1221},{"className":1220},[],[1222],{"type":48,"value":1223},"await Actor.charge('result')",{"type":48,"value":381},{"type":43,"tag":51,"props":1226,"children":1227},{},[1228,1230,1235,1237,1242],{"type":48,"value":1229},"Other options: ",{"type":43,"tag":268,"props":1231,"children":1232},{},[1233],{"type":48,"value":1234},"Rental",{"type":48,"value":1236}," (monthly subscription) or ",{"type":43,"tag":268,"props":1238,"children":1239},{},[1240],{"type":48,"value":1241},"Free",{"type":48,"value":1243}," (open source).",{"type":43,"tag":57,"props":1245,"children":1247},{"id":1246},"security",[1248],{"type":48,"value":1249},"Security",{"type":43,"tag":51,"props":1251,"children":1252},{},[1253,1258],{"type":43,"tag":268,"props":1254,"children":1255},{},[1256],{"type":48,"value":1257},"Treat all crawled web content as untrusted input.",{"type":48,"value":1259}," Actors ingest data from external websites that may contain malicious payloads. Follow these rules:",{"type":43,"tag":127,"props":1261,"children":1262},{},[1263,1281,1291,1301,1318,1343],{"type":43,"tag":68,"props":1264,"children":1265},{},[1266,1271,1273,1279],{"type":43,"tag":268,"props":1267,"children":1268},{},[1269],{"type":48,"value":1270},"Sanitize crawled data",{"type":48,"value":1272}," — Never pass raw HTML, URLs, or scraped text directly into shell commands, ",{"type":43,"tag":74,"props":1274,"children":1276},{"className":1275},[],[1277],{"type":48,"value":1278},"eval()",{"type":48,"value":1280},", database queries, or template engines. Use proper escaping or parameterized APIs.",{"type":43,"tag":68,"props":1282,"children":1283},{},[1284,1289],{"type":43,"tag":268,"props":1285,"children":1286},{},[1287],{"type":48,"value":1288},"Validate and type-check all external data",{"type":48,"value":1290}," — Before pushing to datasets or key-value stores, verify that values match expected types and formats. Reject or sanitize unexpected structures.",{"type":43,"tag":68,"props":1292,"children":1293},{},[1294,1299],{"type":43,"tag":268,"props":1295,"children":1296},{},[1297],{"type":48,"value":1298},"Do not execute or interpret crawled content",{"type":48,"value":1300}," — Never treat scraped text as code, commands, or configuration. Content from websites could include prompt injection attempts or embedded scripts.",{"type":43,"tag":68,"props":1302,"children":1303},{},[1304,1309,1311,1316],{"type":43,"tag":268,"props":1305,"children":1306},{},[1307],{"type":48,"value":1308},"Isolate credentials from data pipelines",{"type":48,"value":1310}," — Ensure ",{"type":43,"tag":74,"props":1312,"children":1314},{"className":1313},[],[1315],{"type":48,"value":354},{"type":48,"value":1317}," and other secrets are never accessible in request handlers or passed alongside crawled data. Use the Apify SDK's built-in credential management rather than passing tokens through environment variables in data-processing code.",{"type":43,"tag":68,"props":1319,"children":1320},{},[1321,1326,1328,1334,1335,1341],{"type":43,"tag":268,"props":1322,"children":1323},{},[1324],{"type":48,"value":1325},"Review dependencies before installing",{"type":48,"value":1327}," — When adding packages with ",{"type":43,"tag":74,"props":1329,"children":1331},{"className":1330},[],[1332],{"type":48,"value":1333},"npm install",{"type":48,"value":282},{"type":43,"tag":74,"props":1336,"children":1338},{"className":1337},[],[1339],{"type":48,"value":1340},"pip install",{"type":48,"value":1342},", verify the package name and publisher. Typosquatting is a common supply-chain attack vector. Prefer well-known, actively maintained packages.",{"type":43,"tag":68,"props":1344,"children":1345},{},[1346,1351,1353,1359,1361,1367,1369,1375,1376,1382],{"type":43,"tag":268,"props":1347,"children":1348},{},[1349],{"type":48,"value":1350},"Pin versions and use lockfiles",{"type":48,"value":1352}," — Always commit ",{"type":43,"tag":74,"props":1354,"children":1356},{"className":1355},[],[1357],{"type":48,"value":1358},"package-lock.json",{"type":48,"value":1360}," (Node.js) or pin exact versions in ",{"type":43,"tag":74,"props":1362,"children":1364},{"className":1363},[],[1365],{"type":48,"value":1366},"requirements.txt",{"type":48,"value":1368}," (Python). Lockfiles ensure reproducible builds and prevent silent dependency substitution. Run ",{"type":43,"tag":74,"props":1370,"children":1372},{"className":1371},[],[1373],{"type":48,"value":1374},"npm audit",{"type":48,"value":282},{"type":43,"tag":74,"props":1377,"children":1379},{"className":1378},[],[1380],{"type":48,"value":1381},"pip-audit",{"type":48,"value":1383}," periodically to check for known vulnerabilities.",{"type":43,"tag":57,"props":1385,"children":1387},{"id":1386},"pre-deployment-checklist",[1388],{"type":48,"value":1389},"Pre-deployment checklist",{"type":43,"tag":127,"props":1391,"children":1393},{"className":1392},[459],[1394,1410,1439,1454,1481,1496,1523,1538,1561,1576,1598,1615,1630,1646],{"type":43,"tag":68,"props":1395,"children":1397},{"className":1396},[464],[1398,1401,1403,1408],{"type":43,"tag":467,"props":1399,"children":1400},{"disabled":247,"type":469},[],{"type":48,"value":1402}," ",{"type":43,"tag":74,"props":1404,"children":1406},{"className":1405},[],[1407],{"type":48,"value":543},{"type":48,"value":1409}," exists with correct name and description",{"type":43,"tag":68,"props":1411,"children":1413},{"className":1412},[464],[1414,1417,1418,1423,1425,1430,1432,1438],{"type":43,"tag":467,"props":1415,"children":1416},{"disabled":247,"type":469},[],{"type":48,"value":1402},{"type":43,"tag":74,"props":1419,"children":1421},{"className":1420},[],[1422],{"type":48,"value":543},{"type":48,"value":1424}," validates against ",{"type":43,"tag":74,"props":1426,"children":1428},{"className":1427},[],[1429],{"type":48,"value":977},{"type":48,"value":1431}," (",{"type":43,"tag":74,"props":1433,"children":1435},{"className":1434},[],[1436],{"type":48,"value":1437},"actor.schema.json",{"type":48,"value":939},{"type":43,"tag":68,"props":1440,"children":1442},{"className":1441},[464],[1443,1446,1447,1452],{"type":43,"tag":467,"props":1444,"children":1445},{"disabled":247,"type":469},[],{"type":48,"value":1402},{"type":43,"tag":74,"props":1448,"children":1450},{"className":1449},[],[1451],{"type":48,"value":97},{"type":48,"value":1453}," defines all required inputs",{"type":43,"tag":68,"props":1455,"children":1457},{"className":1456},[464],[1458,1461,1462,1467,1468,1473,1474,1480],{"type":43,"tag":467,"props":1459,"children":1460},{"disabled":247,"type":469},[],{"type":48,"value":1402},{"type":43,"tag":74,"props":1463,"children":1465},{"className":1464},[],[1466],{"type":48,"value":97},{"type":48,"value":1424},{"type":43,"tag":74,"props":1469,"children":1471},{"className":1470},[],[1472],{"type":48,"value":977},{"type":48,"value":1431},{"type":43,"tag":74,"props":1475,"children":1477},{"className":1476},[],[1478],{"type":48,"value":1479},"input.schema.json",{"type":48,"value":939},{"type":43,"tag":68,"props":1482,"children":1484},{"className":1483},[464],[1485,1488,1489,1494],{"type":43,"tag":467,"props":1486,"children":1487},{"disabled":247,"type":469},[],{"type":48,"value":1402},{"type":43,"tag":74,"props":1490,"children":1492},{"className":1491},[],[1493],{"type":48,"value":526},{"type":48,"value":1495}," defines output structure (if applicable)",{"type":43,"tag":68,"props":1497,"children":1499},{"className":1498},[464],[1500,1503,1504,1509,1510,1515,1516,1522],{"type":43,"tag":467,"props":1501,"children":1502},{"disabled":247,"type":469},[],{"type":48,"value":1402},{"type":43,"tag":74,"props":1505,"children":1507},{"className":1506},[],[1508],{"type":48,"value":526},{"type":48,"value":1424},{"type":43,"tag":74,"props":1511,"children":1513},{"className":1512},[],[1514],{"type":48,"value":977},{"type":48,"value":1431},{"type":43,"tag":74,"props":1517,"children":1519},{"className":1518},[],[1520],{"type":48,"value":1521},"output.schema.json",{"type":48,"value":939},{"type":43,"tag":68,"props":1524,"children":1526},{"className":1525},[464],[1527,1530,1531,1536],{"type":43,"tag":467,"props":1528,"children":1529},{"disabled":247,"type":469},[],{"type":48,"value":1402},{"type":43,"tag":74,"props":1532,"children":1534},{"className":1533},[],[1535],{"type":48,"value":714},{"type":48,"value":1537}," is present and builds successfully",{"type":43,"tag":68,"props":1539,"children":1541},{"className":1540},[464],[1542,1545,1546,1552,1553,1559],{"type":43,"tag":467,"props":1543,"children":1544},{"disabled":247,"type":469},[],{"type":48,"value":1402},{"type":43,"tag":74,"props":1547,"children":1549},{"className":1548},[],[1550],{"type":48,"value":1551},"Actor.init()",{"type":48,"value":899},{"type":43,"tag":74,"props":1554,"children":1556},{"className":1555},[],[1557],{"type":48,"value":1558},"Actor.exit()",{"type":48,"value":1560}," wraps main code (JS\u002FTS)",{"type":43,"tag":68,"props":1562,"children":1564},{"className":1563},[464],[1565,1568,1569,1574],{"type":43,"tag":467,"props":1566,"children":1567},{"disabled":247,"type":469},[],{"type":48,"value":1402},{"type":43,"tag":74,"props":1570,"children":1572},{"className":1571},[],[1573],{"type":48,"value":875},{"type":48,"value":1575}," wraps main code (Python)",{"type":43,"tag":68,"props":1577,"children":1579},{"className":1578},[464],[1580,1583,1585,1591,1592],{"type":43,"tag":467,"props":1581,"children":1582},{"disabled":247,"type":469},[],{"type":48,"value":1584}," Inputs are read via ",{"type":43,"tag":74,"props":1586,"children":1588},{"className":1587},[],[1589],{"type":48,"value":1590},"Actor.getInput()",{"type":48,"value":899},{"type":43,"tag":74,"props":1593,"children":1595},{"className":1594},[],[1596],{"type":48,"value":1597},"Actor.get_input()",{"type":43,"tag":68,"props":1599,"children":1601},{"className":1600},[464],[1602,1605,1607,1613],{"type":43,"tag":467,"props":1603,"children":1604},{"disabled":247,"type":469},[],{"type":48,"value":1606}," Outputs use ",{"type":43,"tag":74,"props":1608,"children":1610},{"className":1609},[],[1611],{"type":48,"value":1612},"Actor.pushData()",{"type":48,"value":1614}," or key-value store",{"type":43,"tag":68,"props":1616,"children":1618},{"className":1617},[464],[1619,1622,1623,1628],{"type":43,"tag":467,"props":1620,"children":1621},{"disabled":247,"type":469},[],{"type":48,"value":1402},{"type":43,"tag":74,"props":1624,"children":1626},{"className":1625},[],[1627],{"type":48,"value":569},{"type":48,"value":1629}," executes successfully with test input",{"type":43,"tag":68,"props":1631,"children":1633},{"className":1632},[464],[1634,1637,1638,1644],{"type":43,"tag":467,"props":1635,"children":1636},{"disabled":247,"type":469},[],{"type":48,"value":1402},{"type":43,"tag":74,"props":1639,"children":1641},{"className":1640},[],[1642],{"type":48,"value":1643},"README.md",{"type":48,"value":1645}," exists with proper structure (intro, features, data table, tutorial, pricing, input\u002Foutput examples)",{"type":43,"tag":68,"props":1647,"children":1649},{"className":1648},[464],[1650,1653,1654,1660],{"type":43,"tag":467,"props":1651,"children":1652},{"disabled":247,"type":469},[],{"type":48,"value":1402},{"type":43,"tag":74,"props":1655,"children":1657},{"className":1656},[],[1658],{"type":48,"value":1659},"generatedBy",{"type":48,"value":1661}," is set in actor.json meta section",{"type":43,"tag":57,"props":1663,"children":1665},{"id":1664},"mcp-tools",[1666],{"type":48,"value":1667},"MCP tools",{"type":43,"tag":778,"props":1669,"children":1671},{"id":1670},"apify-mcp",[1672],{"type":48,"value":1673},"Apify MCP",{"type":43,"tag":51,"props":1675,"children":1676},{},[1677],{"type":48,"value":1678},"If the Apify MCP server is configured, use these tools for documentation:",{"type":43,"tag":127,"props":1680,"children":1681},{},[1682,1693],{"type":43,"tag":68,"props":1683,"children":1684},{},[1685,1691],{"type":43,"tag":74,"props":1686,"children":1688},{"className":1687},[],[1689],{"type":48,"value":1690},"search-apify-docs",{"type":48,"value":1692}," - Search documentation",{"type":43,"tag":68,"props":1694,"children":1695},{},[1696,1702],{"type":43,"tag":74,"props":1697,"children":1699},{"className":1698},[],[1700],{"type":48,"value":1701},"fetch-apify-docs",{"type":48,"value":1703}," - Get full doc pages",{"type":43,"tag":51,"props":1705,"children":1706},{},[1707,1709,1715],{"type":48,"value":1708},"Otherwise, the MCP Server url: ",{"type":43,"tag":74,"props":1710,"children":1712},{"className":1711},[],[1713],{"type":48,"value":1714},"https:\u002F\u002Fmcp.apify.com\u002F?tools=docs",{"type":48,"value":381},{"type":43,"tag":778,"props":1717,"children":1719},{"id":1718},"playwright-mcp-debugging",[1720],{"type":48,"value":1721},"Playwright MCP (debugging)",{"type":43,"tag":51,"props":1723,"children":1724},{},[1725],{"type":48,"value":1726},"The Playwright MCP server is a useful tool for debugging Actors that interact with the web - it lets the agent drive a real browser to inspect pages, capture selectors, and reproduce issues.",{"type":43,"tag":51,"props":1728,"children":1729},{},[1730],{"type":48,"value":1731},"Install with the Claude Code CLI:",{"type":43,"tag":169,"props":1733,"children":1735},{"className":171,"code":1734,"language":173,"meta":174,"style":174},"claude mcp add playwright npx @playwright\u002Fmcp@latest\n",[1736],{"type":43,"tag":74,"props":1737,"children":1738},{"__ignoreMap":174},[1739],{"type":43,"tag":180,"props":1740,"children":1741},{"class":182,"line":183},[1742,1747,1752,1757,1762,1767],{"type":43,"tag":180,"props":1743,"children":1744},{"style":187},[1745],{"type":48,"value":1746},"claude",{"type":43,"tag":180,"props":1748,"children":1749},{"style":192},[1750],{"type":48,"value":1751}," mcp",{"type":43,"tag":180,"props":1753,"children":1754},{"style":192},[1755],{"type":48,"value":1756}," add",{"type":43,"tag":180,"props":1758,"children":1759},{"style":192},[1760],{"type":48,"value":1761}," playwright",{"type":43,"tag":180,"props":1763,"children":1764},{"style":192},[1765],{"type":48,"value":1766}," npx",{"type":43,"tag":180,"props":1768,"children":1769},{"style":192},[1770],{"type":48,"value":1771}," @playwright\u002Fmcp@latest\n",{"type":43,"tag":51,"props":1773,"children":1774},{},[1775],{"type":48,"value":1776},"Or add it manually to your MCP config:",{"type":43,"tag":169,"props":1778,"children":1782},{"className":1779,"code":1780,"language":1781,"meta":174,"style":174},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"mcpServers\": {\n    \"playwright\": {\n      \"command\": \"npx\",\n      \"args\": [\"@playwright\u002Fmcp@latest\"]\n    }\n  }\n}\n","json",[1783],{"type":43,"tag":74,"props":1784,"children":1785},{"__ignoreMap":174},[1786,1794,1822,1847,1888,1932,1941,1950],{"type":43,"tag":180,"props":1787,"children":1788},{"class":182,"line":183},[1789],{"type":43,"tag":180,"props":1790,"children":1791},{"style":1069},[1792],{"type":48,"value":1793},"{\n",{"type":43,"tag":180,"props":1795,"children":1796},{"class":182,"line":219},[1797,1802,1808,1813,1817],{"type":43,"tag":180,"props":1798,"children":1799},{"style":1069},[1800],{"type":48,"value":1801},"  \"",{"type":43,"tag":180,"props":1803,"children":1805},{"style":1804},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1806],{"type":48,"value":1807},"mcpServers",{"type":43,"tag":180,"props":1809,"children":1810},{"style":1069},[1811],{"type":48,"value":1812},"\"",{"type":43,"tag":180,"props":1814,"children":1815},{"style":1069},[1816],{"type":48,"value":1194},{"type":43,"tag":180,"props":1818,"children":1819},{"style":1069},[1820],{"type":48,"value":1821}," {\n",{"type":43,"tag":180,"props":1823,"children":1824},{"class":182,"line":243},[1825,1830,1835,1839,1843],{"type":43,"tag":180,"props":1826,"children":1827},{"style":1069},[1828],{"type":48,"value":1829},"    \"",{"type":43,"tag":180,"props":1831,"children":1832},{"style":187},[1833],{"type":48,"value":1834},"playwright",{"type":43,"tag":180,"props":1836,"children":1837},{"style":1069},[1838],{"type":48,"value":1812},{"type":43,"tag":180,"props":1840,"children":1841},{"style":1069},[1842],{"type":48,"value":1194},{"type":43,"tag":180,"props":1844,"children":1845},{"style":1069},[1846],{"type":48,"value":1821},{"type":43,"tag":180,"props":1848,"children":1849},{"class":182,"line":253},[1850,1855,1861,1865,1869,1874,1879,1883],{"type":43,"tag":180,"props":1851,"children":1852},{"style":1069},[1853],{"type":48,"value":1854},"      \"",{"type":43,"tag":180,"props":1856,"children":1858},{"style":1857},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1859],{"type":48,"value":1860},"command",{"type":43,"tag":180,"props":1862,"children":1863},{"style":1069},[1864],{"type":48,"value":1812},{"type":43,"tag":180,"props":1866,"children":1867},{"style":1069},[1868],{"type":48,"value":1194},{"type":43,"tag":180,"props":1870,"children":1871},{"style":1069},[1872],{"type":48,"value":1873}," \"",{"type":43,"tag":180,"props":1875,"children":1876},{"style":192},[1877],{"type":48,"value":1878},"npx",{"type":43,"tag":180,"props":1880,"children":1881},{"style":1069},[1882],{"type":48,"value":1812},{"type":43,"tag":180,"props":1884,"children":1885},{"style":1069},[1886],{"type":48,"value":1887},",\n",{"type":43,"tag":180,"props":1889,"children":1891},{"class":182,"line":1890},5,[1892,1896,1901,1905,1909,1914,1918,1923,1927],{"type":43,"tag":180,"props":1893,"children":1894},{"style":1069},[1895],{"type":48,"value":1854},{"type":43,"tag":180,"props":1897,"children":1898},{"style":1857},[1899],{"type":48,"value":1900},"args",{"type":43,"tag":180,"props":1902,"children":1903},{"style":1069},[1904],{"type":48,"value":1812},{"type":43,"tag":180,"props":1906,"children":1907},{"style":1069},[1908],{"type":48,"value":1194},{"type":43,"tag":180,"props":1910,"children":1911},{"style":1069},[1912],{"type":48,"value":1913}," [",{"type":43,"tag":180,"props":1915,"children":1916},{"style":1069},[1917],{"type":48,"value":1812},{"type":43,"tag":180,"props":1919,"children":1920},{"style":192},[1921],{"type":48,"value":1922},"@playwright\u002Fmcp@latest",{"type":43,"tag":180,"props":1924,"children":1925},{"style":1069},[1926],{"type":48,"value":1812},{"type":43,"tag":180,"props":1928,"children":1929},{"style":1069},[1930],{"type":48,"value":1931},"]\n",{"type":43,"tag":180,"props":1933,"children":1935},{"class":182,"line":1934},6,[1936],{"type":43,"tag":180,"props":1937,"children":1938},{"style":1069},[1939],{"type":48,"value":1940},"    }\n",{"type":43,"tag":180,"props":1942,"children":1944},{"class":182,"line":1943},7,[1945],{"type":43,"tag":180,"props":1946,"children":1947},{"style":1069},[1948],{"type":48,"value":1949},"  }\n",{"type":43,"tag":180,"props":1951,"children":1953},{"class":182,"line":1952},8,[1954],{"type":43,"tag":180,"props":1955,"children":1956},{"style":1069},[1957],{"type":48,"value":1958},"}\n",{"type":43,"tag":57,"props":1960,"children":1962},{"id":1961},"resources",[1963],{"type":48,"value":1964},"Resources",{"type":43,"tag":127,"props":1966,"children":1967},{},[1968,1980,1992,2003,2015],{"type":43,"tag":68,"props":1969,"children":1970},{},[1971,1978],{"type":43,"tag":373,"props":1972,"children":1975},{"href":1973,"rel":1974},"https:\u002F\u002Fdocs.apify.com\u002Facademy\u002Factorization",[377],[1976],{"type":48,"value":1977},"Actorization Academy",{"type":48,"value":1979}," - Comprehensive guide",{"type":43,"tag":68,"props":1981,"children":1982},{},[1983,1990],{"type":43,"tag":373,"props":1984,"children":1987},{"href":1985,"rel":1986},"https:\u002F\u002Fdocs.apify.com\u002Fsdk\u002Fjs",[377],[1988],{"type":48,"value":1989},"Apify SDK for JavaScript",{"type":48,"value":1991}," - Full SDK reference",{"type":43,"tag":68,"props":1993,"children":1994},{},[1995,2002],{"type":43,"tag":373,"props":1996,"children":1999},{"href":1997,"rel":1998},"https:\u002F\u002Fdocs.apify.com\u002Fsdk\u002Fpython",[377],[2000],{"type":48,"value":2001},"Apify SDK for Python",{"type":48,"value":1991},{"type":43,"tag":68,"props":2004,"children":2005},{},[2006,2013],{"type":43,"tag":373,"props":2007,"children":2010},{"href":2008,"rel":2009},"https:\u002F\u002Fdocs.apify.com\u002Fcli",[377],[2011],{"type":48,"value":2012},"Apify CLI Reference",{"type":48,"value":2014}," - CLI commands",{"type":43,"tag":68,"props":2016,"children":2017},{},[2018,2025],{"type":43,"tag":373,"props":2019,"children":2022},{"href":2020,"rel":2021},"https:\u002F\u002Fraw.githubusercontent.com\u002Fapify\u002Factor-whitepaper\u002Frefs\u002Fheads\u002Fmaster\u002FREADME.md",[377],[2023],{"type":48,"value":2024},"Actor Specification",{"type":48,"value":2026}," - Complete specification",{"type":43,"tag":2028,"props":2029,"children":2030},"style",{},[2031],{"type":48,"value":2032},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2034,"total":1890},[2035,2046,2054,2069,2090],{"slug":2036,"name":2036,"fn":2037,"description":2038,"org":2039,"tags":2040,"stars":26,"repoUrl":27,"updatedAt":2045},"apify-actor-development","build and deploy Apify Actors","Develop, debug, and deploy Apify Actors - serverless cloud programs for web scraping, automation, and data processing. Use when creating new Actors, modifying existing ones, or troubleshooting Actor code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2041,2042,2043,2044],{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":24,"slug":25,"type":13},{"name":18,"slug":19,"type":13},"2026-04-06T18:00:48.720637",{"slug":4,"name":4,"fn":5,"description":6,"org":2047,"tags":2048,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2049,2050,2051,2052,2053],{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":21,"slug":22,"type":13},{"name":24,"slug":25,"type":13},{"name":18,"slug":19,"type":13},{"slug":2055,"name":2055,"fn":2056,"description":2057,"org":2058,"tags":2059,"stars":26,"repoUrl":27,"updatedAt":2068},"apify-generate-output-schema","generate Apify Actor output schemas","Generate output schemas (dataset_schema.json, output_schema.json, key_value_store_schema.json) for an Apify Actor by analyzing its source code. Use when creating or updating Actor output schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2060,2063,2064,2067],{"name":2061,"slug":2062,"type":13},"API Development","api-development",{"name":9,"slug":8,"type":13},{"name":2065,"slug":2066,"type":13},"Data Modeling","data-modeling",{"name":18,"slug":19,"type":13},"2026-04-06T18:00:50.07596",{"slug":2070,"name":2070,"fn":2071,"description":2072,"org":2073,"tags":2074,"stars":26,"repoUrl":27,"updatedAt":2089},"apify-sdk-integration","integrate Apify SDK into applications","Integrate Apify into an existing JavaScript\u002FTypeScript or Python application using the apify-client package. Use when adding web scraping, automation, or data extraction capabilities to an existing app via the Apify API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2075,2076,2077,2080,2082,2085,2088],{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":2078,"slug":2079,"type":13},"JavaScript","javascript",{"name":754,"slug":2081,"type":13},"python",{"name":2083,"slug":2084,"type":13},"SDK","sdk",{"name":2086,"slug":2087,"type":13},"TypeScript","typescript",{"name":18,"slug":19,"type":13},"2026-05-16T05:56:15.416714",{"slug":2091,"name":2091,"fn":2092,"description":2093,"org":2094,"tags":2095,"stars":26,"repoUrl":27,"updatedAt":2099},"apify-ultimate-scraper","scrape data across web platforms","Universal AI-powered web scraper for any platform. Scrape data from Instagram, Facebook, TikTok, YouTube, LinkedIn, X\u002FTwitter, Google Maps, Google Search, Google Trends, Reddit, Airbnb, Yelp, and 15+ more platforms. Use for lead generation, brand monitoring, competitor analysis, influencer discovery, trend research, content analytics, audience analysis, review analysis, SEO intelligence, recruitment, or any data extraction task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2096,2097,2098],{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":18,"slug":19,"type":13},"2026-04-06T18:00:47.419432",{"items":2101,"total":2218},[2102,2109,2117,2124,2134,2140,2155,2172,2188,2201],{"slug":2036,"name":2036,"fn":2037,"description":2038,"org":2103,"tags":2104,"stars":26,"repoUrl":27,"updatedAt":2045},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2105,2106,2107,2108],{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":24,"slug":25,"type":13},{"name":18,"slug":19,"type":13},{"slug":4,"name":4,"fn":5,"description":6,"org":2110,"tags":2111,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2112,2113,2114,2115,2116],{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":21,"slug":22,"type":13},{"name":24,"slug":25,"type":13},{"name":18,"slug":19,"type":13},{"slug":2055,"name":2055,"fn":2056,"description":2057,"org":2118,"tags":2119,"stars":26,"repoUrl":27,"updatedAt":2068},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2120,2121,2122,2123],{"name":2061,"slug":2062,"type":13},{"name":9,"slug":8,"type":13},{"name":2065,"slug":2066,"type":13},{"name":18,"slug":19,"type":13},{"slug":2070,"name":2070,"fn":2071,"description":2072,"org":2125,"tags":2126,"stars":26,"repoUrl":27,"updatedAt":2089},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2127,2128,2129,2130,2131,2132,2133],{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":2078,"slug":2079,"type":13},{"name":754,"slug":2081,"type":13},{"name":2083,"slug":2084,"type":13},{"name":2086,"slug":2087,"type":13},{"name":18,"slug":19,"type":13},{"slug":2091,"name":2091,"fn":2092,"description":2093,"org":2135,"tags":2136,"stars":26,"repoUrl":27,"updatedAt":2099},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2137,2138,2139],{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":18,"slug":19,"type":13},{"slug":2141,"name":2141,"fn":2142,"description":2143,"org":2144,"tags":2145,"stars":2152,"repoUrl":2153,"updatedAt":2154},"apify-cli","run and manage Apify Actors via CLI","Patterns for invoking the Apify CLI (`apify`) from agents. Covers authentication, creating\u002Frunning\u002Fpushing Actors, calling Actors in the cloud, and reading results from datasets and key-value stores.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2146,2147,2148,2151],{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":2149,"slug":2150,"type":13},"CLI","cli",{"name":18,"slug":19,"type":13},232,"https:\u002F\u002Fgithub.com\u002Fapify\u002Fapify-cli","2026-07-02T07:39:43.018333",{"slug":2156,"name":2156,"fn":2157,"description":2158,"org":2159,"tags":2160,"stars":2169,"repoUrl":2170,"updatedAt":2171},"apify-financial-news","extract financial news for portfolio companies","Discover and extract financial news for tracked portfolio companies across 33 verified Tier 1 sources (Bloomberg, Reuters, FT, WSJ, IntelliNews, ČTK, PAP, BTA, TASR, ING Think, ECB, EC Press Corner, ...) plus broad Google News fallback. Use when the user asks to find news about a company, get press coverage, monitor financial press, run a news scan, or check headlines for a portfolio company. Reads tracked companies from data\u002Fcompanies.json. Do NOT use for marketing\u002Fsocial-listening (use apify\u002Fawesome-skills) or for morning-briefing formatting (out of scope).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2161,2162,2165,2168],{"name":9,"slug":8,"type":13},{"name":2163,"slug":2164,"type":13},"Finance","finance",{"name":2166,"slug":2167,"type":13},"Research","research",{"name":18,"slug":19,"type":13},227,"https:\u002F\u002Fgithub.com\u002Fapify\u002Fawesome-skills","2026-05-23T06:06:02.858883",{"slug":2173,"name":2173,"fn":2174,"description":2175,"org":2176,"tags":2177,"stars":2169,"repoUrl":2170,"updatedAt":2187},"apify-financial-osint","gather social listening signals for portfolio companies","Social-listening signals for tracked portfolio companies via Apify Actors — Reddit sentiment (fatihtahta), Twitter\u002FX real-time mentions (kaitoeasyapi pay-per-result), Trustpilot service quality (getwally.net). Use when the user asks for sentiment, social media mentions, customer reviews, brand perception, crisis signals, OSINT, social listening, \"what are people saying about X\". Reads tracked companies from data\u002Fcompanies.json. Do NOT use for news (use apify-financial-news) or registry lookups (use apify-public-registries).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2178,2179,2182,2183,2186],{"name":9,"slug":8,"type":13},{"name":2180,"slug":2181,"type":13},"Marketing","marketing",{"name":2166,"slug":2167,"type":13},{"name":2184,"slug":2185,"type":13},"Sales","sales",{"name":18,"slug":19,"type":13},"2026-05-23T06:06:04.102658",{"slug":2189,"name":2189,"fn":2190,"description":2191,"org":2192,"tags":2193,"stars":2169,"repoUrl":2170,"updatedAt":2200},"apify-public-registries","lookup company data from European public registries","Look up official company data from European public registries across 11 countries\u002Fregions (CZ, SK, PL, DE, UK, NL, RO, HR, SE + EU-level + ESG). Covers company registration, ownership, financial filings, VAT status, ESG data. Use when the user asks to \"look up a company\", \"check registry\", \"find company info\", \"look up IČO\u002FKRS\u002FLEI\u002FCRN\", \"company due diligence\", \"check VAT status\", \"find ownership structure\", or needs official data from European registries. Reads tracked companies from data\u002Fcompanies.json. Some lookups use Python scripts (stdlib), some fall back to Apify actors for scraping-based registries.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2194,2195,2198,2199],{"name":9,"slug":8,"type":13},{"name":2196,"slug":2197,"type":13},"Compliance","compliance",{"name":2163,"slug":2164,"type":13},{"name":2166,"slug":2167,"type":13},"2026-05-23T06:06:05.323553",{"slug":2202,"name":2202,"fn":2037,"description":2203,"org":2204,"tags":2205,"stars":2215,"repoUrl":2216,"updatedAt":2217},"apify-agent","Build, run, debug, and deploy Apify Actors. Use when the user wants to create an Actor, mentions apify create \u002F apify run \u002F apify push, or is debugging an Actor's input schema, storages, or deployment.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2206,2207,2208,2211,2214],{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":2209,"slug":2210,"type":13},"Debugging","debugging",{"name":2212,"slug":2213,"type":13},"Deployment","deployment",{"name":18,"slug":19,"type":13},0,"https:\u002F\u002Fgithub.com\u002Fapify\u002Fapify-agent","2026-07-30T05:53:40.745073",10]