スキル一覧に戻る
Swoking

symfony-sksetting

by Swoking

Claude Code plugin pour projets Symfony StarterKit

0🍴 0📅 2026年1月19日
GitHubで見るManusで実行

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

GroupUsage
returnCodeError messages
labelFOFront office translations
labelBOBack office translations
formLabelForm field labels
CustomFeature-specific settings

Process

  1. Identify group and key
  2. Determine value: Text and/or integer
  3. Check if multilingual
  4. Validate: Use AskUserQuestion
  5. 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

レビュー

💬

レビュー機能は近日公開予定です