Commit 88c6498
docs(plugin-settings): fix allowed-tools syntax to use comma-separated format (#83)
## Summary
Fix `allowed-tools` frontmatter syntax in the plugin-settings skill to
use the official comma-separated string format instead of JSON array
syntax.
## Problem
Fixes #82
The `allowed-tools` field in two files used incorrect JSON array syntax
`["Tool1", "Tool2"]` instead of the official comma-separated format
`Tool1, Tool2` per Claude Code documentation.
## Solution
Changed the syntax in both files to match official documentation:
| File | Before | After |
|------|--------|-------|
| `SKILL.md:105` | `allowed-tools: ["Read", "Bash"]` | `allowed-tools:
Read, Bash` |
| `examples/create-settings-command.md:3` | `allowed-tools: ["Write",
"AskUserQuestion"]` | `allowed-tools: Write, AskUserQuestion` |
### Alternatives Considered
None - the fix is unambiguous and directly specified by official Claude
Code documentation.
## Changes
- `plugins/plugin-dev/skills/plugin-settings/SKILL.md`: Fixed
`allowed-tools` syntax on line 105
-
`plugins/plugin-dev/skills/plugin-settings/examples/create-settings-command.md`:
Fixed `allowed-tools` syntax on line 3
## Testing
- [x] Linting passes (markdownlint)
- [x] No code changes requiring tests
---
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <noreply@anthropic.com>1 parent b97edf6 commit 88c6498
2 files changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
102 | 102 | | |
103 | 103 | | |
104 | 104 | | |
105 | | - | |
| 105 | + | |
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
0 commit comments