Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

plugin-settings插件设置

Agent Skill

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

总安装

5,382

周安装

265

GitHub Stars

公开资料未说明

下载量

3,181
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add ibutters/claudecodeplugins --skill "plugin-settings"

简介

用于查找、检索和筛选插件设置相关信息。plugin-settings 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的开发支持。
  • 可结合关键词快速定位技术方案或实现路径。
  • 使用前应核对来源仓库和 README,确认功能边界。
  • 注意权限范围和维护状态,避免误用高风险操作。

SKILL.md


BODY=$(awk '/^---$/{i++; next} i>=2' "$FILE")


## Common Patterns

### Pattern 1: Temporarily Active Hooks

Use settings file to control hook activation:

#!/bin/bash STATE_FILE=".claude/security-scan.local.md"

Quick exit if not configured

if [[ ! -f "$STATE_FILE" ]]; then exit 0 fi

Read enabled flag

FRONTMATTER=$(sed -n '/^---$/,/^---$/{ /^---$/d; p; }' "$STATE_FILE") ENABLED=$(echo "$FRONTMATTER" | grep '^enabled:' | sed 's/enabled: *//')

if [[ "$ENABLED" != "true" ]]; then exit 0 # Disabled fi

Run hook logic

...


**Use case:** Enable/disable hooks without editing hooks.json (requires restart).

### Pattern 2: Agent State Management

Store agent-specific state and configuration:

**.claude/multi-agent-swarm.local.md:**

agent_name: auth-agent task_number: 3.5 pr_number: 1234 coordinator_session: team-leader enabled: true dependencies: ["Task 3.4"]


Task Assignment

Implement JWT authentication for the API.

Success Criteria:

  • Authentication endpoints created
  • Tests passing
  • PR created and CI green

Read from hooks to coordinate agents:

AGENT_NAME=$(echo "$FRONTMATTER" | grep '^agent_name:' | sed 's/agent_name: *//') COORDINATOR=$(echo "$FRONTMATTER" | grep '^coordinator_session:' | sed 's/coordinator_session: *//')

Send notification to coordinator

tmux send-keys -t "$COORDINATOR" "Agent $AGENT_NAME completed task" Enter


### Pattern 3: Configuration-Driven Behavior

**.claude/my-plugin.local.md:**

validation_level: strict max_file_size: 1000000 allowed_extensions: [".js", ".ts", ".tsx"] enable_logging: true


Validation Configuration

Strict mode enabled for this project. All writes validated against security policies.


Use in hooks or commands:

LEVEL=$(echo "$FRONTMATTER" | grep '^validation_level:' | sed 's/validation_level: *//')

case "$LEVEL" in strict) # Apply strict validation ;; standard) # Apply standard validation ;; lenient) # Apply lenient validation ;; esac


## Creating Settings Files

### From Commands

Commands can create settings files:

Setup Command

Steps:

  1. Ask user for configuration preferences
  2. Create .claude/my-plugin.local.md with YAML frontmatter
  3. Set appropriate values based on user input
  4. Inform user that settings are saved
  5. Remind user to restart Claude Code for hooks to recognize changes

### Template Generation

Provide template in plugin README:

Configuration

Create .claude/my-plugin.local.md in your project:

\\\`markdown


enabled: true mode: standard max_retries: 3


Plugin Configuration

Your settings are active. \\\`

After creating or editing, restart Claude Code for changes to take effect.


## Best Practices

### File Naming

✅ **DO:**

*   Use `.claude/plugin-name.local.md` format
*   Match plugin name exactly
*   Use `.local.md` suffix for user-local files

❌ **DON'T:**

*   Use different directory (not `.claude/`)
*   Use inconsistent naming
*   Use `.md` without `.local` (might be committed)

### Gitignore

Always add to `.gitignore`:

.claude/*.local.md .claude/*.local.json


Document this in plugin README.

### Defaults

Provide sensible defaults when settings file doesn't exist:

if [[ ! -f "$STATE_FILE" ]]; then # Use defaults ENABLED=true MODE=standard else # Read from file # ... fi


### Validation

Validate settings values:

MAX=$(echo "$FRONTMATTER" | grep '^max_value:' | sed 's/max_value: *//')

Validate numeric range

if ! [[ "$MAX" =~ ^[0-9]+$ ]] || [[ $MAX -lt 1 ]] || [[ $MAX -gt 100 ]]; then echo "⚠️ Invalid max_value in settings (must be 1-100)" >&2 MAX=10 # Use default fi


### Restart Requirement

**Important:** Settings changes require Claude Code restart.

Document in your README:

Changing Settings

After editing .claude/my-plugin.local.md:

  1. Save the file
  2. Exit Claude Code
  3. Restart: claude or cc
  4. New settings will be loaded

Hooks cannot be hot-swapped within a session.

## Security Considerations

### Sanitize User Input

When writing settings files from user input:

Escape quotes in user input

SAFE_VALUE=$(echo "$USER_INPUT" | sed 's/"/\\"/g')

Write to file

cat > "$STATE_FILE" <<EOF


user_setting: "$SAFE_VALUE"


EOF


### Validate File Paths

If settings contain file paths:

FILE_PATH=$(echo "$FRONTMATTER" | grep '^data_file:' | sed 's/data_file: *//')

Check for path traversal

if [[ "$FILE_PATH" == *".."* ]]; then echo "⚠️ Invalid path in settings (path traversal)" >&2 exit 2 fi


### Permissions

Settings files should be:

*   Readable by user only (`chmod 600`)
*   Not committed to git
*   Not shared between users

## Real-World Examples

### multi-agent-swarm Plugin

**.claude/multi-agent-swarm.local.md:**

agent_name: auth-implementation task_number: 3.5 pr_number: 1234 coordinator_session: team-leader enabled: true dependencies: ["Task 3.4"] additional_instructions: Use JWT tokens, not sessions


Task: Implement Authentication

Build JWT-based authentication for the REST API. Coordinate with auth-agent on shared types.


**Hook usage (agent-stop-notification.sh):**

*   Checks if file exists (line 15-18: quick exit if not)
*   Parses frontmatter to get coordinator\_session, agent\_name, enabled
*   Sends notifications to coordinator if enabled
*   Allows quick activation/deactivation via `enabled: true/false`

### ralph-wiggum Plugin

**.claude/ralph-loop.local.md:**

iteration: 1 max_iterations: 10 completion_promise: "All tests passing and build successful"


Fix all the linting errors in the project. Make sure tests pass after each fix.


**Hook usage (stop-hook.sh):**

*   Checks if file exists (line 15-18: quick exit if not active)
*   Reads iteration count and max\_iterations
*   Extracts completion\_promise for loop termination
*   Reads body as the prompt to feed back
*   Updates iteration count on each loop

## Quick Reference

### File Location

project-root/ └── .claude/ └── plugin-name.local.md


### Frontmatter Parsing

Extract frontmatter

FRONTMATTER=$(sed -n '/^---$/,/^---$/{ /^---$/d; p; }' "$FILE")

Read field

VALUE=$(echo "$FRONTMATTER" | grep '^field:' | sed 's/field: *//' | sed 's/^"\(.*\)"$/\1/')


### Body Parsing

Extract body (after second ---)

BODY=$(awk '/^---$/{i++; next} i>=2' "$FILE")


### Quick Exit Pattern

if [[ ! -f ".claude/my-plugin.local.md" ]]; then exit 0 # Not configured fi


## Additional Resources

### Reference Files

For detailed implementation patterns:

*   **`references/parsing-techniques.md`** - Complete guide to parsing YAML frontmatter and markdown bodies
*   **`references/real-world-examples.md`** - Deep dive into multi-agent-swarm and ralph-wiggum implementations

### Example Files

Working examples in `examples/`:

*   **`read-settings-hook.sh`** - Hook that reads and uses settings
*   **`create-settings-command.md`** - Command that creates settings file
*   **`example-settings.md`** - Template settings file

### Utility Scripts

Development tools in `scripts/`:

*   **`validate-settings.sh`** - Validate settings file structure
*   **`parse-frontmatter.sh`** - Extract frontmatter fields

## Implementation Workflow

To add settings to a plugin:

1.  Design settings schema (which fields, types, defaults)
2.  Create template file in plugin documentation
3.  Add gitignore entry for `.claude/*.local.md`
4.  Implement settings parsing in hooks/commands
5.  Use quick-exit pattern (check file exists, check enabled field)
6.  Document settings in plugin README with template
7.  Remind users that changes require Claude Code restart

Focus on keeping settings simple and providing good defaults when settings file doesn't exist.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

windsurf

29.28%
按下载量换算931

OpenCode

20.94%
按下载量换算666

Codex

16.16%
按下载量换算514

Claude Code

11.27%
按下载量换算358

Antigravity

8.41%
按下载量换算268

Gemini CLI

3.38%
按下载量换算108

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills