Token导航 LogoToken导航TokenDH.com
AI 工具需要联网githubverified来源可访问clear审计通过

plugin-settings插件设置

Agent Skill

plugin-settings 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,413

周安装

202

GitHub Stars

119,307

下载量

1,152
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/anthropics/claude-code --skill 'Plugin Settings'

简介

每个项目的插件配置存储在 .claude/ 中的 YAML frontmatter 和 markdown 文件中

  • 目录。
  • 设置文件使用 .claude/plugin-name.local.md
  • 使用 YAML frontmatter 进行结构化配置,使用 markdown body 进行附加上下文或提示
  • 挂钩、命令和代理可以读取设置来自定义行为;快速退出模式检查文件是否存在并启用未配置时跳过的标志
  • 提供解析技术,用于使用标准 bash 工具提取各个字段(字符串、布尔值、数字)和 Markdown 正文内容
  • 常见模式包括切换钩子激活、管理代理状态和协调以及具有验证和合理默认值的配置驱动行为
  • 设置更改需要 Claude Code 重新启动;文件应该被 gitignored 并且永远不会提交到版本控制

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

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

能力 5

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

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

平台分布

Claude Code

30.37%
按下载量换算350

OpenCode

22.85%
按下载量换算263

Gemini CLI

18.98%
按下载量换算219

Cursor

11.05%
按下载量换算127

Antigravity

6.95%
按下载量换算80

Codex

3.45%
按下载量换算40

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills