Skip to content

Commit 831b735

Browse files
sjnimsclaude
andcommitted
docs(plugin-settings): fix allowed-tools syntax to use comma-separated format
Changed allowed-tools from JSON array syntax to official comma-separated string format per Claude Code documentation. Fixes #82 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent b97edf6 commit 831b735

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/plugin-dev/skills/plugin-settings/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Commands can read settings files to customize behavior:
102102
```markdown
103103
---
104104
description: Process data with plugin
105-
allowed-tools: ["Read", "Bash"]
105+
allowed-tools: Read, Bash
106106
---
107107

108108
# Process Command

plugins/plugin-dev/skills/plugin-settings/examples/create-settings-command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: "Create plugin settings file with user preferences"
3-
allowed-tools: ["Write", "AskUserQuestion"]
3+
allowed-tools: Write, AskUserQuestion
44
---
55

66
# Create Plugin Settings

0 commit comments

Comments
 (0)