apify-install-auth

Featured

Install and configure Apify SDK, CLI, and API client authentication. Use when setting up a new Apify project, configuring API tokens, or initializing apify-client / Apify SDK in your codebase. Trigger: "install apify", "setup apify", "apify auth", "configure apify token".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Apify Install & Auth ## Overview Set up the Apify ecosystem: the `apify-client` JS library (for calling Actors remotely), the `apify` SDK (for building Actors), the Apify CLI (for deploying), and Crawlee (for crawling). Each package serves a different purpose. ## Package Map | Package | npm | Purpose | |---------|-----|---------| | `apify-client` | `npm i apify-client` | Call Actors, manage datasets/KV stores from external apps | | `apify` | `npm i apify` | Build Actors (includes `Actor.init()`, `Actor.pushData()`) | | `crawlee` | `npm i crawlee` | Crawler framework (Cheerio, Playwright, Puppeteer crawlers) | | `apify-cli` | `npm i -g apify-cli` | CLI for `apify login`, `apify run`, `apify push` | ## Prerequisites - Node.js 18+ (required by SDK v3+) - Apify account at https://console.apify.com - API token from Settings > Integrations in Apify Console ## Instructions ### Step 1: Install Packages ```bash # For CALLING existing Actors from your app: npm install apify-client # For BUILDING your own Actors: npm install apify crawlee # For CLI deployment: npm install -g apify-cli ``` ### Step 2: Configure Authentication ```bash # Option A: Environment variable (recommended for apps) export APIFY_TOKEN="apify_api_YOUR_TOKEN_HERE" # Option B: .env file (add .env to .gitignore) echo 'APIFY_TOKEN=apify_api_YOUR_TOKEN_HERE' >> .env # Option C: CLI login (for interactive development) apify login # Paste your token when prompted ``` ### Step 3: Verify Connection ```type...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

API & Backend Solid

apify-actorization

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.

39,227 Updated today
sickn33
AI & Automation Featured

apollo-install-auth

Install and configure Apollo.io API authentication. Use when setting up a new Apollo integration, configuring API keys, or initializing Apollo client in your project. Trigger with phrases like "install apollo", "setup apollo api", "apollo authentication", "configure apollo api key".

2,266 Updated today
jeremylongshore
AI & Automation Solid

apify-actor-development

Important: Before you begin, fill in the generatedBy property in the meta section of .actor/actor.json. Replace it with the tool and model you're currently using, such as "Claude Code with Claude Sonnet 4.5". This helps Apify monitor and improve AGENTS.md for specific AI tools and models.

39,227 Updated today
sickn33
AI & Automation Featured

apify-security-basics

Secure Apify API tokens, configure proxy access, and protect Actor data. Use when hardening API key management, setting up environment-specific tokens, or auditing Apify security configuration. Trigger: "apify security", "apify secrets", "secure apify token", "apify API key security", "rotate apify token".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apify-ci-integration

Configure CI/CD pipelines for Apify Actor builds and deployments. Use when automating Actor deployment via GitHub Actions, running integration tests against Apify, or building CI/CD for scrapers. Trigger: "apify CI", "apify GitHub Actions", "apify automated deploy", "CI apify", "apify pipeline", "auto deploy actor".

2,266 Updated today
jeremylongshore