
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
@wireapp/react-ui-kit
Advanced tools
This repository is part of the source code of Wire. You can find more information at [wire.com](https://wire.com) or by contacting opensource@wire.com.
This repository is part of the source code of Wire. You can find more information at wire.com or by contacting opensource@wire.com.
You can find the published source code at github.com/wireapp.
For licensing information, see the attached LICENSE file and the list of third-party licenses at wire.com/legal/licenses/.
yarn
yarn start
When creating a new component, follow these guidelines:
Choose the Right Category
src/:
DataDisplay/: For data visualization components (tables, lists)Identity/: Design system, theme, colors, etc.Inputs/: For form controls and input elementsLayout/: For structural componentsNavigation/: For navigation-related componentsSurface/: For containers, cards, modals, and overlaysTypography/: For text-related componentsutils/: For utility componentsComponent Structure Create a new folder for your component with the following files:
Category/
└── ComponentName/
├── ComponentName.tsx # Main component file
├── ComponentName.stories.tsx # Storybook stories
└── index.ts # Export file
Component File (ComponentName.tsx)
Stories File (ComponentName.stories.tsx)
Index File (index.ts)
Example:
// Button.tsx
export interface ButtonProps {
variant: 'primary' | 'secondary';
// ... other props
}
export const Button = ({variant, ...props}: ButtonProps) => {
// Component implementation
};
// Button.stories.tsx
export default {
title: 'Inputs/Button',
component: Button,
// ... story configuration
};
// index.ts
export * from './Button';
Remember to:
FAQs
This repository is part of the source code of Wire. You can find more information at [wire.com](https://wire.com) or by contacting opensource@wire.com.
The npm package @wireapp/react-ui-kit receives a total of 1,322 weekly downloads. As such, @wireapp/react-ui-kit popularity was classified as popular.
We found that @wireapp/react-ui-kit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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.

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

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.