New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

create-brika

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-brika

Create a new BRIKA plugin with a single command

latest
Source
npmnpm
Version
0.3.0
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

create-brika

Scaffold a new BRIKA plugin with a single command.

Usage

bun create brika my-plugin

This launches an interactive wizard that:

  • Asks for plugin details (name, description, category, author)
  • Fetches the latest SDK version from npm
  • Creates the complete plugin structure
  • Installs dependencies
  • Initializes a git repository

Options

# Interactive mode (prompts for all options)
bun create brika

# With plugin name
bun create brika my-plugin

# Skip git initialization
bun create brika my-plugin --no-git

# Skip dependency installation
bun create brika my-plugin --no-install

# Show help
bun create brika --help

Generated Structure

my-plugin/
├── package.json          # Plugin manifest with blocks
├── tsconfig.json         # TypeScript configuration
├── README.md             # Documentation
├── .gitignore
├── src/
│   └── index.ts          # Block definitions
└── locales/
    └── en/
        └── plugin.json   # i18n translations

Categories

When prompted for category, choose based on your plugin's purpose:

CategoryDescriptionExamples
triggerStarts workflowsTimers, sensors, webhooks
actionPerforms operationsSend notification, control device
transformProcesses dataMap, filter, format
flowControls executionCondition, delay, split

After Creating

cd my-plugin
bun link          # Link for local development
bun run tsc       # Type check

Add to your brika.yml:

plugins:
  - path: ./my-plugin

License

MIT

Keywords

brika

FAQs

Package last updated on 21 Feb 2026

Did you know?

Socket

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.

Install

Related posts