Skip to content

Commit c78c870

Browse files
authored
v0.6.8: mothership tool loop
v0.6.8: mothership tool loop
2 parents 19442f1 + 0c80438 commit c78c870

File tree

538 files changed

+42093
-17461
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

538 files changed

+42093
-17461
lines changed

apps/docs/components/icons.tsx

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3132,6 +3132,22 @@ export function QdrantIcon(props: SVGProps<SVGSVGElement>) {
31323132
)
31333133
}
31343134

3135+
export function QuiverIcon(props: SVGProps<SVGSVGElement>) {
3136+
return (
3137+
<svg {...props} viewBox='0 0 250 250' fill='none' xmlns='http://www.w3.org/2000/svg'>
3138+
<path d='m249.3 0.88h-248.5v248.2h248.5v-248.2z' fill='#F6F6F7' />
3139+
<path
3140+
d='m124.3 25h-5.93l-1.95 0.59-7.9 0.29-1.47 0.88-7.9 1.18-1.18 0.88-9.09 2.85-0.88 0.88-11.86 5.93-0.88 1.18-6.23 2.55-8.29 8.3-7.61 4.75-5.34 8.6-5.04 4.75-4.46 8.6-2.05 1.18-3.26 8.6-0.88 0.59-3.85 12.16-0.59 0.59-2.35 13.04v1.47l-0.59 7.12 0.3 1.18-0.3 3.15 1.18 13.04 0.59 0.88 0.88 7.51 0.88 1.18 3.85 12.16 0.88 0.6 4.44 9.97 1.18 0.88 4.15 8 12.73 16.17 4.45 2.06 8.8 8.3 0.88 0.29 4.16 3.15h1.18l8.2 4.75h0.88l7.9 3.44h0.88l9.38 2.85 0.88 0.3 13.33 1.46h107.9v-101.3l-0.88-2.06v-8.3l-0.59-0.88v-4.16l-4.75-14.23v-4.16l-11.26-19.46-1.48-1.48-10.37-13.05-5.63-3.15-7.61-7.31-3.15-1.18-5.93-4.75-1.48-0.29-7.01-4.15h-1.18l-8.2-3.15h-0.88l-10.37-3.14h-1.18l-8.49-1.18-2.06-0.88h-7.5z'
3141+
fill='#333'
3142+
/>
3143+
<path
3144+
d='m78.38 72.26 118.6 41.21c4.65 1.69 3.47 8.5-1.47 8.5h-74v74.32c0 5.04-7.11 5.92-8.78 1.17l-40.58-118.5c-1.28-3.95 2.27-8.11 6.19-6.72z'
3145+
fill='#F9F9F9'
3146+
/>
3147+
</svg>
3148+
)
3149+
}
3150+
31353151
export function AshbyIcon(props: SVGProps<SVGSVGElement>) {
31363152
return (
31373153
<svg {...props} viewBox='0 0 254 260' fill='none' xmlns='http://www.w3.org/2000/svg'>
@@ -4143,7 +4159,7 @@ export function InfisicalIcon(props: SVGProps<SVGSVGElement>) {
41434159
<svg {...props} viewBox='20 25 233 132' xmlns='http://www.w3.org/2000/svg'>
41444160
<path
41454161
d='m191.6 39.4c-20.3 0-37.15 13.21-52.9 30.61-12.99-16.4-29.8-30.61-51.06-30.61-27.74 0-50.44 23.86-50.44 51.33 0 26.68 21.43 51.8 48.98 51.8 20.55 0 37.07-13.86 51.32-31.81 12.69 16.97 29.1 31.41 53.2 31.41 27.13 0 49.85-22.96 49.85-51.4 0-27.12-20.44-51.33-48.95-51.33zm-104.3 77.94c-14.56 0-25.51-12.84-25.51-26.07 0-13.7 10.95-28.29 25.51-28.29 14.93 0 25.71 11.6 37.6 27.34-11.31 15.21-22.23 27.02-37.6 27.02zm104.4 0.25c-15 0-25.28-11.13-37.97-27.37 12.69-16.4 22.01-27.24 37.59-27.24 14.97 0 24.79 13.25 24.79 27.26 0 13-10.17 27.35-24.41 27.35z'
4146-
fill='currentColor'
4162+
fill='#000000'
41474163
/>
41484164
</svg>
41494165
)

apps/docs/components/ui/icon-mapping.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ import {
126126
PosthogIcon,
127127
PulseIcon,
128128
QdrantIcon,
129+
QuiverIcon,
129130
RDSIcon,
130131
RedditIcon,
131132
RedisIcon,
@@ -298,6 +299,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
298299
posthog: PosthogIcon,
299300
pulse_v2: PulseIcon,
300301
qdrant: QdrantIcon,
302+
quiver: QuiverIcon,
301303
rds: RDSIcon,
302304
reddit: RedditIcon,
303305
redis: RedisIcon,

apps/docs/content/docs/en/tools/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@
121121
"posthog",
122122
"pulse",
123123
"qdrant",
124+
"quiver",
124125
"rds",
125126
"reddit",
126127
"redis",
Lines changed: 131 additions & 0 deletions

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

Lines changed: 76 additions & 0 deletions
-3.3 KB
-9.6 KB
-3.08 KB
-96 Bytes
-213 Bytes

0 commit comments

Comments
 (0)