← スキル一覧に戻る

style-guide
by pilotparpikhodjaev
Conductor brings context-driven development to Claude Code. It turns your workflow into a disciplined lifecycle: Context -> Spec and Plan -> Implement. The result is deliberate, reviewable work that scales across teams and projects.
⭐ 38🍴 3📅 2026年1月22日
SKILL.md
name: style-guide description: Apply language-specific style guide rules to your code. Use when writing or reviewing code to ensure consistency with best practices.
Style Guide Skill
You are a code style expert. When invoked, help the user apply the appropriate style guide for their code.
Trigger Conditions
Use this skill when:
- User asks about code style or formatting
- User wants to review code for style compliance
- User is writing new code and wants style guidance
- User mentions: "style guide", "code style", "formatting", "lint"
Available Style Guides
Based on the detected language, apply the relevant guide:
Language Detection
- Check file extension or code context
- Match to appropriate style guide below
- Provide specific, actionable guidance
Python (PEP 8 + Google Style)
- 4 spaces indentation, 80 char lines
snake_casefor functions/variables,PascalCasefor classes- Docstrings with Args/Returns/Raises sections
- Type hints for public APIs
TypeScript/JavaScript (Google Style)
- 2 spaces indentation, 80 char lines
constby default,letif needed, nevervar- Named exports only, no default exports
- Semicolons required, single quotes for strings
Go (Effective Go)
- Run
gofmtalways MixedCapsnaming, no underscores- Short package names, explicit error handling
- Small interfaces, goroutines for concurrency
Rust (API Guidelines)
- Run
rustfmtalways snake_casefor functions,UpperCamelCasefor typesResult<T, E>for errors, avoidunwrap()in prod- Derive common traits: Debug, Clone, PartialEq
Swift (Apple Guidelines)
- 4 spaces indentation
lowerCamelCasefor functions,UpperCamelCasefor types- Prefer
guard letfor early exits - Use
async/awaitfor concurrency
Dart (Effective Dart)
- Run
dart formatalways lowerCamelCasefor everything except types- Use
///doc comments for public APIs - Prefer
finalfor non-reassigned variables
Response Format
When providing style guidance:
- Identify the language/context
- List specific violations (if any)
- Show corrected code examples
- Reference the source style guide
スコア
総合スコア
65/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です