Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计异常

zellij-plugin-devzellij 插件开发

Agent Skill

zellij-plugin-dev 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

285

周安装

12

GitHub Stars

9

下载量

428
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:zellij-plugin-dev(zellij 插件开发)
来源仓库:https://github.com/delorenj/skills
仓库路径:skills/zellij-plugin-dev
安装命令:
npx skills add https://github.com/delorenj/skills --skill zellij-plugin-dev
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/delorenj/skills --skill zellij-plugin-dev

简介

zellij-plugin-dev 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于插件开发资料查询、API 参考获取或社区最佳实践检索等研究型任务。
  • 通过 npx skills add 命令从指定仓库安装,调用时传入技术关键词即可返回相关内容。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 建议结合来源仓库和原始 README 核验具体用法,确保信息时效性和准确性。

SKILL.md

Zellij Plugin Development Skill

Comprehensive assistance for developing Zellij terminal multiplexer plugins using Rust and WebAssembly.

When to Use This Skill

Trigger this skill when:

  • Developing Zellij plugins in Rust/WASM
  • Implementing plugin UI, rendering, or event handling
  • Working with the Zellij plugin API
  • Integrating external systems (Docker, Git, etc.)
  • Building status bars, navigation tools, or workflow automation
  • Debugging plugin issues or understanding plugin lifecycle
  • Learning plugin development patterns and best practices

Quick Reference

Core Plugin Structure

use zellij_tile::prelude::*;

#[derive(Default)]
struct State {
    // Your plugin state
}

impl ZellijPlugin for State {
    fn load(&mut self, configuration: BTreeMap<String, String>) {
        request_permission(&[PermissionType::ReadApplicationState]);
        subscribe(&[EventType::Key, EventType::PaneUpdate]);
    }

    fn update(&mut self, event: Event) -> bool {
        // Handle events, return true to re-render
        false
    }

    fn render(&mut self, rows: usize, cols: usize) {
        // Render UI
    }
}

Building

# Add WASM target
rustup target add wasm32-wasi

# Build
cargo build --release

# Location: target/wasm32-wasi/release/<PLUGIN_NAME>.wasm

Loading Plugins

# Temporary load
zellij plugin -- file://<PATH_TO_FILE>

# Floating
zellij plugin --floating -- file://<PATH>

# With configuration
zellij plugin -- file://<PATH> --configuration key=value

Reference Files

Official Documentation

  • plugin-development-tutorial.md - Complete tutorial from scaffolding to distribution
  • plugin-api-commands.md - All 100+ plugin API commands organized by category
  • plugin-api-events.md - Event system, subscription patterns, and event handling

Real-World Plugin Examples

  • plugin-examples-ui-navigation.md - Monocle (fuzzy finder) and Room (tab switcher)
  • plugin-examples-status-theming.md - zjstatus (configurable status bar)
  • plugin-examples-external-integration.md - zj-docker (Docker integration)

Development Workflow

1. Project Setup

Use the official scaffolding tool:

zellij plugin -f -- https://github.com/zellij-org/create-rust-plugin/releases/latest/download/create-rust-plugin.wasm

This launches develop-rust-plugin for real-time iteration (Ctrl+Shift+R to rebuild).

2. Core Implementation

Load Phase:

  • Request permissions
  • Subscribe to events
  • Initialize state

Update Phase:

  • Handle events
  • Update state
  • Return true to trigger re-render

Render Phase:

  • Draw UI based on state
  • Use color indices (0-3) for theme compatibility

3. Testing & Distribution

Local Testing:

zellij plugin -- file:./target/wasm32-wasi/release/plugin.wasm

Release:

cargo build --release
# Share via awesome-zellij repository

Common Patterns

Modal UI (Floating Windows)

bind "Ctrl t" {
    LaunchOrFocusPlugin "file:path/to/plugin.wasm" {
        floating true
    }
}

Command Execution with Context

let context = BTreeMap::from([
    ("operation".to_string(), "git_status".to_string())
]);
run_command(vec!["git", "status"], context);

// Handle result
Event::RunCommandResult(exit_code, stdout, stderr, context) => {
    if context.get("operation") == Some(&"git_status".to_string()) {
        self.process_result(stdout);
    }
}

Configuration-Driven Widgets

plugin location="path/to/plugin.wasm" {
    format_left  "{widget1} {widget2}"
    format_right "{widget3}"

    widget1_param1 "value"
    widget1_param2 "value"
}

State Synchronization

fn load(&mut self, _config: BTreeMap<String, String>) {
    subscribe(&[EventType::PaneUpdate]);
}

fn update(&mut self, event: Event) -> bool {
    match event {
        Event::PaneUpdate(panes) => {
            self.sync_pane_state(panes);
            true
        }
        _ => false
    }
}

Permission Categories

Read-Only:

  • ReadApplicationState - Access mode, tabs, panes, sessions

Write Operations:

  • ChangeApplicationState - Modify panes, tabs, navigation
  • OpenFiles - Open files in $EDITOR
  • OpenTerminalsOrPlugins - Create terminal/plugin panes
  • WriteToStdin - Write to pane stdin

Advanced:

  • RunCommands - Execute background commands
  • Reconfigure - Modify configuration
  • WebAccess - HTTP requests
  • FullHdAccess - Host filesystem access

Plugin Categories & Examples

UI & Navigation

  • monocle - Fuzzy file finder with gitignore support
  • room - Tab search and switcher
  • harpoon - Quick pane navigation

Status & Display

  • zjstatus - Configurable status bar with theming
  • zellij-datetime - Date/time display
  • zjframes - Pane frame management

Development Tools

  • multitask - Mini-CI system
  • grab - Rust code fuzzy finder
  • zellij-bookmarks - Command bookmarks

External Integration

  • zj-docker - Docker container management
  • zj-git-branch - Git branch operations

Session Management

  • zellij-sessionizer - Folder-based sessions
  • zsm - Session switcher with zoxide

Resources

Documentation

Community

Tools

  • create-rust-plugin: Scaffolding tool (plugin)
  • develop-rust-plugin: Live development helper (plugin)
  • rust-plugin-example: Official example repository

Working with This Skill

For Beginners

Start with plugin-development-tutorial.md for foundational concepts and step-by-step guidance.

For Specific Features

  • UI/Navigation: See plugin-examples-ui-navigation.md
  • Status Bars/Theming: See plugin-examples-status-theming.md
  • External Integration: See plugin-examples-external-integration.md
  • API Commands: See plugin-api-commands.md
  • Events: See plugin-api-events.md

For Code Examples

Each example file contains real-world patterns extracted from production plugins.

Advanced Topics

Widget Systems

Build configurable, composable UI components (see zjstatus example).

External Process Management

Spawn and manage long-running processes (see zj-docker example).

Multi-Agent Patterns

Coordinate multiple plugins via message passing.

Performance Optimization

  • Static vs dynamic rendering modes
  • Efficient state updates
  • Resource-conscious command execution

Notes

  • Plugins compile to WASM (wasm32-wasi target)
  • Use color indices (0-3) instead of hex for theme compatibility
  • Always check exit codes for command execution
  • Leverage Zellij's pane system for long-running processes
  • Use context maps to route command results
  • Request permissions during load() phase

File Organization

references/
  ├── plugin-development-tutorial.md      # Complete tutorial
  ├── plugin-api-commands.md              # API reference
  ├── plugin-api-events.md                # Event system
  ├── plugin-examples-ui-navigation.md    # UI patterns
  ├── plugin-examples-status-theming.md   # Configuration & theming
  └── plugin-examples-external-integration.md  # External systems

scripts/
  # Helper scripts for development automation

assets/
  # Templates, boilerplate, example projects

Updating

To refresh this skill with updated documentation:

  1. Re-run the scraper with the same configuration
  2. Add new plugin examples as they emerge
  3. Update patterns based on community best practices

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

30.01%
按下载量换算128

windsurf

24.62%
按下载量换算105

OpenCode

16.33%
按下载量换算70

Codex

13.29%
按下载量换算57

Antigravity

7.27%
按下载量换算31

Gemini CLI

3.29%
按下载量换算14

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/delorenj/skills --skill zellij-plugin-dev;npx skills add delorenj/skills --skill "zellij-plugin-dev" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills