You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .claude-plugin/marketplace.json
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@
4
4
"name": "Pengfei Ni"
5
5
},
6
6
"metadata": {
7
-
"version": "2.1.5",
7
+
"version": "2.1.6",
8
8
"description": "Claude Code settings and skills for spec-driven development workflows"
9
9
},
10
10
"plugins": [
11
11
{
12
12
"name": "claude-code-settings",
13
13
"source": "./",
14
14
"description": "Claude Code settings, commands, agent and skills (all in one)",
15
-
"version": "2.1.5",
15
+
"version": "2.1.6",
16
16
"author": {
17
17
"name": "Pengfei Ni"
18
18
}
@@ -21,7 +21,7 @@
21
21
"name": "kiro-skill",
22
22
"source": "./plugins/kiro-skill",
23
23
"description": "Interactive feature development workflow from idea to implementation (Requirements → Design → Tasks → Execute)",
24
-
"version": "1.0.1",
24
+
"version": "1.0.2",
25
25
"author": {
26
26
"name": "Pengfei Ni"
27
27
}
@@ -30,7 +30,7 @@
30
30
"name": "spec-kit-skill",
31
31
"source": "./plugins/spec-kit-skill",
32
32
"description": "GitHub Spec-Kit integration for constitution-based spec-driven development (7-phase workflow)",
33
-
"version": "1.0.1",
33
+
"version": "1.0.2",
34
34
"author": {
35
35
"name": "Pengfei Ni"
36
36
}
@@ -39,7 +39,7 @@
39
39
"name": "codex-skill",
40
40
"source": "./plugins/codex-skill",
41
41
"description": "Leverage OpenAI Codex (GPT-5/GPT-5.1) for non-interactive automation mode and hands-off task execution",
42
-
"version": "1.0.1",
42
+
"version": "1.0.2",
43
43
"author": {
44
44
"name": "Pengfei Ni"
45
45
}
@@ -48,7 +48,7 @@
48
48
"name": "nanobanana-skill",
49
49
"source": "./plugins/nanobanana-skill",
50
50
"description": "Generate or edit images using Google Gemini API via nanobanana",
51
-
"version": "1.0.1",
51
+
"version": "1.0.2",
52
52
"author": {
53
53
"name": "Pengfei Ni"
54
54
}
@@ -57,7 +57,7 @@
57
57
"name": "youtube-transcribe-skill",
58
58
"source": "./plugins/youtube-transcribe-skill",
59
59
"description": "Extract subtitles/transcripts from YouTube videos via CLI or browser automation",
60
-
"version": "1.0.1",
60
+
"version": "1.0.2",
61
61
"author": {
62
62
"name": "Pengfei Ni"
63
63
}
@@ -66,7 +66,7 @@
66
66
"name": "autonomous-skill",
67
67
"source": "./plugins/autonomous-skill",
68
68
"description": "Use when user wants to execute long-running tasks that require multiple sessions to complete. This skill manages task decomposition, progress tracking, and autonomous execution using Claude Code headless mode with auto-continuation. Trigger phrases: autonomous, long-running task, multi-session, 自主执行, 长时任务, autonomous skill.",
Copy file name to clipboardExpand all lines: .github/copilot-instructions.md
+33-39Lines changed: 33 additions & 39 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,75 +19,69 @@ This repository contains Claude Code settings, configurations and guidance. The
19
19
- Configured to use `claude-sonnet-4.5` as the primary model
20
20
- Telemetry and non-essential traffic are disabled
21
21
22
-
## Custom Commands
22
+
## Skills
23
23
24
-
Custom commands for Claude Code are organized in the `commands/` directory by category:
24
+
Skills are reusable capabilities defined in the `skills/` directory. Each skill has a `SKILL.md` file with YAML frontmatter containing `name` and `description` fields. The description serves as both documentation and trigger condition.
25
25
26
-
### Command File Structure
26
+
### Skill File Structure
27
27
28
-
All command files must include YAML frontmatter with required metadata:
28
+
All skill files must include YAML frontmatter:
29
29
30
30
```yaml
31
31
---
32
-
description: Brief description of the command
33
-
argument-hint: [expected arguments format]
34
-
allowed-tools: List of tools the command can use
32
+
name: skill-name
33
+
description: 'Comprehensive description that also serves as the trigger condition. Include keywords and phrases that should activate this skill.'
35
34
---
36
35
```
37
36
38
-
**Required fields:**
39
-
40
-
-`description`: Clear, concise description of command purpose
41
-
-`argument-hint`: Format showing expected arguments (e.g., `[problem or question]`)
42
-
-`allowed-tools`: Comma-separated list of tools (e.g., `Read, Edit, Write, Bash(*)`)
43
-
44
-
### Command Documentation
45
-
46
-
- Command documentation belongs in `README.md` under the Commands section
47
-
- Use collapsible `<details>` sections with clear summaries
48
-
- Include usage examples and key features
49
-
- Never document commands within the command files themselves
50
-
51
37
### Directory Structure
52
38
53
39
```sh
54
-
commands/
55
-
├── cc/ # Claude Code commands
56
-
│ └── create-command.md
57
-
└── gh/ # GitHub commands
58
-
└── review-pr.md
40
+
skills/
41
+
├── reflection/ # Session analysis and CLAUDE.md improvement
Copy file name to clipboardExpand all lines: README.md
+86-51Lines changed: 86 additions & 51 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Claude Code Settings/Commands/Skills for Vibe Coding
1
+
# Claude Code Settings/Skills for Vibe Coding
2
2
3
-
A curated collection of Claude Code settings, custom commands, skills and sub-agents designed for enhanced development workflows. This setup includes specialized commands, skills and subagents for feature development (spec-driven workflow), code analysis, GitHub integration, and knowledge management.
3
+
A curated collection of Claude Code settings, skills and sub-agents designed for enhanced development workflows. This setup includes specialized skills and subagents for feature development (spec-driven workflow), code analysis, GitHub integration, and knowledge management.
4
4
5
5
> For OpenAI Codex settings, configurations and custom prompts, please refer [feiskyer/codex-settings](https://github.com/feiskyer/codex-settings).
6
6
@@ -11,10 +11,10 @@ A curated collection of Claude Code settings, custom commands, skills and sub-ag
@@ -82,55 +82,9 @@ Open the link, log in and authenticate your GitHub Copilot account.
82
82
83
83
- ANTHROPIC_DEFAULT_HAIKU_MODEL: gpt-5-mini
84
84
85
-
86
-
## Commands
87
-
88
-
The `commands/` directory contains [custom slash commands](https://code.claude.com/docs/en/slash-commands) that extend Claude Code's slash commands, which could be invoked via `/<command-name> [arguments]`.
-`/cc:create-command [name] [description]` - Create new Claude Code commands
119
-
120
-
</details>
121
-
122
-
<details>
123
-
<summary>Utilities</summary>
124
-
125
-
### Utilities
126
-
127
-
-`/translate [text]` - Translate English/Japanese tech content to Chinese
128
-
129
-
</details>
130
-
131
85
## Skills
132
86
133
-
Skills are now distributed as separate plugins for modular installation. Install only what you need:
87
+
Skills are [reusable capabilities](https://docs.anthropic.com/en/docs/claude-code/skills) that teach Claude how to complete specific tasks. They can be invoked via `/skill-name [arguments]` or triggered automatically based on context. Install only what you need:
134
88
135
89
<details>
136
90
<summary>codex-skill - handoff task to Codex CLI</summary>
Capture technical breakthroughs and transform them into actionable, reusable documentation. Creates structured breakthrough files in `breakthroughs/` with problem/insight/implementation/impact sections and maintains a searchable index.
345
+
346
+
**Usage:**
347
+
348
+
```text
349
+
You: "/eureka Reduced API response time from 2s to 100ms by implementing request batching"
<summary>translate - Tech article translation to Chinese</summary>
357
+
358
+
### [translate](./skills/translate)
359
+
360
+
Translate English or Japanese tech articles into natural, fluent Chinese using a three-step process (direct translation, issue identification, reinterpretation). Preserves Markdown formatting and keeps technical terms and brand names untranslated.
361
+
362
+
**Usage:**
363
+
364
+
```text
365
+
You: "/translate [paste text or provide file path]"
366
+
Claude: [Outputs polished Chinese translation]
367
+
```
368
+
369
+
</details>
370
+
371
+
<details>
372
+
<summary>command-creator - Create Claude Code custom commands</summary>
373
+
374
+
### [command-creator](./skills/command-creator)
375
+
376
+
Create Claude Code custom slash commands with proper structure, frontmatter, and best practices.
Review GitHub pull requests with detailed, multi-perspective code analysis using parallel subagents with confidence scoring and false positive filtering.
395
+
396
+
</details>
397
+
398
+
<details>
399
+
<summary>skill-creator - Create and benchmark agent skills</summary>
400
+
401
+
### [skill-creator](./skills/skill-creator)
402
+
403
+
Create, refine, and benchmark agent skills with iterative evaluation loops, quantitative metrics, and description optimization.
404
+
405
+
</details>
406
+
373
407
## Agents
374
408
375
409
The `agents/` directory contains specialized AI [subagents](https://docs.anthropic.com/en/docs/claude-code/sub-agents) that extend Claude Code's capabilities.
@@ -536,6 +570,7 @@ Ensure the API key you configured in `ANTHROPIC_AUTH_TOKEN` is added to approved
536
570
537
571
-[Claude Code official document](https://docs.anthropic.com/en/docs/claude-code/overview) - must read official document.
538
572
-[anthropics/skills](https://github.com/anthropics/skills) - official list of Claude Code skills that teach Claude how to complete specific tasks in a repeatable way
573
+
-[anthropics/claude-plugins-official](https://github.com/anthropics/claude-plugins-official) - official list of Claude Code plugins managed by Anthropic
539
574
-[hesreallyhim/awesome-claude-code](https://github.com/hesreallyhim/awesome-claude-code) - curated list of slash-commands, CLAUDE.md files, CLI tools, and other resources.
540
575
-[wshobson/agents](https://github.com/wshobson/agents) - a comprehensive collection of specialized AI subagents for Claude Code.
0 commit comments