Skip to content

Commit a3e33ef

Browse files
committed
fix color for profound
1 parent af4eb8b commit a3e33ef

File tree

4 files changed

+63
-9
lines changed

4 files changed

+63
-9
lines changed

apps/docs/content/docs/en/tools/file.mdx

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: File
3-
description: Read and parse multiple files
3+
description: Read and write workspace files
44
---
55

66
import { BlockInfoCard } from "@/components/ui/block-info-card"
@@ -27,7 +27,7 @@ The File Parser tool is particularly useful for scenarios where your agents need
2727

2828
## Usage Instructions
2929

30-
Upload files directly or import from external URLs to get UserFile objects for use in other blocks.
30+
Read and parse files from uploads or URLs, write new workspace files, or append content to existing files.
3131

3232

3333

@@ -52,4 +52,45 @@ Parse one or more uploaded files or files from URLs (text, PDF, CSV, images, etc
5252
| `files` | file[] | Parsed files as UserFile objects |
5353
| `combinedContent` | string | Combined content of all parsed files |
5454

55+
### `file_write`
56+
57+
Create a new workspace file. If a file with the same name already exists, a numeric suffix is added (e.g.,
58+
59+
#### Input
60+
61+
| Parameter | Type | Required | Description |
62+
| --------- | ---- | -------- | ----------- |
63+
| `fileName` | string | Yes | File name \(e.g., "data.csv"\). If a file with this name exists, a numeric suffix is added automatically. |
64+
| `content` | string | Yes | The text content to write to the file. |
65+
| `contentType` | string | No | MIME type for new files \(e.g., "text/plain"\). Auto-detected from file extension if omitted. |
66+
67+
#### Output
68+
69+
| Parameter | Type | Description |
70+
| --------- | ---- | ----------- |
71+
| `id` | string | File ID |
72+
| `name` | string | File name |
73+
| `size` | number | File size in bytes |
74+
| `url` | string | URL to access the file |
75+
76+
### `file_append`
77+
78+
Append content to an existing workspace file. The file must already exist. Content is added to the end of the file.
79+
80+
#### Input
81+
82+
| Parameter | Type | Required | Description |
83+
| --------- | ---- | -------- | ----------- |
84+
| `fileName` | string | Yes | Name of an existing workspace file to append to. |
85+
| `content` | string | Yes | The text content to append to the file. |
86+
87+
#### Output
88+
89+
| Parameter | Type | Description |
90+
| --------- | ---- | ----------- |
91+
| `id` | string | File ID |
92+
| `name` | string | File name |
93+
| `size` | number | File size in bytes |
94+
| `url` | string | URL to access the file |
95+
5596

apps/docs/content/docs/en/tools/profound.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
99
type="profound"
10-
color="#1A1A2E"
10+
color="#000000"
1111
/>
1212

1313
{/* MANUAL-CONTENT-START:intro */}

apps/sim/app/(landing)/integrations/data/integrations.json

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2993,13 +2993,26 @@
29932993
"type": "file_v3",
29942994
"slug": "file",
29952995
"name": "File",
2996-
"description": "Read and parse multiple files",
2997-
"longDescription": "Upload files directly or import from external URLs to get UserFile objects for use in other blocks.",
2996+
"description": "Read and write workspace files",
2997+
"longDescription": "Read and parse files from uploads or URLs, write new workspace files, or append content to existing files.",
29982998
"bgColor": "#40916C",
29992999
"iconName": "DocumentIcon",
30003000
"docsUrl": "https://docs.sim.ai/tools/file",
3001-
"operations": [],
3002-
"operationCount": 0,
3001+
"operations": [
3002+
{
3003+
"name": "Read",
3004+
"description": "Parse one or more uploaded files or files from URLs (text, PDF, CSV, images, etc.)"
3005+
},
3006+
{
3007+
"name": "Write",
3008+
"description": "Create a new workspace file. If a file with the same name already exists, a numeric suffix is added (e.g., "
3009+
},
3010+
{
3011+
"name": "Append",
3012+
"description": "Append content to an existing workspace file. The file must already exist. Content is added to the end of the file."
3013+
}
3014+
],
3015+
"operationCount": 3,
30033016
"triggers": [],
30043017
"triggerCount": 0,
30053018
"authType": "none",
@@ -8617,7 +8630,7 @@
86178630
"name": "Profound",
86188631
"description": "AI visibility and analytics with Profound",
86198632
"longDescription": "Track how your brand appears across AI platforms. Monitor visibility scores, sentiment, citations, bot traffic, referrals, content optimization, and prompt volumes with Profound.",
8620-
"bgColor": "#1A1A2E",
8633+
"bgColor": "#000000",
86218634
"iconName": "ProfoundIcon",
86228635
"docsUrl": "https://docs.sim.ai/tools/profound",
86238636
"operations": [

apps/sim/blocks/blocks/profound.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export const ProfoundBlock: BlockConfig = {
6868
category: 'tools',
6969
integrationType: IntegrationType.Analytics,
7070
tags: ['seo', 'data-analytics'],
71-
bgColor: '#1A1A2E',
71+
bgColor: '#000000',
7272
icon: ProfoundIcon,
7373
authMode: AuthMode.ApiKey,
7474

0 commit comments

Comments
 (0)