← スキル一覧に戻る

claude-code-features
by PhantasticUniverse
Self-maintaining Claude Code showcase demonstrating all features (January 2026)
⭐ 0🍴 0📅 2026年1月22日
SKILL.md
name: claude-code-features description: Comprehensive reference of Claude Code features. Use when asking about Claude Code capabilities, hooks, skills, agents, plugins, or configuration.
Claude Code Feature Reference
Comprehensive list of Claude Code features as of January 2026.
Configuration Files
| File | Purpose |
|---|---|
CLAUDE.md | Project memory, read at session start |
.claude/settings.json | Hook configuration, permissions |
.claude/settings.local.json | Personal overrides (gitignored) |
.mcp.json | MCP server configuration |
.lsp.json | LSP server configuration |
Hooks (13 Types)
| Hook | Trigger |
|---|---|
SessionStart | Session begins |
SessionEnd | Session ends |
UserPromptSubmit | User submits prompt |
PreToolUse | Before tool execution |
PostToolUse | After tool succeeds |
PostToolUseFailure | After tool fails |
PermissionRequest | Permission requested |
Notification | Notification sent |
Stop | Agent stopping |
SubagentStart | Subagent begins |
SubagentStop | Subagent completes |
PreCompact | Before context compaction |
Setup | Repository init/maintenance |
Hook Types
command- Execute shell commandprompt- Inject prompt (Stop/SubagentStop only)
Hook Response Format
{
"continue": true,
"stopReason": "string",
"systemMessage": "string",
"hookSpecificOutput": {
"hookEventName": "PreToolUse",
"permissionDecision": "allow|deny|ask"
}
}
Skills
Required Frontmatter
name- Lowercase, hyphens, max 64 charsdescription- When to use, max 1024 chars
Optional Frontmatter
allowed-tools- Tools allowed without permissionmodel- Specific model to usecontext: fork- Isolated sub-agent contextagent- Agent type for fork contexthooks- Lifecycle hooksuser-invocable- Slash command visibility
Subagents
Required Frontmatter
name- Lowercase with hyphensdescription- When to delegate
Optional Frontmatter
tools- Available toolsdisallowedTools- Denied toolsmodel- sonnet, opus, haiku, inheritpermissionMode- default, acceptEdits, dontAsk, bypassPermissions, planskills- Skills to loadhooks- Lifecycle hooks
Built-in Agents
- Explore - Fast read-only (Haiku)
- Plan - Research for planning
- general-purpose - Complex tasks
- Bash - Terminal commands
Plugins
Structure
plugin/
├── .claude-plugin/plugin.json
├── commands/
├── agents/
├── skills/
├── hooks/hooks.json
├── .mcp.json
└── .lsp.json
Permissions
{
"permissions": {
"allow": ["Bash(git diff:*)"],
"ask": ["Bash(git push:*)"],
"deny": ["Read(./.env)"]
}
}
MCP Servers
{
"mcpServers": {
"name": {
"command": "npx",
"args": ["-y", "@package/name"],
"env": {}
}
}
}
Last verified: January 2026
スコア
総合スコア
40/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
レビュー
💬
レビュー機能は近日公開予定です