
Product
Socket Brings Supply Chain Security to skills.sh
Socket is now scanning AI agent skills across multiple languages and ecosystems, detecting malicious behavior before developers install, starting with skills.sh's 60,000+ skills.
@arcadeai/design-system
Advanced tools
A modern React component library that ensures consistent UI across all our applications, built with TypeScript, Tailwind CSS and shadcn/ui.
Install the design system as a dependency in your project:
npm install @arcadeai/design-system
# or
pnpm add @arcadeai/design-system
# or
yarn add @arcadeai/design-system
Make sure you have the required peer dependencies installed:
npm install react react-dom tailwindcss lucide-react
Required versions:
Import the design system styles in your main CSS file or at the root of your application:
@import '@arcadeai/design-system/dist/assets/index.css';
Ensure your Tailwind CSS configuration is compatible with the design system. The design system uses Tailwind CSS v4 with specific configurations.
Import and use components in your React application:
import { Button, Card, Input } from '@arcadeai/design-system';
function MyApp() {
return (
<Card>
<Input placeholder="Enter your email" />
<Button>Submit</Button>
</Card>
);
}
git clone https://github.com/ArcadeAI/Design-System
cd @arcadeai/design-system
pnpm install
pnpm dev
This design system is built on top of:
The design system uses Tailwind CSS for consistent spacing, colors, typography, and other design tokens. When adding new components:
To add a new icon to the design system:
Add the SVG file: Place your SVG icon in /lib/assets/icons/
# Example: adding a new "example" icon
cp example.svg lib/assets/icons/
Generate the React component: Run the icon generation script
pnpm generate-icons
Use the icon: The generated React component will be automatically available
import { ExampleIcon } from '@arcadeai/design-system/components/ui/atoms/icons';
To add a new toolkit to the system:
Navigate to the toolkits metadata: Open lib/metadata/toolkits.ts
Add your toolkit entry: Add a new entry to the TOOLKITS array
{
id: 'X',
label: 'X',
isBYOC: false,
isPro: false,
publicIconUrl: `${PUBLIC_ICON_URL}/x.svg`,
icon: Icons.X,
// Other properties...
}
To add a new OAuth provider:
Navigate to OAuth providers metadata: Open lib/metadata/oauth-providers.ts
Add OAuth identifiers: Define your OAuthId and OAuthProviderId
export const OAuthId = {
Asana: 'arcade-asana',
Atlassian: 'arcade-atlassian',
// Add to the respective id
}
export const OAuthProviderId = {
Asana: 'asana',
Atlassian: 'atlassian',
// Add to the respective provider id
}
Choose the appropriate category:
PREBUILT_OAUTH_PROVIDERSOTHER_OAUTH_PROVIDERS// Example for prebuilt provider
export const PREBUILT_OAUTH_PROVIDERS: OAuthCatalogue[] = [
{
id: OAuthId.Asana,
provider_id: OAuthProviderId.Asana,
name: 'Asana',
description: 'Authorize tools and agents with Asana',
publicIconUrl: `${PUBLIC_ICON_URL}/asana.svg`,
icon: Asana,
docs: '<https://docs.arcade.dev/home/auth-providers/asana>',
},
// Add to the respective array
]
pnpm devpnpm testpnpm buildBuilt with ❤️ by the Arcade team
FAQs
Unknown package
We found that @arcadeai/design-system demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket is now scanning AI agent skills across multiple languages and ecosystems, detecting malicious behavior before developers install, starting with skills.sh's 60,000+ skills.

Product
Socket now supports PHP with full Composer and Packagist integration, enabling developers to search packages, generate SBOMs, and protect their PHP dependencies from supply chain threats.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.