@cascadeflow/n8n-nodes-cascadeflow 0.4.0 → 0.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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +6 -23
  3. package/package.json +10 -11
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Lemony Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -6,9 +6,9 @@
6
6
  <img alt="cascadeflow Logo" src="../../../.github/assets/CF_logo_dark.svg" width="533">
7
7
  </picture>
8
8
 
9
- # n8n-nodes-cascadeflow
9
+ # @cascadeflow/n8n-nodes-cascadeflow
10
10
 
11
- [![npm version](https://img.shields.io/npm/v/n8n-nodes-cascadeflow?color=red&label=npm)](https://www.npmjs.com/package/n8n-nodes-cascadeflow)
11
+ [![npm version](https://img.shields.io/npm/v/@cascadeflow/n8n-nodes-cascadeflow?color=red&label=npm)](https://www.npmjs.com/package/@cascadeflow/n8n-nodes-cascadeflow)
12
12
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](../../../LICENSE)
13
13
  [![n8n](https://img.shields.io/badge/n8n-1.0+-orange.svg)](https://n8n.io/)
14
14
 
@@ -34,7 +34,7 @@ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes
34
34
 
35
35
  1. Go to **Settings** > **Community Nodes**
36
36
  2. Select **Install**
37
- 3. Enter `n8n-nodes-cascadeflow` in **Enter npm package name**
37
+ 3. Enter `@cascadeflow/n8n-nodes-cascadeflow` in **Enter npm package name**
38
38
  4. Agree to the risks and install
39
39
 
40
40
  ### Manual installation
@@ -42,13 +42,13 @@ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes
42
42
  To get started install the package in your n8n root directory:
43
43
 
44
44
  ```bash
45
- npm install n8n-nodes-cascadeflow
45
+ npm install @cascadeflow/n8n-nodes-cascadeflow
46
46
  ```
47
47
 
48
48
  For Docker-based deployments add the following line before the font installation command in your [n8n Dockerfile](https://github.com/n8n-io/n8n/blob/master/docker/images/n8n/Dockerfile):
49
49
 
50
50
  ```dockerfile
51
- RUN cd /usr/local/lib/node_modules/n8n && npm install n8n-nodes-cascadeflow
51
+ RUN cd /usr/local/lib/node_modules/n8n && npm install @cascadeflow/n8n-nodes-cascadeflow
52
52
  ```
53
53
 
54
54
  ## Operations
@@ -323,7 +323,7 @@ Tested with n8n version 1.0+
323
323
 
324
324
  - [n8n community nodes documentation](https://docs.n8n.io/integrations/community-nodes/)
325
325
  - [cascadeflow GitHub](https://github.com/lemony-ai/cascadeflow)
326
- - [cascadeflow Documentation](https://docs.lemony.ai/cascadeflow)
326
+ - [cascadeflow Documentation](https://github.com/lemony-ai/cascadeflow)
327
327
 
328
328
  ## License
329
329
 
@@ -331,23 +331,6 @@ Tested with n8n version 1.0+
331
331
 
332
332
  ## Version history
333
333
 
334
- ### 1.1.0 (v0.2.1) - Coming Soon
335
-
336
- **Multi-Tenant Production Features:**
337
- - User profile system with 5 subscription tiers (FREE, STARTER, PRO, BUSINESS, ENTERPRISE)
338
- - Per-user rate limiting (hourly/daily request limits + budget enforcement)
339
- - Content safety guardrails (content moderation + PII detection)
340
- - Batch processing for high-volume workflows
341
- - Domain-specific model routing (medical, legal, code, etc.)
342
-
343
- **Python Library Features** (use via Python subprocess or HTTP API):
344
- - `UserProfile` for multi-tenant applications
345
- - `RateLimiter` with sliding window algorithm
346
- - `GuardrailsManager` for content moderation and PII detection
347
- - `BatchConfig` for efficient bulk processing
348
-
349
- *Note: Full n8n node integration coming in future release. Currently available in Python API.*
350
-
351
334
  ### 1.0.0
352
335
 
353
336
  - Initial release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cascadeflow/n8n-nodes-cascadeflow",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "n8n node for cascadeflow - Smart AI model cascading with 40-85% cost savings",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",
@@ -22,14 +22,6 @@
22
22
  "directory": "packages/integrations/n8n"
23
23
  },
24
24
  "main": "index.js",
25
- "scripts": {
26
- "build": "tsc && gulp build:icons",
27
- "dev": "tsc --watch",
28
- "format": "prettier nodes credentials --write",
29
- "lint": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" package.json",
30
- "lintfix": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" package.json --fix",
31
- "prepublishOnly": "npm run build && npm run lint"
32
- },
33
25
  "files": [
34
26
  "dist"
35
27
  ],
@@ -56,9 +48,16 @@
56
48
  "n8n-workflow": "*"
57
49
  },
58
50
  "dependencies": {
59
- "@cascadeflow/core": "workspace:*",
51
+ "@cascadeflow/core": "^0.4.0",
60
52
  "openai": "^4.73.1",
61
53
  "@anthropic-ai/sdk": "^0.30.0",
62
54
  "groq-sdk": "^0.5.0"
55
+ },
56
+ "scripts": {
57
+ "build": "tsc && gulp build:icons",
58
+ "dev": "tsc --watch",
59
+ "format": "prettier nodes credentials --write",
60
+ "lint": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" package.json",
61
+ "lintfix": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" package.json --fix"
63
62
  }
64
- }
63
+ }