feat: add session summary screenshot, skills, and GitHub templates

- Add session-summary-v3.png screenshot for hook documentation
- Add GitHub issue templates (bug report, feature request, question)
- Add new skills: ccboard, guide-recap, landing-page-generator,
  release-notes-generator, skill-creator

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Florian BRUNIAUX 2026-02-15 20:55:16 +01:00
parent 0f4b1837c5
commit e504f0d1bf
49 changed files with 6554 additions and 0 deletions

56
.github/ISSUE_TEMPLATE/bug_report.yml vendored Normal file
View file

@ -0,0 +1,56 @@
name: Bug Report
description: Report an error or issue in the guide
title: "[Bug]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for reporting this issue!
- type: dropdown
id: section
attributes:
label: Guide Section
description: Which section contains the error?
options:
- Getting Started
- Installation
- Configuration
- MCP Servers
- Tools & Commands
- Best Practices
- Security
- Agent Teams
- Advanced Topics
- Examples
- Other
validations:
required: true
- type: textarea
id: description
attributes:
label: Description
description: What's the issue?
placeholder: "The guide says X but actually Y is correct"
validations:
required: true
- type: textarea
id: location
attributes:
label: Location
description: Where in the guide is this issue?
placeholder: "Section 5.3, paragraph 2 OR guide/05-tools/mcp-servers.md line 42"
validations:
required: true
- type: textarea
id: correction
attributes:
label: Suggested Correction
description: What should it say instead?
placeholder: "It should say..."
validations:
required: false

View file

@ -0,0 +1,65 @@
name: Feature Request
description: Suggest new content or improvements for the guide
title: "[Feature]: "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thanks for suggesting an improvement!
- type: dropdown
id: type
attributes:
label: Type
description: What kind of addition is this?
options:
- New section/chapter
- New example
- Expand existing section
- New best practice
- New MCP server documentation
- New tool documentation
- Tutorial/walkthrough
- Cheatsheet addition
- Other
validations:
required: true
- type: textarea
id: topic
attributes:
label: Topic
description: What topic should be covered?
placeholder: "I'd like to see coverage of..."
validations:
required: true
- type: textarea
id: rationale
attributes:
label: Why is this important?
description: What problem does this solve? Who would benefit?
placeholder: "This would help users who..."
validations:
required: true
- type: textarea
id: outline
attributes:
label: Suggested Outline
description: What should this cover? (optional)
placeholder: |
- Key concept 1
- Key concept 2
- Example
validations:
required: false
- type: textarea
id: resources
attributes:
label: Relevant Resources
description: Links to documentation, examples, or references
validations:
required: false

52
.github/ISSUE_TEMPLATE/question.yml vendored Normal file
View file

@ -0,0 +1,52 @@
name: Question
description: Ask about Claude Code usage or guide content
title: "[Question]: "
labels: ["question"]
body:
- type: markdown
attributes:
value: |
Before asking, please check:
- [The Guide](https://cc.bruniaux.com/)
- [Existing Issues](https://github.com/FlorianBruniaux/claude-code-ultimate-guide/issues)
- [Official Docs](https://docs.claude.ai/)
- type: dropdown
id: category
attributes:
label: Category
description: What's your question about?
options:
- Claude Code usage
- MCP servers
- Configuration
- Tools & commands
- Best practices
- Security
- Agent teams
- Installation
- Troubleshooting
- Guide content
- Other
validations:
required: true
- type: textarea
id: question
attributes:
label: Question
description: What would you like to know?
placeholder: "How do I..."
validations:
required: true
- type: textarea
id: context
attributes:
label: Context
description: What have you tried? What's your use case?
placeholder: |
I'm trying to...
I've looked at...
validations:
required: false