Plugin Packages
Official Rempts plugins for extending your CLI
Plugin Packages
Rempts provides official plugins to extend your CLI with common functionality. All plugins are designed with type safety in mind and integrate seamlessly with the Rempts ecosystem.
Available Plugins
@reliverse/rempts-plugin-config
Loads and merges configuration from multiple sources including JSON files, RC files, and user config directories.
bun add @reliverse/rempts-plugin-config@reliverse/rempts-plugin-ai-detect
Detects AI coding assistants and agents from environment variables, providing context about the execution environment.
bun add @reliverse/rempts-plugin-ai-detectQuick Start
import { createCLI } from '@reliverse/rempts-core'
import { configMergerPlugin } from '@reliverse/rempts-plugin-config'
import { aiAgentPlugin } from '@reliverse/rempts-plugin-ai-detect'
const cli = await createCLI({
name: 'my-cli',
plugins: [
configMergerPlugin(),
aiAgentPlugin({ verbose: true })
]
})Creating Custom Plugins
See the Plugin Development Guide for information on creating your own plugins.