You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
26
26
27
27
> 29 December 2025
28
28
29
-
- Initial commit: n8n community node for Cloud CLI[`fb0500b`](https://github.com/cloudcli-ai/n8n-nodes-cloud-cli/commit/fb0500b11c5de5de918e83843da82aae312ed41c)
30
-
- Initial commit: n8n community node for Cloud CLI[`8db6855`](https://github.com/cloudcli-ai/n8n-nodes-cloud-cli/commit/8db6855df07f5ac9a724a0629df1aeb87ba8a49f)
29
+
- Initial commit: n8n community node for CloudCLI[`fb0500b`](https://github.com/cloudcli-ai/n8n-nodes-cloud-cli/commit/fb0500b11c5de5de918e83843da82aae312ed41c)
30
+
- Initial commit: n8n community node for CloudCLI[`8db6855`](https://github.com/cloudcli-ai/n8n-nodes-cloud-cli/commit/8db6855df07f5ac9a724a0629df1aeb87ba8a49f)
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# n8n-nodes-cloud-cli
2
2
3
-
This is an n8n community node for [Cloud CLI](https://cloudcli.ai). It lets you manage cloud development environments and run AI coding agents (Claude Code, Cursor, Codex) directly from your n8n workflows.
3
+
This is an n8n community node for [CloudCLI](https://cloudcli.ai). It lets you manage cloud development environments and run AI coding agents (Claude Code, Cursor, Codex) directly from your n8n workflows.
4
4
5
5
[n8n](https://n8n.io/) is a fair-code licensed workflow automation platform.
6
6
@@ -25,7 +25,7 @@ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes
25
25
26
26
## Credentials
27
27
28
-
You need a Cloud CLI API key to use this node. Get your API key from [cloudcli.ai/api-keys](https://cloudcli.ai/api-keys).
28
+
You need a CloudCLI API key to use this node. Get your API key from [cloudcli.ai/api-keys](https://cloudcli.ai/api-keys).
description: 'Manage CloudCLI development environments and run AI agents',
21
21
defaults: {
22
-
name: 'Cloud CLI',
22
+
name: 'CloudCLI',
23
23
},
24
24
inputs: [NodeConnectionTypes.Main],
25
25
outputs: [NodeConnectionTypes.Main],
@@ -64,37 +64,37 @@ export class CloudCli implements INodeType {
64
64
{
65
65
name: 'Create',
66
66
value: 'create',
67
-
description: 'Create a new development environment. <a href="https://developer.cloudcli.ai/create-environment-3998768e0" target="_blank">Documentation</a>.',
67
+
description: 'Create a new development environment',
68
68
action: 'Create an environment',
69
69
},
70
70
{
71
71
name: 'Delete',
72
72
value: 'delete',
73
-
description: 'Delete an environment (must be stopped first). <a href="https://developer.cloudcli.ai/delete-environment-3998770e0" target="_blank">Documentation</a>.',
73
+
description: 'Delete an environment (must be stopped first)',
74
74
action: 'Delete an environment',
75
75
},
76
76
{
77
77
name: 'Get',
78
78
value: 'get',
79
-
description: 'Get details of a specific environment. <a href="https://developer.cloudcli.ai/get-environment-3998769e0" target="_blank">Documentation</a>.',
79
+
description: 'Get details of a specific environment',
80
80
action: 'Get an environment',
81
81
},
82
82
{
83
83
name: 'Get Many',
84
84
value: 'list',
85
-
description: 'Retrieve a list of environments. <a href="https://developer.cloudcli.ai/list-environments-3998767e0" target="_blank">Documentation</a>.',
85
+
description: 'Retrieve a list of environments',
86
86
action: 'Get many environments',
87
87
},
88
88
{
89
89
name: 'Start',
90
90
value: 'start',
91
-
description: 'Start a stopped environment. <a href="https://developer.cloudcli.ai/start-environment-3998771e0" target="_blank">Documentation</a>.',
91
+
description: 'Start a stopped environment',
92
92
action: 'Start an environment',
93
93
},
94
94
{
95
95
name: 'Stop',
96
96
value: 'stop',
97
-
description: 'Stop a running environment. <a href="https://developer.cloudcli.ai/stop-environment-3998772e0" target="_blank">Documentation</a>.',
97
+
description: 'Stop a running environment',
98
98
action: 'Stop an environment',
99
99
},
100
100
],
@@ -115,7 +115,7 @@ export class CloudCli implements INodeType {
115
115
{
116
116
name: 'Execute',
117
117
value: 'execute',
118
-
description: 'Run Claude Code or Cursor agent on a running environment',
118
+
description: 'Send a message and execute Claude Code, Cursor, Codex or Gemini agent',
Copy file name to clipboardExpand all lines: package.json
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,26 +1,30 @@
1
1
{
2
2
"name": "@cloudcli-ai/n8n-nodes-cloud-cli",
3
3
"version": "1.0.8",
4
-
"description": "n8n community node for Cloud CLI - manage development environments and run AI coding agents",
4
+
"description": "n8n community node for CloudCLI - manage development environments and run AI coding agents on your own remote development environments on demand and from any workflow",
0 commit comments