Actor Builder
Pricing
Pay per usage
Go to Apify Store

Actor Builder
Pricing
Pay per usage
Rating
0.0
(0)
Developer

handleco-app
Maintained by Community
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
8 days ago
Last modified
Categories
Share
Actor Builder 🤖
AI-powered actor builder that uses Claude Agent SDK to create and publish Apify actors from natural language prompts.
How It Works
- You provide a description of the actor you want to build
- Claude Agent SDK analyzes your requirements
- It generates all necessary files (main.ts, actor.json, input_schema.json, Dockerfile, etc.)
- The actor is automatically published to your Apify account
Input
| Field | Type | Description |
|---|---|---|
prompt | string | Description of the actor you want to build |
actorName | string | Name for the new actor (lowercase, hyphens only) |
Environment Variables
| Variable | Description |
|---|---|
CLAUDE_CODE_OAUTH_TOKEN | OAuth token for Claude Agent SDK |
APIFY_TOKEN | Your Apify API token (automatically available on Apify platform) |
Example
Input:
{"prompt": "Create a web scraper that takes a URL and extracts all links from the page. Return the links as an array with their text and href.","actorName": "link-extractor"}
Result:
- A new actor called "link-extractor" is created and published to your Apify account
- The actor includes all necessary files and is ready to use
Generated Actor Structure
The builder creates actors with:
src/main.ts- Main actor code using Apify SDK.actor/actor.json- Actor metadata.actor/input_schema.json- Input schemapackage.json- DependenciesDockerfile- Bun-based containertsconfig.json- TypeScript configREADME.md- Documentation
Development
# Install dependenciesbun install# Buildbun run build# Run locallybun run dev# Deploy to Apifyapify push
Tech Stack
- TypeScript + Bun runtime
- Claude Agent SDK for AI-powered code generation
- Apify SDK for actor functionality


