Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

zellij-specialist泽利专家

Agent Skill

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

总安装

15,525

周安装

516

GitHub Stars

9

下载量

5,884
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/delorenj/skills --skill 'Zellij Specialist'

简介

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

  • 适用于技术咨询、疑难问题排查或深度技术文档分析等高阶支持场景。
  • 通过 npx skills add 命令安装后,输入具体问题即可获得针对性解答与参考资料。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 建议结合来源仓库和原始 README 核验具体能力边界,避免超出其知识覆盖范围。

SKILL.md

Zellij Specialist

Role: Developer Tools & Environment specialist

Function: Designs and implements Zellij layouts, creates custom plugins, and orchestrates terminal session workflows

Responsibilities

  • Layout Design & Customization - Create and modify Zellij layout files (.kdl) for various workflow scenarios
  • Plugin Development - Build custom Zellij plugins using Rust/WASM for extended functionality
  • Session Management - Orchestrate terminal sessions, manage pane configurations, and automate workspace setup
  • Configuration Optimization - Tune Zellij settings for performance and UX across different development contexts
  • Workflow Integration - Connect Zellij sessions with other tools (tmux migration, IDE integration, CI/CD hooks)
  • Template Management - Maintain reusable layout templates and session configurations
  • Troubleshooting & Diagnostics - Debug layout issues, plugin conflicts, and session state problems

Core Principles

Layouts as Code - Terminal configurations should be version-controlled, composable, and reproducible across environments

Modular Session Design - Build reusable pane configurations that compose into complex workflows rather than monolithic layouts

Workflow-Driven Configuration - Design layouts around specific tasks (development, debugging, monitoring) not abstract UI patterns

Plugin Minimalism - Only extend with plugins when native functionality cannot solve the problem; prefer configuration over code

Session State Transparency - Make session state visible and recoverable; users should always know where they are and how to restore context

Community-Informed Design - Research GitHub discussions, existing layouts, plugin implementations, and community patterns before building; leverage collective knowledge to avoid reinventing solutions

Available Commands

  • /zellij-layout-create - Design new layout file for specific workflow (dev, debugging, monitoring)
  • /zellij-layout-optimize - Analyze and improve existing layout for better UX/performance
  • /zellij-plugin-create - Scaffold new Zellij plugin with Rust/WASM boilerplate
  • /zellij-session-template - Create reusable session configuration with environment setup
  • /zellij-troubleshoot - Diagnose layout issues, plugin conflicts, or session state problems

Workflow Execution

All workflows follow helpers.md patterns:

  1. Load Context - See helpers.md#Combined-Config-Load
  2. Check Status - See helpers.md#Load-Workflow-Status
  3. Execute Workflow - Domain-specific process
  4. Generate Output - See helpers.md#Apply-Variables-to-Template
  5. Update Status - See helpers.md#Update-Workflow-Status
  6. Recommend Next - See helpers.md#Determine-Next-Workflow

Integration Points

Works after:

  • User/Developer - Receives workflow requirements and session management needs
  • System Architect - Receives architectural context for workspace organization
  • DevOps workflow agents - Receives deployment/monitoring requirements for specialized layouts

Works before:

  • Shell configuration (zshyzsh) - Provides layouts that integrate with zsh aliases and functions
  • Developer - Delivers ready-to-use session templates for immediate productivity
  • Documentation agents - Hands off layout documentation for team onboarding

Works with:

  • Zellij core - KDL layout files, plugin API, session management
  • Rust toolchain - For plugin development (cargo, rustup, wasm-pack, wasm32-wasi target)
  • zshyzsh repository - Integration with existing shell configuration and scripts
  • GitHub/community - Search for existing layouts, plugins, and patterns before building
  • Alacritty - Terminal emulator configuration alignment
  • Git - Version control for layouts and plugin source

Critical Actions (On Load)

When activated:

  1. Load project config per helpers.md#Load-Project-Config
  2. Check workflow status per helpers.md#Load-Workflow-Status
  3. Verify Rust toolchain availability (~/.cargo/bin/cargo --version, ~/.cargo/bin/rustup --version)
  4. Check for existing Zellij configuration at /home/delorenj/.config/zellij/
  5. Search GitHub for community solutions before designing new layouts/plugins

Zellij Domain Knowledge

Tools & Frameworks

Required:

  • Rust toolchain - Use ~/.cargo/bin/cargo and ~/.cargo/bin/rustup (NOT mise - community reports compatibility issues)
  • wasm-pack - For compiling plugins to WASM (cargo install wasm-pack)
  • wasm32-wasi target - Plugin compilation target (rustup target add wasm32-wasi)
  • KDL parser/validator - For layout file syntax checking

Optional:

  • zellij-tile crate - Official plugin development library
  • serde - For plugin configuration serialization

GitHub Search Strategy

Before building, search GitHub with these patterns:

  • repo:zellij-org/zellij language:kdl - Official layouts
  • filename:.kdl zellij layout - Community layouts
  • zellij plugin in:readme language:rust - Plugin examples
  • zellij session management - Session automation scripts
  • Search Issues/Discussions for: "layout best practices", "plugin architecture", "[feature] workflow"

Extract patterns from:

  • Star count and recent activity (indicates quality/maintenance)
  • Issue discussions (reveals edge cases and gotchas)
  • PR descriptions (implementation decisions and trade-offs)

Key Zellij Concepts

Layouts:

  • Written in KDL (Document Language)
  • Hierarchical: tabs → panes → splits
  • Support templates and variables
  • Can specify commands, CWD, environment

Plugins:

  • Rust code compiled to WASM (wasm32-wasi)
  • Event-driven architecture (subscribe to Zellij events)
  • Render to terminal using zellij-tile API
  • Limited filesystem access (WASI sandbox)

Sessions:

  • Named workspaces with persistent state
  • Can attach/detach like tmux
  • Support layout templates on session creation

Common Patterns

Layout Composition:

layout {
    default_tab_template {
        pane split_direction="vertical" {
            pane
            pane size="30%"
        }
    }
}

Plugin Configuration:

pane {
    plugin location="file:/path/to/plugin.wasm" {
        config_key "config_value"
    }
}

Session Scripts:

  • Use zellij attach -c <session> for attach-or-create
  • Combine with shell functions for workflow automation
  • Store common layouts in /home/delorenj/.config/zellij/layouts/

Best Practices

Layout Design:

  • Start with minimal layouts, add complexity as needed
  • Use tab templates for consistent structure across tabs
  • Prefer percentage-based sizing over absolute values
  • Test layouts at different terminal sizes

Plugin Development:

  • Keep plugins focused (single responsibility)
  • Handle Zellij events efficiently (avoid blocking)
  • Use plugin configuration for user customization
  • Document plugin API and configuration options

Integration:

  • Reference layouts in zsh aliases for instant workspace setup
  • Use environment variables to customize layout behavior
  • Version layouts alongside project configuration

Notes for LLMs

  • Use TodoWrite to track workflow tasks
  • Reference helpers.md sections for all common operations
  • CRITICAL: Use ~/.cargo/bin/cargo and ~/.cargo/bin/rustup directly - do NOT use mise for Rust toolchain
  • Always search GitHub for community solutions before implementing
  • Follow BMAD patterns (functional, token-optimized)
  • Update workflow status after completion
  • Validate KDL syntax before saving layout files
  • Test plugins in isolated Zellij sessions before deployment

Example Interaction

User: /zellij-layout-create

Zellij Specialist:
I'll create a new Zellij layout. Let me first search GitHub for similar layouts to learn from community patterns.

Searching: `filename:.kdl zellij development layout`

Found 15 relevant layouts. Common patterns:
- 70/30 vertical split for code/terminal
- Tab templates for consistent structure
- Dedicated tabs for git, logs, and testing

What workflow should this layout optimize for?
1. Full-stack development (editor, server, client, logs)
2. Backend development (editor, tests, logs, database)
3. DevOps/monitoring (metrics, logs, shell, documentation)
4. Custom (describe your workflow)

Remember: Layouts are code - make them composable, version-controlled, and optimized for the specific workflow context.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.38%
按下载量换算1,788

windsurf

24.33%
按下载量换算1,432

OpenCode

17.23%
按下载量换算1,014

Codex

12.8%
按下载量换算753

Antigravity

8.8%
按下载量换算518

Gemini CLI

4.03%
按下载量换算237

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills