Skip to content

Commit 264d219

Browse files
committed
fix: change cloudcli branding and descriptions
1 parent bbbdba6 commit 264d219

File tree

5 files changed

+23
-19
lines changed

5 files changed

+23
-19
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
2626

2727
> 29 December 2025
2828
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)
3131
- Release 1.0.5 [`3c84834`](https://github.com/cloudcli-ai/n8n-nodes-cloud-cli/commit/3c84834ad23ca399b959586ca787146419c4bd23)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# n8n-nodes-cloud-cli
22

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.
44

55
[n8n](https://n8n.io/) is a fair-code licensed workflow automation platform.
66

@@ -25,7 +25,7 @@ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes
2525

2626
## Credentials
2727

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).
2929

3030
## Resources
3131

credentials/CloudCliApi.credentials.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type {
88

99
export class CloudCliApi implements ICredentialType {
1010
name = 'cloudCliApi';
11-
displayName = 'Cloud CLI API';
11+
displayName = 'CloudCLI API';
1212
documentationUrl = 'https://cloudcli.ai/api-keys';
1313
icon: Icon = 'file:logo.svg';
1414
properties: INodeProperties[] = [

nodes/CloudCli/CloudCli.node.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ import { NodeConnectionTypes, NodeOperationError } from 'n8n-workflow';
1111

1212
export class CloudCli implements INodeType {
1313
description: INodeTypeDescription = {
14-
displayName: 'Cloud CLI',
14+
displayName: 'CloudCLI',
1515
name: 'cloudCli',
1616
icon: 'file:logo.svg',
1717
group: ['transform'],
1818
version: 1,
1919
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
2020
description: 'Manage CloudCLI development environments and run AI agents',
2121
defaults: {
22-
name: 'Cloud CLI',
22+
name: 'CloudCLI',
2323
},
2424
inputs: [NodeConnectionTypes.Main],
2525
outputs: [NodeConnectionTypes.Main],
@@ -64,37 +64,37 @@ export class CloudCli implements INodeType {
6464
{
6565
name: 'Create',
6666
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',
6868
action: 'Create an environment',
6969
},
7070
{
7171
name: 'Delete',
7272
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)',
7474
action: 'Delete an environment',
7575
},
7676
{
7777
name: 'Get',
7878
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',
8080
action: 'Get an environment',
8181
},
8282
{
8383
name: 'Get Many',
8484
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',
8686
action: 'Get many environments',
8787
},
8888
{
8989
name: 'Start',
9090
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',
9292
action: 'Start an environment',
9393
},
9494
{
9595
name: 'Stop',
9696
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',
9898
action: 'Stop an environment',
9999
},
100100
],
@@ -115,7 +115,7 @@ export class CloudCli implements INodeType {
115115
{
116116
name: 'Execute',
117117
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',
119119
action: 'Execute an agent',
120120
},
121121
],

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
11
{
22
"name": "@cloudcli-ai/n8n-nodes-cloud-cli",
33
"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",
55
"license": "MIT",
66
"homepage": "https://cloudcli.ai",
77
"keywords": [
88
"n8n-community-node-package",
99
"n8n",
1010
"cloud-cli",
1111
"cloudcli",
12-
"environment",
12+
"dev environment",
1313
"claude code",
1414
"cursor",
15+
"Gemini",
1516
"codex",
1617
"ai",
17-
"agent",
18+
"ai agent",
1819
"github",
1920
"automation",
20-
"AI development"
21+
"AI development",
22+
"remote development environment",
23+
"coding agent",
24+
"claude code mobile"
2125
],
2226
"author": {
23-
"name": "Cloud CLI",
27+
"name": "CloudCLI",
2428
"email": "hello@cloudcli.ai"
2529
},
2630
"repository": {

0 commit comments

Comments
 (0)