From business trigger to automated outcome. AutomataX is an open-source library of 100 enterprise-grade business automation architectures engineered for n8n. Designed for automation agencies, freelancers, recruiters, n8n developers, and technical leaders evaluating automation systems quality.
- 100 Workflows distributed across 10 Enterprise Domains.
- 100% Schema-Validated via `manifest/workflows.json` source-of-truth.
- 100 Visual Architecture SVGs auto-derived from node graph structures.
- 15 Demo-Verified Featured Workflows equipped with safe test inputs and expected outcome fixtures.
- 0 Plaintext Secrets or hardcoded production credentials.
|
Category: Sales & CRM | Trigger: Webhook
|
Category: Customer Success | Trigger: Webhook
|
|
Category: FinOps & Revenue | Trigger: Webhook
|
Category: Executive Operations | Trigger: Schedule
|
π Explore all 100 Workflows in the Master Catalog
AutomataX divides 100 business automations into 10 enterprise domains.
| Domain | Description | Workflows | Category Catalog |
|---|---|---|---|
| 01. FinOps & Revenue | Revenue recognition, AP automation, budget monitoring, dunning. | 10 | View FinOps |
| 02. HR & Talent | Employee onboarding, offboarding, performance reviews, sentiment. | 10 | View HR |
| 03. Supply Chain | Predictive inventory POs, freight tracking, 3PL reconciliation. | 10 | View Supply Chain |
| 04. Customer Success | Feature drop-off alerts, ticket triage, QBR prep, SLA escalations. | 10 | View CS |
| 05. Sales & CRM | Lead routing, CPQ, deal desk approvals, competitor price scraping. | 10 | View Sales |
| 06. ITSM & DevOps | Incident war rooms, RBAC access, AI CI/CD failure triage. | 10 | View DevOps |
| 07. Marketing Ops | Webinar operations, ad spend pacing, content syndication. | 10 | View Marketing |
| 08. Legal & Compliance | Mutual NDA generation, DSAR compliance, SOC 2 evidence collection. | 10 | View Legal |
| 09. Data Engineering | ETL pipeline monitoring, data circuit breakers, schema evolution. | 10 | View Data Eng |
| 10. Executive Ops | Board deck assembly, M&A data rooms, CEO morning briefing. | 10 | View Executive |
AutomataX strictly enforces a truthful 4-tier maturity system:
- Architecture Blueprint: The workflow sequence is defined as an importable n8n graph structure. External integration parameters require configuration and API credential binding.
- Importable Template: The workflow contains structured parameter expressions and credential placeholders, ready for environment binding.
- Demo Verified: The workflow includes mock payload triggers, input fixtures (`fixtures/inputs/`), and expected output fixtures (`fixtures/expected/`) for offline testing without production API credentials.
- Production Reference: The workflow contains full error handling workflows, exponential retries, rate limiting, PII masking, and real-world execution logs.
Importing an AutomataX workflow into your n8n workspace takes under 60 seconds:
- Locate your Workflow: Browse the Catalog or domain subdirectories in `workflows/`.
- Download JSON: Click the Download n8n JSON link in the workflow's documentation page.
- Import to n8n Canvas:
- Open n8n workspace.
- Click Workflows β Add Workflow.
- Click ... (Top-right menu) β Import from File.
- Select the downloaded `.json` file.
- Bind Credentials: Double-click integration nodes to select your stored n8n API Credentials.
- Zero Plaintext Secrets: AutomataX workflows never contain raw API keys, passwords, or tokens.
- Credential Manager: All integration nodes consume n8n's native Credential Manager (`{{$credentials...}}`).
- Least Privilege: Production deployments must scope API keys to the minimum necessary read/write capabilities.
- Sanitized Fixtures: All demo test payloads utilize 100% fictional data.
# Validate repository integrity (JSON, manifest sync, links, secret scanning)
npm test
# Regenerate master manifest (manifest/workflows.json)
npm run build:manifest
# Regenerate all SVG architecture diagrams
npm run generate:diagrams
# Regenerate documentation pages & stats
npm run generate:docs && npm run generate:statsAutomataX/
βββ assets/ # Brand & visual architecture SVGs
β βββ brand/ # Hero & system architecture SVGs
β βββ catalog/ # Category architecture SVGs
β βββ workflows/ # Individual per-workflow SVGs
βββ catalog/ # Categorized catalog index pages
βββ docs/ # Individual workflow spec docs & audit
β βββ workflows/ # 100 workflow specification pages
β βββ AUDIT.md # Technical repository audit report
βββ fixtures/ # Demo mode test payloads
β βββ inputs/ # Sample trigger input payloads
β βββ expected/ # Expected output payloads
βββ manifest/ # Authoritative source of truth
β βββ workflows.json # Master manifest index
β βββ stats.json # Repository statistics
βββ scripts/ # Validation & generator scripts
βββ workflows/ # 10 Domain subdirectories containing 100 n8n JSONs
β βββ 01-finops/
β βββ 02-hr/
β βββ ...
βββ .github/workflows/ci.yml # Automated CI/CD pipeline
βββ CONTRIBUTING.md # Workflow contribution guide
βββ LICENSE # MIT License
\`\`\`
---
## π€ Contributing
We welcome contributions! Please review our [Contributing Guidelines](CONTRIBUTING.md) and [Code of Conduct](CODE_OF_CONDUCT.md) before submitting pull requests.
---
## π License
This repository is licensed under the [MIT License](LICENSE).