create-intuned-project
v1.0.4
Published
Create Intuned browser automation projects with one command
Readme
create-intuned-project
Create Intuned browser automation projects with one command
A CLI tool that scaffolds new Intuned browser automation projects using various templates. Get started with web scraping, data extraction, and browser automation in minutes.
🚀 Quick Start
Create a new Intuned project instantly:
npx create-intuned-project my-projectOr specify a language:
npx create-intuned-project my-project --language typescript🛠️ Installation
Prerequisites
- Node.js v20 or higher
- npm or yarn
Usage
# Create a new project in current directory
npx create-intuned-project
# Create a new project in specified directory
npx create-intuned-project my-automation-project
# Specify options directly
npx create-intuned-project my-project \
--language typescript \
--template default \
--project-name "my-automation-project" \
--workspace-id "your-workspace-guid" \
--api-key "your-api-key"📋 Command Line Options
| Option | Description | Example |
| ------------------------------ | ------------------------------------------- | ------------------------------------------------------- |
| [project-directory] | Directory where the project will be created | my-project |
| -l, --language <language> | Programming language (typescript or python) | --language typescript |
| -t, --template <template-id> | Template ID to use | --template default |
| --project-name <name> | Name of the project | --project-name "my-project" |
| --workspace-id <id> | Workspace ID (GUID format) | --workspace-id "123e4567-e89b-12d3-a456-426614174000" |
| --api-key <key> | API key for deployments | --api-key "your-api-key" |
🎯 Interactive Setup
If you don't provide options via command line, the tool will prompt you interactively:
- Language Selection: Choose between TypeScript and Python
- Template Selection: Pick from available templates for your language
- Project Configuration: Set project name, workspace ID, and API key
- Environment Setup: Automatically creates
.envfile with your credentials
Getting Help
📄 License
MIT License - see the LICENSE file for details.
