Skip to main content
This document introduces the standard directory structure and file organization specifications for LangBot plugins, helping developers create compliant plugins.

Basic Directory Structure

A standard LangBot plugin should follow this directory structure:

Multilingual README Specification

File Location Specification

LangBot plugins support multilingual README documentation to provide localized plugin descriptions for users in different languages. Important Specifications:
  1. Root README.md (Required)
    • Must be written in English
    • Serves as the plugin’s default documentation
    • Used as fallback when requested language version doesn’t exist
  2. readme/ Directory (Optional)
    • Used to store non-English README documents
    • File naming format: README_{language_code}.md

Supported Language Codes

According to RFC 4646 standard, LangBot currently supports the following language codes:

Example Directory Structure

Incorrect Examples

Wrong: Placing English README in readme/ directory
Wrong: Root README.md contains non-English content

README Language Fallback Logic

When a user requests a README in a specific language, LangBot will search in the following order:
  1. Try to read readme/README_{language_code}.md
  2. If not found, fall back to root README.md (English version)
Examples:
  • User requests Simplified Chinese (zh_Hans)
    • → Look for readme/README_zh_Hans.md
    • → If not found, return README.md (English version)
  • User requests Japanese (ja_JP)
    • → Look for readme/README_ja_JP.md
    • → If not found, return README.md (English version)

Resource Files Directory

assets/ Directory

The assets/ directory is used to store plugin static resource files. Recommended Structure:
Icon Specifications:
  • Recommended to use icon.svg as plugin icon
  • Supported formats: .svg, .png, .jpg, .jpeg, .gif
  • Recommended size: At least 256x256 pixels
  • Reference in manifest.yaml: icon: assets/icon.svg

Referencing Resources in README

In README documentation, you can use relative paths to reference images in the assets/ directory:
Note: After uploading plugins to LangBot Space, resource files will be automatically processed and hosted, and images will display correctly when users view the README.

Components Directory

Plugin functionality is implemented through components, which should be organized by type in the components/ directory:
For detailed component development specifications, please refer to: Adding Components

Configuration Files

manifest.yaml

The plugin manifest file manifest.yaml is the core configuration file, containing plugin metadata, configuration items, component lists, and other information. For detailed instructions, please refer to: Complete Plugin Configuration Information

requirements.txt

If the plugin requires additional Python dependencies, create a requirements.txt file in the root directory:
Note: LangBot will automatically install dependencies listed in requirements.txt when installing the plugin.