text stringlengths 3 8.33k | repo stringclasses 52
values | path stringlengths 6 141 | language stringclasses 35
values | sha stringlengths 64 64 | chunk_index int32 0 273 | n_tokens int32 1 896 |
|---|---|---|---|---|---|---|
// biome-ignore assist/source/organizeImports: <explanation>
import { siteConfig } from "@/lib/landing-config";
import Image from "next/image";
export function QuoteSection() {
const { quoteSection } = siteConfig;
return (
<section
id="quote"
className="flex flex-col items-center justify-center ga... | clawguard | components/sections/quote-section.tsx | TypeScript | a6093d366c6f4f84d78d2407ea7796820dbcb5b539920aaeeef8b1ea30cbbc57 | 0 | 305 |
"use client";
import { ChevronDownIcon, ChevronUpIcon } from "lucide-react";
import { Accordion as AccordionPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
function Accordion({ className, ...props }: React.ComponentProps<typeof AccordionPrimitive.Root>) {
return (... | clawguard | components/ui/accordion.tsx | TypeScript | 8994f922e03e057b3796e92d0edc87188c06be486bf400fcac60d63296e12363 | 0 | 672 |
import { cva, type VariantProps } from "class-variance-authority";
import type * as React from "react";
import { cn } from "@/lib/utils";
const alertVariants = cva(
"group/alert relative grid w-full gap-0.5 rounded-lg border px-2.5 py-2 text-left text-sm has-data-[slot=alert-action]:relative has-data-[slot=alert-ac... | clawguard | components/ui/alert.tsx | TypeScript | 093157b72f38caea4540f8ee50f1c2a3c16fb4ab70d601d61eade77c95d173f0 | 0 | 626 |
"use client";
import { Avatar as AvatarPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
function Avatar({
className,
size = "default",
...props
}: React.ComponentProps<typeof AvatarPrimitive.Root> & {
size?: "default" | "sm" | "lg";
}) {
return (
<Avat... | clawguard | components/ui/avatar.tsx | TypeScript | fd4ed39dc95ded493426d15af1170bffa1f90dfce8561ebc422190cb94c9b70b | 0 | 896 |
[&>svg]:size-5 group-has-data-[size=sm]/avatar-group:[&>svg]:size-3",
className,
)}
{...props}
/>
);
}
export { Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage };
| clawguard | components/ui/avatar.tsx | TypeScript | 182dccb3b2feeccb565d4269fd9679196b824ba9d9d5a9249e6421f7a464fcb6 | 1 | 66 |
import { cva, type VariantProps } from "class-variance-authority";
import { Slot } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
const badgeVariants = cva(
"group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-4xl border borde... | clawguard | components/ui/badge.tsx | TypeScript | 960f679344c9933ab47b8965fce554130892a6fd9b065acdf828e7d6fdd15877 | 0 | 522 |
import { ChevronRightIcon, MoreHorizontalIcon } from "lucide-react";
import { Slot } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
function Breadcrumb({ className, ...props }: React.ComponentProps<"nav">) {
return (
<nav aria-label="breadcrumb" data-slot="breadcrumb" cla... | clawguard | components/ui/breadcrumb.tsx | TypeScript | fe1fe4ca5f7f16209ea57b1f5a094c4f7d1cf2271b761af48a9fdaa57cd97647 | 0 | 643 |
import { cva, type VariantProps } from "class-variance-authority";
import { Slot } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
const buttonVariants = cva(
"group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding t... | clawguard | components/ui/button.tsx | TypeScript | ba850f29c87937a798eb29502bdaf378e06eaa90d02ad3c1aa80d0a47bfa3852 | 0 | 896 |
not([class*='size-'])]:size-3",
"icon-sm":
"size-7 rounded-[min(var(--radius-md),12px)] in-data-[slot=button-group]:rounded-lg",
"icon-lg": "size-9",
},
},
defaultVariants: {
variant: "default",
size: "default",
},
},
);
function Button({
className,
variant... | clawguard | components/ui/button.tsx | TypeScript | 06306964a0fc56b092e774de5e53753c7ac767c93feaad552a33f2a36f38a934 | 1 | 226 |
import type * as React from "react";
import { cn } from "@/lib/utils";
function Card({
className,
size = "default",
...props
}: React.ComponentProps<"div"> & { size?: "default" | "sm" }) {
return (
<div
data-slot="card"
data-size={size}
className={cn(
"group/card flex flex-col ga... | clawguard | components/ui/card.tsx | TypeScript | e784213e96d5284dcfb7b7f3f73ff9cdfdedbca100bac4259aa72f6ddabd2eb2 | 0 | 837 |
"use client";
import * as React from "react";
import type { TooltipValueType } from "recharts";
import * as RechartsPrimitive from "recharts";
import { cn } from "@/lib/utils";
// Format: { THEME_NAME: CSS_SELECTOR }
const THEMES = { light: "", dark: ".dark" } as const;
const INITIAL_DIMENSION = { width: 320, heigh... | clawguard | components/ui/chart.tsx | TypeScript | ed88ae565a4f550b45329ff641fcdc0d5dde8c5cc998d3cffa383500b7939721 | 0 | 896 |
`,
)
.join("\n"),
}}
/>
);
};
const ChartTooltip = RechartsPrimitive.Tooltip;
function ChartTooltipContent({
active,
payload,
className,
indicator = "dot",
hideLabel = false,
hideIndicator = false,
label,
labelFormatter,
labelClassName,
formatter,
color,
nameKey... | clawguard | components/ui/chart.tsx | TypeScript | d0e8f34b3b7733e62d8093004a01bdfef2acaf1337a7d0697751e5592d3a6e54 | 1 | 896 |
}
/>
)
)}
<div
className={cn(
"flex flex-1 justify-between leading-none",
nestLabel ? "items-end" : "items-center",
)}
>
... | clawguard | components/ui/chart.tsx | TypeScript | d0d2df0de06af2b7ec4ce4c137a3b9cef7d62bb46039223f72904109caf06128 | 2 | 700 |
"use client";
import { CheckIcon } from "lucide-react";
import { Checkbox as CheckboxPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
function Checkbox({ className, ...props }: React.ComponentProps<typeof CheckboxPrimitive.Root>) {
return (
<CheckboxPrimitive.R... | clawguard | components/ui/checkbox.tsx | TypeScript | 2c4ed392bf87a17546724e281b5bb927167fdaf519daf4381580fbe1703407c8 | 0 | 361 |
"use client";
import type React from "react";
import { useEffect, useState } from "react";
import { codeToHtml } from "shiki";
import { cn } from "@/lib/utils";
export type CodeBlockProps = {
children?: React.ReactNode;
className?: string;
} & React.HTMLProps<HTMLDivElement>;
function CodeBlock({ children, class... | clawguard | components/ui/code-block.tsx | TypeScript | cca36276d24787794d0fb7894e547364db11242e5afa0ffe3b5c2521935a4156 | 0 | 485 |
"use client";
import { XIcon } from "lucide-react";
import { Dialog as DialogPrimitive } from "radix-ui";
import type * as React from "react";
import { Button } from "@/components/ui/button";
import { cn } from "@/lib/utils";
function Dialog({ ...props }: React.ComponentProps<typeof DialogPrimitive.Root>) {
return ... | clawguard | components/ui/dialog.tsx | TypeScript | ee47198bdfcae5310a78a3d7d9d38120913aa6d4d93eeac77258fbef36c921d9 | 0 | 896 |
sm:justify-end",
className,
)}
{...props}
>
{children}
{showCloseButton && (
<DialogPrimitive.Close asChild>
<Button variant="outline">Close</Button>
</DialogPrimitive.Close>
)}
</div>
);
}
function DialogTitle({ className, ...props }: React.Com... | clawguard | components/ui/dialog.tsx | TypeScript | 19f1e5a25c731b7a517c2ae95ffd63c80321418a80449d0749eaef40ad9a2538 | 1 | 254 |
"use client";
import type * as React from "react";
import { Drawer as DrawerPrimitive } from "vaul";
import { cn } from "@/lib/utils";
function Drawer({ ...props }: React.ComponentProps<typeof DrawerPrimitive.Root>) {
return <DrawerPrimitive.Root data-slot="drawer" {...props} />;
}
function DrawerTrigger({ ...pro... | clawguard | components/ui/drawer.tsx | TypeScript | 2c7b84dafbb47ae1c52bc97698e3aed9b4445cfded6946ccf4aa2bb1393bda7a | 0 | 896 |
>
<div className="mx-auto mt-4 hidden h-1 w-[100px] shrink-0 rounded-full bg-muted group-data-[vaul-drawer-direction=bottom]/drawer-content:block" />
{children}
</DrawerPrimitive.Content>
</DrawerPortal>
);
}
function DrawerHeader({ className, ...props }: React.ComponentProps<"div">) {
re... | clawguard | components/ui/drawer.tsx | TypeScript | 86f51f9cbbc18535a035d5235b80c220bf9149bacad9630c3efc0895264c680d | 1 | 423 |
"use client";
import { CheckIcon, ChevronRightIcon } from "lucide-react";
import { DropdownMenu as DropdownMenuPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>) {
return <Dr... | clawguard | components/ui/dropdown-menu.tsx | TypeScript | 13458b13f564ae9449bfb3990db86450a53c9d772c10940207a75a9164932064 | 0 | 896 |
4 data-[variant=destructive]:*:[svg]:text-destructive",
className,
)}
{...props}
/>
);
}
function DropdownMenuCheckboxItem({
className,
children,
checked,
inset,
...props
}: React.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem> & {
inset?: boolean;
}) {
return (
<D... | clawguard | components/ui/dropdown-menu.tsx | TypeScript | 593f0b996655c12c3da39c41d02452c92de9575b84b70a43d7709e2eaad61654 | 1 | 896 |
-menu-shortcut"
className={cn(
"ml-auto text-xs tracking-widest text-muted-foreground group-focus/dropdown-menu-item:text-accent-foreground",
className,
)}
{...props}
/>
);
}
function DropdownMenuSub({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>) {
retur... | clawguard | components/ui/dropdown-menu.tsx | TypeScript | af19659c3dd23d3c9abd0b4bc659f26d8cdf7d3ec59cdcb40ff9ec25580ee660 | 2 | 605 |
"use client";
import * as Accordion from "@radix-ui/react-accordion";
import { motion, useInView } from "motion/react";
import type React from "react";
import { forwardRef, type ReactNode, useEffect, useRef, useState } from "react";
import { cn } from "@/lib/utils";
type AccordionItemProps = {
children: React.Reac... | clawguard | components/ui/feature-slideshow.tsx | TypeScript | 4c38122dd2e114104db312112988cfcc39013d72fe0fcf2bd5d7126c03f1db72 | 0 | 896 |
: carouselRef.current.scrollLeft + offset,
behavior: "smooth",
});
}
}
};
useEffect(() => {
const timer = setInterval(() => {
setCurrentIndex((prevIndex) =>
prevIndex !== undefined ? (prevIndex + 1) % featureItems.length : 0,
);
}, collapseDelay);
return... | clawguard | components/ui/feature-slideshow.tsx | TypeScript | 147c4e27e324c379072d1e63c68a572c12a68bc15c09d13d6a2712bfdbba8b58 | 1 | 896 |
-w-7xl mx-auto">
<div className="grid h-full grid-cols-5 gap-x-10 px-10 md:px-20 items-center w-full">
<div
className={`col-span-2 w-full h-full hidden lg:flex md:items-center ${
ltr ? "md:order-2 md:justify-end" : "justify-start"
}`}
>
<Acco... | clawguard | components/ui/feature-slideshow.tsx | TypeScript | 85cf3b523c392ff84add5eeec95c889ce09f395fa3f04b7037decb357a4517bf | 2 | 896 |
(90deg,transparent,black_10%,white_90%,transparent)] [mask-image:linear-gradient(90deg,transparent,black_10%,white_90%,transparent)] [scrollbar-width:none] lg:hidden [&::-webkit-scrollbar]:hidden snap-mandatory"
style={{
padding: "50px calc(50%)",
}}
>
{featur... | clawguard | components/ui/feature-slideshow.tsx | TypeScript | 6db253edc0917236ec73873e8c2c4132eb447bb8776d3a1c72e90ee0e5f4fd5c | 3 | 661 |
"use client";
import { cva, type VariantProps } from "class-variance-authority";
import { useMemo } from "react";
import { Label } from "@/components/ui/label";
import { Separator } from "@/components/ui/separator";
import { cn } from "@/lib/utils";
function FieldSet({ className, ...props }: React.ComponentProps<"fie... | clawguard | components/ui/field.tsx | TypeScript | 3ac0e3622b5afe9f0f30dd60d8388840ba0a421f3a3609c1729dda98caa210f3 | 0 | 896 |
-0.5 leading-snug", className)}
{...props}
/>
);
}
function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>) {
return (
<Label
data-slot="field-label"
className={cn(
"group/field-label peer/field-label flex w-fit gap-2 leading-snug group-data-[disabled=true]... | clawguard | components/ui/field.tsx | TypeScript | 9296f9239c44e33991315b52af81ce8de2372810f7f4dd559850716540c116a6 | 1 | 896 |
?.message && <li key={index}>{error.message}</li>)}
</ul>
);
}, [children, errors]);
if (!content) {
return null;
}
return (
<div
role="alert"
data-slot="field-error"
className={cn("text-sm font-normal text-destructive", className)}
{...props}
>
{content}
... | clawguard | components/ui/field.tsx | TypeScript | 6914e1d1c69e6275fc3832515aa19097078cc206402c3e0b9340395283a4e6e0 | 2 | 128 |
"use client";
import type React from "react";
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
import { cn, colorWithOpacity, getRGBA } from "@/lib/utils";
interface FlickeringGridProps extends React.HTMLAttributes<HTMLDivElement> {
squareSize?: number;
gridGap?: number;
flickerChance?... | clawguard | components/ui/flickering-grid.tsx | TypeScript | 20ef7dcf4d688d37ddfcb20a8e871740afed9f4ab9bff0d6d08bb3f0c218d155 | 0 | 896 |
, gridGap, maxOpacity],
);
const updateSquares = useCallback(
(squares: Float32Array, deltaTime: number) => {
for (let i = 0; i < squares.length; i++) {
if (Math.random() < flickerChance * deltaTime) {
squares[i] = Math.random() * maxOpacity;
}
}
},
[flickerChance,... | clawguard | components/ui/flickering-grid.tsx | TypeScript | ce5745a45568599f7e2d675aea414f2a94e55e0af9b5e7f497a50f2ad2e0ed07 | 1 | 488 |
"use client";
import createGlobe, { type COBEOptions } from "cobe";
import { useMotionValue, useSpring } from "motion/react";
import { useTheme } from "next-themes";
import { useEffect, useMemo, useRef } from "react";
import { cn } from "@/lib/utils";
const MOVEMENT_DAMPING = 1400;
const GLOBE_CONFIG: COBEOptions =... | clawguard | components/ui/globe.tsx | TypeScript | 4f0eff8fcad479d90d92b4335d1ae320db465cfac78251614137ca1afec4419d | 0 | 896 |
ResizeObserver(syncWidth);
ro.observe(container);
window.addEventListener("resize", syncWidth);
return () => {
cancelAnimationFrame(rafId);
ro.disconnect();
window.removeEventListener("resize", syncWidth);
globe?.destroy();
};
}, [finalConfig]);
return (
<div
ref=... | clawguard | components/ui/globe.tsx | TypeScript | f8f6d14f2a017470e03d9ae79fdacfc6308ab5710a562a0c87bc32110250250c | 1 | 242 |
/* eslint-disable @next/next/no-img-element */
"use client";
import { Play, XIcon } from "lucide-react";
import { AnimatePresence, motion } from "motion/react";
import { useState } from "react";
import { cn } from "@/lib/utils";
type AnimationStyle =
| "from-bottom"
| "from-center"
| "from-top"
| "from-left"... | clawguard | components/ui/hero-video-dialog.tsx | TypeScript | fce0d7eeb0dd90c0ce58f2f80740f7423579048ebab67d33a641e067a7328f73 | 0 | 896 |
-center justify-center rounded-full bg-gradient-to-t from-secondary to-white/10 shadow-md transition-all duration-200 ease-out group-hover:scale-[1.2]`}
>
<Play
className="size-8 scale-100 fill-white text-white transition-transform duration-200 ease-out group-hover:scale-105"
... | clawguard | components/ui/hero-video-dialog.tsx | TypeScript | 6249aeb09a85a4f3bddf52044aac12d6611460e591c58714c739820d4d6ef3cd | 1 | 494 |
import type * as React from "react";
import { cn } from "@/lib/utils";
function Input({ className, type, ...props }: React.ComponentProps<"input">) {
return (
<input
type={type}
data-slot="input"
className={cn(
"h-8 w-full min-w-0 rounded-lg border border-input bg-transparent px-2.5 py... | clawguard | components/ui/input.tsx | TypeScript | e25af441a4fea19e6a04d662f61474252198695be7870bc422de82cd4c1f9e74 | 0 | 284 |
"use client";
import { Label as LabelPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
function Label({ className, ...props }: React.ComponentProps<typeof LabelPrimitive.Root>) {
return (
<LabelPrimitive.Root
data-slot="label"
className={cn(
... | clawguard | components/ui/label.tsx | TypeScript | e154e018646d99a0e4107a74828eb1745f84c1e3aafb863029ea2a5e1cd1b6ac | 0 | 168 |
import type { Token } from "marked";
import { marked } from "marked";
import { type ComponentPropsWithoutRef, memo, useId, useMemo } from "react";
import type { ExtraProps } from "react-markdown";
import ReactMarkdown, { type Components } from "react-markdown";
import remarkGfm from "remark-gfm";
import { cn } from "@/... | clawguard | components/ui/markdown.tsx | TypeScript | 296d415329a7c98cf993caf1df0b2e859134dab99a7f233a4153221e8a27de41 | 0 | 669 |
import type { ComponentPropsWithoutRef } from "react";
import { cn } from "@/lib/utils";
interface MarqueeProps extends ComponentPropsWithoutRef<"div"> {
className?: string;
reverse?: boolean;
pauseOnHover?: boolean;
children: React.ReactNode;
vertical?: boolean;
repeat?: number;
}
export function Marquee... | clawguard | components/ui/marquee.tsx | TypeScript | b01e305409f5b2a91d7fcb142ae2a47a6e643bfd16285029a9177776f5c65c5b | 0 | 306 |
"use client";
import { cubicBezier, type HTMLMotionProps, motion, useInView } from "motion/react";
import React, { useEffect, useRef, useState } from "react";
import { cn } from "@/lib/utils";
export interface OrbitingCirclesProps extends HTMLMotionProps<"div"> {
className?: string;
children?: React.ReactNode;
... | clawguard | components/ui/orbiting-circle.tsx | TypeScript | e5b485b018882e21399ff8504f9921d8e920db9618cf60e594fcd292b974f04b | 0 | 784 |
"use client";
import { Progress as ProgressPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
function Progress({
className,
value,
...props
}: React.ComponentProps<typeof ProgressPrimitive.Root>) {
return (
<ProgressPrimitive.Root
data-slot="progres... | clawguard | components/ui/progress.tsx | TypeScript | 8ec6f889ddd8dd85fa35b8f8570a847780a3cdee2a977108607f0a9f765a6c8b | 0 | 191 |
"use client";
import { ChevronDownIcon } from "lucide-react";
import type React from "react";
import { createContext, useContext, useEffect, useRef, useState } from "react";
import { cn } from "@/lib/utils";
import { Markdown } from "./markdown";
import { type Mode, useTextStream } from "./response-stream";
type Reas... | clawguard | components/ui/reasoning.tsx | TypeScript | 19d741377d2fab4cd849150ec9cc03e287169c9faac37b8134f2269448578fd8 | 0 | 896 |
,
onComplete,
fadeDuration,
segmentDelay,
characterChunkSize,
}: ReasoningResponseProps) {
const { isOpen } = useReasoningContext();
const { displayedText } = useTextStream({
textStream: text,
speed,
mode,
onComplete,
fadeDuration,
segmentDelay,
characterChunkSize,
});
retur... | clawguard | components/ui/reasoning.tsx | TypeScript | 689bfdc44c1fd7f2f82fc2ff3d9d5917c0d5fb67bc4b7591cd33185812c9c136 | 1 | 135 |
"use client";
import type React from "react";
import { useCallback, useEffect, useRef, useState } from "react";
import { cn } from "@/lib/utils";
export type Mode = "typewriter" | "fade";
export type UseTextStreamOptions = {
textStream: string | AsyncIterable<string>;
speed?: number;
mode?: Mode;
onComplete?... | clawguard | components/ui/response-stream.tsx | TypeScript | 0b80e0b40c3c446df7020ba969b2a715f4257ad7d662fb29623132d3d489b6cc | 0 | 896 |
=== "fade") {
try {
const segmenter = new Intl.Segmenter(navigator.language, {
granularity: "word",
});
const segmentIterator = segmenter.segment(text);
const newSegments = Array.from(segmentIterator).map((segment, index) => ({
text: segment.segmen... | clawguard | components/ui/response-stream.tsx | TypeScript | 3277c62a399e6f88044b8d72ec68b6dcb94d383b44f85e964bec1b97ed2044df | 1 | 896 |
, where 1 is slowest and 100 is fastest
className?: string;
onComplete?: () => void;
as?: keyof React.JSX.IntrinsicElements; // Element type to render
fadeDuration?: number; // Custom fade duration in ms (overrides speed)
segmentDelay?: number; // Custom delay between segments in ms (overrides speed)
charac... | clawguard | components/ui/response-stream.tsx | TypeScript | a421c99d7f279d09d5997cd3c99c551f5a66d905dc801bbef72c0ae84c24bf81 | 2 | 571 |
"use client";
import { ScrollArea as ScrollAreaPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
function ScrollArea({
className,
children,
...props
}: React.ComponentProps<typeof ScrollAreaPrimitive.Root>) {
return (
<ScrollAreaPrimitive.Root
data-... | clawguard | components/ui/scroll-area.tsx | TypeScript | 45a6210527ef678889ab685d9421d2655c3da5112866b35c5fbb4c0b8f7d102b | 0 | 391 |
"use client";
import { CheckIcon, ChevronDownIcon, ChevronUpIcon } from "lucide-react";
import { Select as SelectPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
function Select({ ...props }: React.ComponentProps<typeof SelectPrimitive.Root>) {
return <SelectPrimit... | clawguard | components/ui/select.tsx | TypeScript | de3f785f34e1e9e67400b3ff61c75ccd3c09b093e9c02471b66e0462c36cd521 | 0 | 896 |
[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",
position === "popper" &&
"data-[side=bottom]:transl... | clawguard | components/ui/select.tsx | TypeScript | 630fd9525ed5086123bfea1fa9d60b1a98f8faca18345f8650c34770649f6a92 | 1 | 896 |
)]:size-4",
className,
)}
{...props}
>
<ChevronUpIcon />
</SelectPrimitive.ScrollUpButton>
);
}
function SelectScrollDownButton({
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>) {
return (
<SelectPrimitive.ScrollDownButton
data-s... | clawguard | components/ui/select.tsx | TypeScript | cb530ad86a0512542d14f16c9be27690ce2437db17f49d0a4a98ca99bf4fbf7a | 2 | 170 |
"use client";
import { Separator as SeparatorPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
function Separator({
className,
orientation = "horizontal",
decorative = true,
...props
}: React.ComponentProps<typeof SeparatorPrimitive.Root>) {
return (
<S... | clawguard | components/ui/separator.tsx | TypeScript | 76ad369936ed311246478368f57c78822bc48c3fac0cb1c2b58f111f87df75d1 | 0 | 159 |
"use client";
import { XIcon } from "lucide-react";
import { Dialog as SheetPrimitive } from "radix-ui";
import type * as React from "react";
import { Button } from "@/components/ui/button";
import { cn } from "@/lib/utils";
function Sheet({ ...props }: React.ComponentProps<typeof SheetPrimitive.Root>) {
return <Sh... | clawguard | components/ui/sheet.tsx | TypeScript | 0f8456a1631d62576a8381c30cb166c78015f2e803f868596d85824698cd3ab0 | 0 | 896 |
-in-from-top-10 data-closed:animate-out data-closed:fade-out-0 data-[side=bottom]:data-closed:slide-out-to-bottom-10 data-[side=left]:data-closed:slide-out-to-left-10 data-[side=right]:data-closed:slide-out-to-right-10 data-[side=top]:data-closed:slide-out-to-top-10",
className,
)}
{...props}
... | clawguard | components/ui/sheet.tsx | TypeScript | 27f6b52654a1776132e4a300938e9e7c00b3df868a38c9bd7c9f238a3b4e9e8a | 1 | 511 |
"use client";
import { cva, type VariantProps } from "class-variance-authority";
import { PanelLeftIcon } from "lucide-react";
import { Slot } from "radix-ui";
import * as React from "react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Separator } from "@/co... | clawguard | components/ui/sidebar.tsx | TypeScript | 426996d19f500637a9786e75a2e240df6bd036b37074460cdb16eafb02e9c13f | 0 | 896 |
h-svh w-full has-data-[variant=inset]:bg-sidebar",
className,
)}
{...props}
>
{children}
</div>
</SidebarContext.Provider>
);
}
function Sidebar({
side = "left",
variant = "sidebar",
collapsible = "offcanvas",
className,
children,
dir,
...props
}: React... | clawguard | components/ui/sidebar.tsx | TypeScript | b3a6c95bc86680c60e9f86d8f26aa4a473523c2b9ca0a30d186e8df765f17626 | 1 | 896 |
-width-icon)+(--spacing(4))+2px)]"
: "group-data-[collapsible=icon]:w-(--sidebar-width-icon) group-data-[side=left]:border-r group-data-[side=right]:border-l",
className,
)}
{...props}
>
<div
data-sidebar="sidebar"
data-slot="sidebar-inner"
... | clawguard | components/ui/sidebar.tsx | TypeScript | edef080ba950418488fec1825d000040b089fe2289421a998e12242b1766a1d8 | 2 | 896 |
[state=collapsed]:ml-2",
className,
)}
{...props}
/>
);
}
function SidebarInput({ className, ...props }: React.ComponentProps<typeof Input>) {
return (
<Input
data-slot="sidebar-input"
data-sidebar="input"
className={cn("h-8 w-full bg-background shadow-none", className... | clawguard | components/ui/sidebar.tsx | TypeScript | 5d8f79cb38c8513fb7da8ebfc91439ce1795aa2db5c243dba0f55678bd8e9e08 | 3 | 896 |
inset-2 hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 md:after:hidden [&>svg]:size-4 [&>svg]:shrink-0",
className,
)}
{...props}
/>
);
}
function SidebarGroupContent({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot... | clawguard | components/ui/sidebar.tsx | TypeScript | abd31470f955f4132cf7c94de519ecccce7bebcb2b98992da877f5a483e86e0d | 4 | 896 |
menu-button"
data-size={size}
data-active={isActive}
className={cn(sidebarMenuButtonVariants({ variant, size }), className)}
{...props}
/>
);
if (!tooltip) {
return button;
}
if (typeof tooltip === "string") {
tooltip = {
children: tooltip,
};
}
return (
... | clawguard | components/ui/sidebar.tsx | TypeScript | 7b281a9478a2c97567760ba709b5f4482f5013ab39bb74b56dd0e71512d8d5d2 | 5 | 896 |
menu-skeleton-icon" />}
<Skeleton
className="h-4 max-w-(--skeleton-width) flex-1"
data-sidebar="menu-skeleton-text"
style={
{
"--skeleton-width": width,
} as React.CSSProperties
}
/>
</div>
);
}
function SidebarMenuSub({ className, ...pr... | clawguard | components/ui/sidebar.tsx | TypeScript | aaaa29920cceac4c7e6b1ebc269b0151d1c94ff4b4f13723a96e3afbfb729804 | 6 | 661 |
import { cn } from "@/lib/utils";
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("animate-pulse rounded-md bg-muted", className)}
{...props}
/>
);
}
export { Skeleton };
| clawguard | components/ui/skeleton.tsx | TypeScript | 485c6867daf193a560bc4a0c5f8eea424cb823b7eddff0e6f7768ffe79eb552b | 0 | 82 |
"use client";
import {
CircleCheckIcon,
InfoIcon,
Loader2Icon,
OctagonXIcon,
TriangleAlertIcon,
} from "lucide-react";
import { useTheme } from "next-themes";
import { Toaster as Sonner, type ToasterProps } from "sonner";
const Toaster = ({ ...props }: ToasterProps) => {
const { theme = "system" } = useTh... | clawguard | components/ui/sonner.tsx | TypeScript | 651c77cbb2aed9c3b17a427bd5cc730ffedd1951ccefb05a95ba9d10eed2a7a9 | 0 | 296 |
"use client";
import type * as React from "react";
import { cn } from "@/lib/utils";
function Table({ className, ...props }: React.ComponentProps<"table">) {
return (
<div data-slot="table-container" className="relative w-full overflow-x-auto">
<table
data-slot="table"
className={cn("w-fu... | clawguard | components/ui/table.tsx | TypeScript | 90a01b002811aa041a436f15ebc0746a83c8c6e6a6c761e9d62aaaf19d160d7b | 0 | 680 |
"use client";
import { cva, type VariantProps } from "class-variance-authority";
import { Tabs as TabsPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
function Tabs({
className,
orientation = "horizontal",
...props
}: React.ComponentProps<typeof TabsPrimitive.... | clawguard | components/ui/tabs.tsx | TypeScript | 81dfc9dae3e89faa8ab0cd857208e10dee218e25e618c2b157f9ca271e5de450 | 0 | 896 |
vertical/tabs:after:inset-y-0 group-data-vertical/tabs:after:-right-1 group-data-vertical/tabs:after:w-0.5 group-data-[variant=line]/tabs-list:data-active:after:opacity-100",
className,
)}
{...props}
/>
);
}
function TabsContent({ className, ...props }: React.ComponentProps<typeof TabsPrimiti... | clawguard | components/ui/tabs.tsx | TypeScript | 60b66d3eb4d7836264a9c2d7138790fd609bb403bc84900e73895f1a42ec642f | 1 | 160 |
"use client";
import type { VariantProps } from "class-variance-authority";
import { ToggleGroup as ToggleGroupPrimitive } from "radix-ui";
import * as React from "react";
import { toggleVariants } from "@/components/ui/toggle";
import { cn } from "@/lib/utils";
const ToggleGroupContext = React.createContext<
Varia... | clawguard | components/ui/toggle-group.tsx | TypeScript | 6591cace42a30b05e91908c4b5e6a00ec184945da809fc2e770dc537b9507dfa | 0 | 818 |
"use client";
import { cva, type VariantProps } from "class-variance-authority";
import { Toggle as TogglePrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
const toggleVariants = cva(
"group/toggle inline-flex items-center justify-center gap-1 rounded-lg text-sm fo... | clawguard | components/ui/toggle.tsx | TypeScript | 27954e7aaa05a82ece0567e7a3cb4dafe27828b611dd3cd70ba46e629cb529f0 | 0 | 453 |
"use client";
import { Tooltip as TooltipPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";
function TooltipProvider({
delayDuration = 0,
...props
}: React.ComponentProps<typeof TooltipPrimitive.Provider>) {
return (
<TooltipPrimitive.Provider
data-slo... | clawguard | components/ui/tooltip.tsx | TypeScript | 67e3d09d667cb570ced4156d610fd32cc483c498b7845416f71185470beb4ded | 0 | 612 |
"use client";
import { useEffect, useState } from "react";
export function useMediaQuery(query: string) {
const [value, setValue] = useState(false);
useEffect(() => {
function checkQuery() {
const result = window.matchMedia(query);
setValue(result.matches);
}
checkQuery();
window.ad... | clawguard | hooks/use-media-query.ts | TypeScript | 1790e912b6f7f35badec05b2c274d37e7363de21a87266da5ed689dd2b1c2b09 | 0 | 144 |
import * as React from "react";
const MOBILE_BREAKPOINT = 768;
export function useIsMobile() {
const [isMobile, setIsMobile] = React.useState<boolean | undefined>(undefined);
React.useEffect(() => {
const mql = window.matchMedia(`(max-width: ${MOBILE_BREAKPOINT - 1}px)`);
const onChange = () => {
s... | clawguard | hooks/use-mobile.ts | TypeScript | 21eff740f9e5c965c7f0782925a7e8f67ddfcdf0f58b6613550f99c3e1c454e9 | 0 | 139 |
import type { AuditResult } from "@/lib/analysis/types";
export interface AuditData {
/** Present when status is complete or error (after failed run with partial state). */
result?: AuditResult;
timestamp: string;
pr: { owner: string; repo: string; number: number; title: string };
status: "processing" | "com... | clawguard | lib/audit-data.ts | TypeScript | 000abfeba9e744df6a0c4a0a3bbf6d72dd95a47320199929d1554f13f445b1aa | 0 | 155 |
import type { NextAuthOptions, Session } from "next-auth";
import type { JWT } from "next-auth/jwt";
import GitHubProvider from "next-auth/providers/github";
export const authOptions: NextAuthOptions = {
pages: {
signIn: "/login",
signOut: "/logout",
},
providers: [
GitHubProvider({
clientId: p... | clawguard | lib/auth-options.ts | TypeScript | c75e15740ac12a8ac217304ad98e5a8b18631ee46c1f8dd3210a683e7c9f79e6 | 0 | 196 |
import { getServerSession } from "next-auth";
import { authOptions } from "@/lib/auth-options";
export async function getSession() {
return getServerSession(authOptions);
}
| clawguard | lib/auth.ts | TypeScript | 6db0bd2e562eb40bc6bd3054092a88e7c243c9126d0aca52d7a4bfa6f22420ce | 0 | 40 |
import { redis } from "@/lib/redis";
const RUNNING_PREFIX = "audit:running:";
const COOLDOWN_PREFIX = "audit:cooldown:";
function auditRunningKey(owner: string, repo: string, prNumber: number, headSha: string): string {
return `${RUNNING_PREFIX}${owner}/${repo}/${prNumber}:${headSha}`;
}
/**
* Try to acquire a pe... | clawguard | lib/auto-trigger-redis.ts | TypeScript | 6a66365579337f89819dca4d218ce2ff0708bdc55febad7340d0f9b1e13de7cb | 0 | 442 |
import type { PipelineProgress } from "@/lib/analysis/pipeline";
const ORDER = [
"recon",
"change-analysis",
"security-scan",
"threat-synthesis",
"post-processing",
] as const;
const LABELS: Record<(typeof ORDER)[number], string> = {
recon: "Reconnaissance",
"change-analysis": "PR summary",
"security-... | clawguard | lib/bot-helpers.ts | TypeScript | 18566266017fe33acbfdc95ff7957d5c42fc4ddc1435273aab543268a673f8c7 | 0 | 650 |
import type { GitHubRawMessage } from "@chat-adapter/github";
import { createMemoryState } from "@chat-adapter/state-memory";
import { createRedisState } from "@chat-adapter/state-redis";
import { Octokit } from "@octokit/rest";
import type { Message, Thread } from "chat";
import { Chat } from "chat";
import { formatPi... | clawguard | lib/bot.ts | TypeScript | 79022bd59c7715551b90c66e980a777adb483948f75cbd59e43c60e4dfde2de2 | 0 | 896 |
rephrasing with what should change next time.",
);
return;
}
await appendLearningRepo(owner, repo, {
pattern: extracted.pattern,
context: extracted.context,
action: extracted.action,
confidence: 0.75,
});
await thread.post(
`Understood — I'll factor this into future reviews for **${o... | clawguard | lib/bot.ts | TypeScript | d07e6b7cb311efea9fd315db54463c5574e9a5c0edfeadf935b85d1de2ef1f06 | 1 | 896 |
.cweId?.toLowerCase() === targetLower,
);
if (!finding) {
await thread.post(
`Could not find a finding matching "${intent.target}". Available findings: ${auditResult.findings.map((f) => f.type).join(", ")}`,
);
return;
}
const status = await thread.post(
`Fixing: ${find... | clawguard | lib/bot.ts | TypeScript | f4b124f38f4c1a1a499b857115c9ced5a794a96e57f0451e0a2551aa6d87d7d8 | 2 | 896 |
"registered mention handles", {
GITHUB_BOT_USERNAME: botUsername,
handles: mentionHandles,
});
// Chat SDK `message.text` can drop @mentions (link/user-node → plain text). Regex on
// message.text then misses; subscribed threads never hit onNewMessage patterns anyway.
bot.onNewMessage(/.+/s, (thread, message) => {... | clawguard | lib/bot.ts | TypeScript | 47d977ff09369ad72e5214cb0f10a07193219adad33bf0c23236c22137339ade | 3 | 874 |
import { createGitHubAdapter } from "@chat-adapter/github";
import { createLinearAdapter } from "@chat-adapter/linear";
import { createSlackAdapter } from "@chat-adapter/slack";
import { createTeamsAdapter } from "@chat-adapter/teams";
export function buildChatAdapters(botUsername: string): Record<string, unknown> {
... | clawguard | lib/chat-adapters.ts | TypeScript | ff167ca23854ceef8bbf80e1f0c02f2cdba8e05874f2796e8a268904357b3397 | 0 | 272 |
/** Set CLAWGUARD_DEBUG_WEBHOOK=0 to silence. Default: on in development, off in production unless explicitly enabled. */
export function clawguardWebhookDebug(...args: unknown[]): void {
if (process.env.CLAWGUARD_DEBUG_WEBHOOK === "0") {
return;
}
if (process.env.NODE_ENV === "production" && process.env.CLAW... | clawguard | lib/clawguard-debug.ts | TypeScript | 84d7cf8c2cee574b4ad983538d23422b54508925b8a9b8076b10513c48591c0f | 0 | 109 |
import type { Severity } from "@/lib/analysis/types";
/** Deduction per finding by severity (aligned with clawguard-plan scoring). */
export const SEVERITY_DEDUCTIONS: Record<Severity, number> = {
CRITICAL: 25,
HIGH: 15,
MEDIUM: 8,
LOW: 3,
INFO: 1,
};
/** Grade thresholds (min score inclusive). */
export co... | clawguard | lib/constants.ts | TypeScript | 16e26ab3b149a62571590a9e4a62202c3c41601fe087c7237f14232f3b525c24 | 0 | 584 |
import { getGrade } from "@/lib/analysis/scoring";
/** Headline score for this static fixture: raw `calculateScore` over all detailed findings hits ~0; we pin a D-grade for a realistic “request changes” demo. */
const DEMO_SHOWCASE_SCORE = 61;
import { type AuditResult, type Finding, parseAuditResult } from "@/lib/an... | clawguard | lib/demo-audit.ts | TypeScript | 1550bdbff9e2094d0dc4095b52dff8673dfe503769496301b5ef95882c7e5735 | 0 | 896 |
},
{ label: "interpolated SQL string", type: "transform" },
{ label: "db.query()", type: "sink" },
],
mermaidDiagram: `flowchart LR
A[orderId from request] --> B[SQL string]
B --> C[(PostgreSQL)]`,
},
fix: {
before: `export async function getOrder(id: string) ... | clawguard | lib/demo-audit.ts | TypeScript | 352c278070c9c02a91afb0be42bb0a863e9046ceff4b21df5f93dd33322dd241 | 1 | 896 |
nist: ["SI-10"],
owaspAsvs: ["5.3.3"],
},
remediationEffort: "small",
},
{
id: "demo-ratelimit",
category: "security",
severity: "HIGH",
type: "weak-auth-controls",
title: "Login route has no rate limiting",
file: "app/api/auth/login/route.ts",
line:... | clawguard | lib/demo-audit.ts | TypeScript | 47a96fbe32849d8071ae5842b4a503f41609f0d76996a0538ce6f481736eaa2d | 2 | 896 |
Server-Side Request Forgery",
description:
"The retry worker loads `targetUrl` from the job payload and issues a server-side GET without an allowlist.",
attackScenario:
"An attacker queues a job pointing at `http://169.254.169.254/` to reach cloud metadata and steal instance credentials.",
... | clawguard | lib/demo-audit.ts | TypeScript | bdb8a84c48104ec3f651068c3ae1a7bf07ba04f51d2fe81c5573ea25adf7a24d | 3 | 896 |
== "performance",
);
const vulnFindings = allFindings.filter(
(f) =>
f.category === "security" &&
[
"demo-sqli",
"demo-secret",
"demo-xss",
"demo-ratelimit",
"demo-csrf",
"demo-path",
"demo-ssrf",
"demo-headers",
"demo-log",
... | clawguard | lib/demo-audit.ts | TypeScript | a8daa4982ee06f4648d8db1bbf5ea3bf6bceb6402139a9cdc1c78d1c5ac69f2d | 4 | 896 |
performance nit on sequential queries.",
findings: codeQualityFindings,
},
{
phase: "vulnerability-scan",
summary:
"CRITICAL SQL injection requires immediate fix. Additional findings span credential handling, XSS, authentication hardening, CSRF, path traversal, SSRF, header... | clawguard | lib/demo-audit.ts | TypeScript | cd83581c22d1c79177838af28a075b55df527ea638dc3ca850aab6c7f3776517 | 5 | 896 |
SameSite policy should bind mutations to first-party origin.",
},
{
name: "App ↔ payment provider",
description:
"Secrets only via env; outbound calls allowlisted; idempotency keys on retries.",
},
],
riskMatrix: [
{
likelihood: "high... | clawguard | lib/demo-audit.ts | TypeScript | caf997c8843de83b3afdcfb40a936be4dea7a3b4b460bbe634b984004b0ebdb4 | 6 | 896 |
();
return cachedResult;
}
/** Full `AuditData` for the showcase report (same shape as Redis). */
export function getDemoAuditData(): AuditData {
return {
status: "complete",
timestamp: new Date().toISOString(),
pr: {
owner: "demo",
repo: "clawguard-showcase",
number: 1,
title: ... | clawguard | lib/demo-audit.ts | TypeScript | a3473152c31c8a241be4d991a0c52cc37f5096dcbc54df3d836dcd47d90ced7c | 7 | 103 |
import type { AuditTableRow } from "@/components/data-table";
import type { KnowledgeEntry } from "@/lib/knowledge/types";
import type { Learning } from "@/lib/learnings/types";
/** ~30 days of average audit scores for the overview chart */
export const demoAuditSeries: { date: string; score: number }[] = (() => {
c... | clawguard | lib/demo-dashboard-data.ts | TypeScript | 981297d243a281c53833ae544a58cf17710cfa7f1a26e11a1f1a200f4c72b684 | 0 | 896 |
,
owner: "acme",
repo: "web-app",
prNumber: 885,
title: "CSP: allow inline for legacy widget (temporary)",
status: "complete",
score: 68,
grade: "D",
criticalCount: 0,
updatedAt: new Date(Date.now() - 1000 * 60 * 60 * 120).toISOString(),
},
{
id: "demo/payments/pr/198",
o... | clawguard | lib/demo-dashboard-data.ts | TypeScript | 742f638fa8c06bd44275b62433591b6ed3607306485c72ba2a70147bb1ee9873 | 1 | 896 |
: 2,
createdAt: iso(35),
updatedAt: iso(35),
},
{
id: "l-org-3",
pattern: "Escalate any change touching auth/session cookie flags",
context: "Two incidents in staging; security review required before merge.",
action: "escalate",
sourcePr: 891,
confidence: 0.88,
upvotes: 6,
cr... | clawguard | lib/demo-dashboard-data.ts | TypeScript | 5abcff099fdc792b119e6bcd6e87952e429d569aa5b59881b9d74735b9ba60c4 | 2 | 766 |
/**
* Public base URL for links posted to GitHub (must be absolute).
*/
export function getPublicBaseUrl(): string {
const explicit = process.env.NEXT_PUBLIC_APP_URL?.trim();
if (explicit) return explicit.replace(/\/$/, "");
const vercel = process.env.VERCEL_URL?.trim();
if (vercel) return `https://${vercel.r... | clawguard | lib/env.ts | TypeScript | a0f6f16acb704197be095a35551920a5e05b7ca57e7e7ddc208e1f340f90403d | 0 | 119 |
import { ClawGuardError, classifyError, type ErrorCategory, type ErrorSeverity } from "./errors";
import { logAudit } from "./logger";
interface ErrorContext {
runId?: string;
agentName?: string;
operation?: string;
[key: string]: unknown;
}
interface HandledError {
severity: ErrorSeverity;
category: Erro... | clawguard | lib/error-handler.ts | TypeScript | cc3b80cbb3e99d32c578b1fb8192825ca97666da73500d3417ff74d2766c3a12 | 0 | 340 |
export type ErrorSeverity = "fatal" | "degraded" | "warning";
export type ErrorCategory =
| "pipeline"
| "sandbox"
| "fix"
| "config"
| "github"
| "agent"
| "tool"
| "network"
| "validation";
interface ClawGuardErrorOptions {
context?: Record<string, unknown>;
severity?: ErrorSeverity;
categor... | clawguard | lib/errors.ts | TypeScript | e9991c7cf31f172b016ad6f02204dd01a05648c64b421bd1c73886c18d2b0de2 | 0 | 837 |
/** Format an ISO date string as a human-relative time (e.g. "2 hours ago"). */
export function formatRelativeTime(iso: string, now = new Date()): string {
const d = new Date(iso);
const ms = d.getTime();
if (Number.isNaN(ms)) return iso;
const diffMs = now.getTime() - ms;
const diffSec = Math.round(diffMs /... | clawguard | lib/format-relative-time.ts | TypeScript | 49fd73ee7d0f6876eb89c58a2f27e48b4b9023a268b6fa93f9d725a85583daa6 | 0 | 317 |
import { randomUUID } from "node:crypto";
import type { Octokit } from "@octokit/rest";
import type { AuditResult } from "./analysis/types";
import { formatPipelineStatusMessage } from "./bot-helpers";
import { buildSummaryCard, buildSummaryMarkdown } from "./cards/summary-card";
import { type LoadRepoConfigResult, loa... | clawguard | lib/github-audit-runner.ts | TypeScript | c04fa4b33c49788a94573787f55483eb0e6151410b6be0d9b78a0a1ffa69cae5 | 0 | 896 |
progress.status,
}).catch(() => {});
}
await storeAuditResult({
key: redisKey,
data: {
status: "processing",
timestamp: new Date().toISOString(),
pr: { owner, repo, number: prNumber, title: pr.title },
pipelineStage: progress.stage === "error" ? "error" : progr... | clawguard | lib/github-audit-runner.ts | TypeScript | 0633426d3e1a43d23a571397eb99faf1417d7201517635d6752cfa729403637e | 1 | 542 |
/**
* Bodies the bot posts via the GitHub API when using a PAT (same user as token).
* Without filtering these, webhooks would re-enter (cards mention @GITHUB_BOT_USERNAME).
*/
export function isClawGuardAutomatedCommentBody(body: string | undefined): boolean {
if (!body?.trim()) {
return false;
}
const t ... | clawguard | lib/github-automated-comment.ts | TypeScript | 6e8604d6dd0922cc94ac74b740db8424ed0bf75c57ee28d00542807756cc1b04 | 0 | 308 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.