knowledge-issue

Creates GitHub Issues in the dev-knowledge repository using the gh CLI with mandatory workflow labels.

Updated Jun 20, 2026
One-click install
npx skills add https://github.com/DIO0550/d-market-knowledge --skill knowledge-issue-dio0550
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: knowledge-issue
Source: https://github.com/DIO0550/d-market-knowledge/tree/main/plugins/knowledge-vault/skills/knowledge-issue
Command: npx skills add https://github.com/DIO0550/d-market-knowledge --skill knowledge-issue-dio0550

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It prevents knowledge loss by capturing both finished knowledge articles and in-the-moment development questions as GitHub Issues in the dio0550/dev-knowledge repository, each tagged with a label indicating how the knowledge should later be merged into the repository. ## Core Features & Use Cases - Article Registration: Register a knowledge article (created with knowledge-article) as an issue, using the article's frontmatter title and body. - Question Ticketing: File lightweight issues for design doubts, open questions, or things to investigate later, using a structured body template. - Mandatory Workflow Labels: Every issue gets exactly one of two labels: knowledge:pr (investigate on a branch, create the knowledge md via PR) or knowledge:direct (work on main and push the md directly). - Use Case: While coding, you hit a design question you can't resolve now. Run the skill to file an issue titled with the question, labeled knowledge:pr, so it becomes a tracked TODO for later article writing. ## Quick Start Create a GitHub issue in the dev-knowledge repository for this design question with the knowledge:pr label.

Frequently Asked Questions about knowledge-issue

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a GitHub issue from the command line with gh?

Use gh issue create with --repo, --title, --label, and --body or --body-file flags. This skill targets the dio0550/dev-knowledge repository and requires exactly one workflow label such as knowledge:pr or knowledge:direct.

How do I track development questions as GitHub issues?

File one issue per question using a structured body with sections for background, hypotheses, and reference notes. Label it knowledge:pr so it is later investigated on a branch and turned into a knowledge article via a pull request.

What is the difference between knowledge:pr and knowledge:direct labels?

knowledge:pr means investigate on a branch and merge the knowledge markdown through a pull request, suited for work needing review. knowledge:direct means write the markdown on main and push directly, suited for settled, lightweight notes.

Why does gh issue create fail with a label error?

The gh CLI errors when the label does not exist on the repository. Create the labels first with gh label create for knowledge:pr and knowledge:direct, then retry the issue creation.

Can I create GitHub issues without the gh CLI installed?

No, gh issue create fails in environments without an authenticated gh CLI, such as CI or remote runners. The documented fallback is to use GitHub MCP tools like mcp__github__issue_write or present the issue body for manual registration.