← スキル一覧に戻る

symfony-sksetting
by Swoking
Claude Code plugin pour projets Symfony StarterKit
⭐ 0🍴 0📅 2026年1月19日
SKILL.md
name: symfony-sk:setting description: Add settings to sk_settings table. Use for configuration values. allowed-tools: Read, Write, Edit, Glob, Grep
Setting Skill
⛔ CRITICAL RULES
MANDATORY: Validate with AskUserQuestion BEFORE writing to migration.
Mission
Add configuration settings to the sk_settings table.
Functions
// Single language setting
$this->addSetting(null, 'group', 'key', 'textValue', 0);
$this->addSetting('FR', 'group', 'key', 'textValue', 0);
// All languages at once
$this->addSkSettingsForAllLanguage('group', 'key',
['FR' => 'Texte FR', 'EN' => 'Text EN'],
['FR' => 0, 'EN' => 0]
);
Common Groups
| Group | Usage |
|---|---|
returnCode | Error messages |
labelFO | Front office translations |
labelBO | Back office translations |
formLabel | Form field labels |
| Custom | Feature-specific settings |
Process
- Identify group and key
- Determine value: Text and/or integer
- Check if multilingual
- Validate: Use AskUserQuestion
- Write: Add to migration
Checklist
- Group name is valid
- Key is unique in group
- Multilingual if needed
- AskUserQuestion used before writing
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です