overai 1.4.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +5 -8
package/README.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  OverAI is a production-ready Multi AI Agents framework, designed to create AI Agents to automate and solve problems ranging from simple tasks to complex challenges. It provides a low-code solution to streamline the building and management of multi-agent LLM systems, emphasising simplicity, customisation, and effective human-agent collaboration.
4
4
 
5
+ ## Why OverAI? (vs n8n and others)
6
+
7
+ While visual workflow tools like **n8n** are excellent for linear automation, **OverAI** is designed for the next generation of intelligent orchestration:
8
+
9
+ - **Code-First Autonomy**: Move beyond rigid flowcharts. Define complex, dynamic agent behaviors using standard TypeScript/JavaScript that can adapt to changing contexts.
10
+ - **True Multi-Agent Collaboration**: Agents don't just pass data; they communicate, delegate tasks, critique each other's work, and solve problems iteratively.
11
+ - **Production-Grade Engineering**: Built for developers. Benefit from Git version control, TypeScript type safety, CI/CD integration, and easy debugging—things that are hard to do with visual drag-and-drop tools.
12
+ - **Deep Embedding**: Don't just call an external webhook. Embed powerful AI agents directly into your existing backend services and APIs.
13
+
5
14
  ## Installation
6
15
 
7
16
  ```bash
package/package.json CHANGED
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "name": "overai",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "OverAI TypeScript AI Agents Framework - Production-ready Multi-Agent System",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "files": [
8
- "dist"
8
+ "dist",
9
+ "README.md",
10
+ "LICENSE"
9
11
  ],
10
12
  "bin": {
11
13
  "overai": "./dist/cli/index.js"
@@ -110,10 +112,5 @@
110
112
  },
111
113
  "engines": {
112
114
  "node": ">=14.0.0"
113
- },
114
- "files": [
115
- "dist",
116
- "README.md",
117
- "LICENSE"
118
- ]
115
+ }
119
116
  }