b0t

(★ 28)

Workflow automation, but you just describe what you want and it happens.

File Explorer

  • .env.example
  • .gitignore
  • .npmrc
  • activitypage.png
  • CLAUDE.md
  • clientpage.png
  • components.json
  • CONTRIBUTING.md
  • CREDENTIAL_PATTERNS.md
  • credentialspage.png
  • docker-compose.yml
  • drizzle.config.ts
  • eslint.config.mjs
  • next.config.ts
  • nixpacks.toml
  • package-lock.json
  • package.json
  • postcss.config.mjs
  • railway.json
  • README.md
  • test-webhook-plan.yaml
  • test-webhook-workflow.json
  • test-webhook.json
  • tsconfig.json
  • typedoc.json
  • vitest.config.ts
  • vitest.setup.ts
  • worker.ts
  • WORKFLOW-GENERATOR-V2-SUMMARY.md
  • WORKFLOW-GENERATOR-V2-VALIDATION.md
  • WORKFLOW-V2-DEPLOYMENT-COMPLETE.md
  • workflowpage.png

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

npm install

View Details ▼

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

🔍

npm run

View Details ▼

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

🔍

openssl

View Details ▼

OpenSSL cryptographic toolkit.
Some subcommands such as `req` have their own usage documentation.

openssl genpkey -algorithm {{rsa|ec}} -out {{path/to/private.key}} -aes256

Generate a private key and encrypt the output file using AES-256:

openssl rsa -in {{path/to/private.key}} -pubout -out {{path/to/public.key}}

Generate the corresponding public key from the private key `private.key` using `rsa`:

openssl req -new -x509 -key {{path/to/private.key}} -out {{path/to/certificate.crt}} -days 365

Generate a self-signed certificate valid for a specified number of days (365):

// repository documentation