Automatisch GitHub Issues configureren voor elk nieuw project met labels, templates en decision log.
Automatically configures GitHub issues with labels, templates, and a decision log for new projects.
/plugin marketplace add Primadetaautomation/claude-dev-toolkit/plugin install claude-dev-toolkit@primadata-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Automatisch GitHub Issues configureren voor elk nieuw project met labels, templates en decision log.
Claude MOET dit automatisch doen wanneer:
Stap 1: Check of decision log bestaat
gh issue list --label "decision" --search "[LOG]" --json number -q '.[0].number'
Stap 2: Als LEEG (geen log) → setup uitvoeren
~/bin/setup-project.sh
Stap 3: Decision log lezen voor context
gh issue view [nummer] --json body -q '.body'
User kan ook expliciet vragen:
# Huidige repo
REPO=$(gh repo view --json nameWithOwner -q '.nameWithOwner')
# Of specifieke repo
REPO="owner/repo-name"
# Task management
gh label create "in-progress" --color "FFA500" --description "Currently working on" --force --repo "$REPO"
gh label create "priority:high" --color "FF0000" --description "Do first" --force --repo "$REPO"
gh label create "priority:low" --color "0E8A16" --description "When time permits" --force --repo "$REPO"
gh label create "blocked" --color "D93F0B" --description "Waiting on something" --force --repo "$REPO"
# Types
gh label create "bug" --color "D73A4A" --description "Something broken" --force --repo "$REPO"
gh label create "feature" --color "0075CA" --description "New functionality" --force --repo "$REPO"
gh label create "decision" --color "7057FF" --description "Architecture/design decision" --force --repo "$REPO"
gh label create "docs" --color "0052CC" --description "Documentation" --force --repo "$REPO"
gh label create "refactor" --color "FBCA04" --description "Code improvement" --force --repo "$REPO"
Kopieer van ~/.github-templates/ISSUE_TEMPLATE/ naar .github/ISSUE_TEMPLATE/ in de repo:
decision.mdfeature.mdbug.mdMaak een issue aan met titel [LOG] {Project Name} Development Log en label decision.
Template voor decision log body:
# {Project Name} Development Log
Dit issue is een lopend logboek van beslissingen, voortgang en context.
**Niet afsluiten** - dit blijft open als referentie.
---
## Huidige Status
- **Laatste sessie:** {datum}
- **Focus:** ...
---
## Architectuur Beslissingen
<!-- Belangrijke keuzes en waarom -->
---
## Lopende Taken
- [ ] ...
---
## Sessie Log
<!-- Voeg toe per sessie, nieuwste bovenaan -->
### {datum}
- Project setup voltooid
- GitHub Issues geconfigureerd
Na setup kan de user deze commands gebruiken:
| Command | Wat het doet |
|---|---|
gh issue list | Lijst open taken |
gh issue create | Nieuwe taak (met template keuze) |
gh issue view 1 | Lees decision log |
gh issue edit 1 --body "..." | Update decision log |
Start sessie:
User: "Ik ga werken aan {project}, lees het log"
Claude: gh issue view {log-nummer} --repo {repo}
Einde sessie:
User: "Update het log"
Claude: Voegt sessie entry toe aan decision log issue
~/bin/setup-github-issues.sh - Labels aanmaken~/bin/copy-issue-templates.sh - Templates kopiërenThis skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.