Feature: Auto-create standard GitHub issues on project creation
Problem
Across DazzleTools projects, we follow a convention where:
Currently these are created manually after repokit create + gh repo create. This is easy to forget and adds friction.
Proposed Solution
After repokit creates a GitHub repo (or as a post-creation step), optionally create template issues:
repokit create myproject --github --issues
# Creates repo AND issues #1 (roadmap) + #2 (notes)
Or as a standalone command:
repokit issues init
# Creates standard issues on the current repo
Template Content
Issue #1 template — ROADMAP:
- Vision section (populated from project description)
- Completed section (empty)
- Active / Near-Term section (empty)
- Future section (empty)
- Footer: "This issue tracks project direction and is not intended to be closed."
Issue #2 template — Future features:
- Category sections based on project type
- Priority recommendation section
- Footer: "Captured from project creation"
Labels
Should also create labels if they don't exist:
Related
Analysis
See 2026-02-13__04-24-42__github-issues-roadmap-and-notes.md for context on this convention.
Feature: Auto-create standard GitHub issues on project creation
Problem
Across DazzleTools projects, we follow a convention where:
Currently these are created manually after
repokit create+gh repo create. This is easy to forget and adds friction.Proposed Solution
After repokit creates a GitHub repo (or as a post-creation step), optionally create template issues:
repokit create myproject --github --issues # Creates repo AND issues #1 (roadmap) + #2 (notes)Or as a standalone command:
repokit issues init # Creates standard issues on the current repoTemplate Content
Issue #1 template — ROADMAP:
Issue #2 template — Future features:
Labels
Should also create labels if they don't exist:
roadmap(for issue v0.1.1 - adding config for default branch #1)ideas(for issue #2)epic(for issue #2)Related
Analysis
See
2026-02-13__04-24-42__github-issues-roadmap-and-notes.mdfor context on this convention.