Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
688c933
feat(profound): add Profound AI visibility and analytics integration
waleedlatif1 Mar 30, 2026
357f44c
fix(profound): fix import ordering and JSON formatting for CI lint
waleedlatif1 Mar 30, 2026
4bb1836
fix(profound): gate metrics mapping on current operation to prevent s…
waleedlatif1 Mar 30, 2026
226987b
fix(profound): guard JSON.parse on filters, fix offset=0 falsy check,…
waleedlatif1 Mar 30, 2026
3fbb67c
lint
waleedlatif1 Mar 30, 2026
217a5ae
fix(docs): fix import ordering and trailing newline for docs lint
waleedlatif1 Mar 30, 2026
af43982
fix(scripts): sort generated imports to match Biome's organizeImports…
waleedlatif1 Mar 30, 2026
a224331
fix(profound): use != null checks for limit param across all tools
waleedlatif1 Mar 30, 2026
18e2218
fix(profound): flatten block output type to 'json' to pass block vali…
waleedlatif1 Mar 30, 2026
50fe6f1
fix(profound): remove invalid 'required' field from block inputs (not…
waleedlatif1 Mar 30, 2026
a2131bf
fix(profound): rename tool files from kebab-case to snake_case for do…
waleedlatif1 Mar 30, 2026
e00be8a
lint
waleedlatif1 Mar 30, 2026
8f629d9
fix(docs): let biome auto-fix import order, revert custom sort in gen…
waleedlatif1 Mar 30, 2026
d8e3875
fix(landing): fix import order in sim icon-mapping via biome
waleedlatif1 Mar 30, 2026
6fc7038
fix(scripts): match Biome's exact import sort order in docs generator
waleedlatif1 Mar 30, 2026
2386503
fix(generate-docs): produce Biome-compatible JSON output
waleedlatif1 Mar 30, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions apps/docs/components/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1285,6 +1285,17 @@ export function StartIcon(props: SVGProps<SVGSVGElement>) {
)
}

export function ProfoundIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg width='1em' height='1em' viewBox='0 0 55 55' xmlns='http://www.w3.org/2000/svg' {...props}>
<path
fill='currentColor'
d='M0 36.685V21.349a7.017 7.017 0 0 1 2.906-5.69l19.742-14.25A7.443 7.443 0 0 1 27.004 0h.062c1.623 0 3.193.508 4.501 1.452l19.684 14.207a7.016 7.016 0 0 1 2.906 5.69v12.302a7.013 7.013 0 0 1-2.907 5.689L31.527 53.562A7.605 7.605 0 0 1 27.078 55a7.641 7.641 0 0 1-4.465-1.44c-2.581-1.859-6.732-4.855-6.732-4.855V29.777c0-.249.28-.393.482-.248l10.538 7.605c.106.077.249.077.355 0l13.005-9.386a.306.306 0 0 0 0-.496l-13.005-9.386a.303.303 0 0 0-.355 0L.482 36.933A.304.304 0 0 1 0 36.685Z'
/>
</svg>
)
}

export function PineconeIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg
Expand Down
2 changes: 2 additions & 0 deletions apps/docs/components/ui/icon-mapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ import {
PolymarketIcon,
PostgresIcon,
PosthogIcon,
ProfoundIcon,
PulseIcon,
QdrantIcon,
QuiverIcon,
Expand Down Expand Up @@ -302,6 +303,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
polymarket: PolymarketIcon,
postgresql: PostgresIcon,
posthog: PosthogIcon,
profound: ProfoundIcon,
pulse_v2: PulseIcon,
qdrant: QdrantIcon,
quiver: QuiverIcon,
Expand Down
1 change: 1 addition & 0 deletions apps/docs/content/docs/en/tools/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@
"polymarket",
"postgresql",
"posthog",
"profound",
"pulse",
"qdrant",
"quiver",
Expand Down
Loading
Loading