Loading...
Loading...
Create GitHub Issues with a parent-child structure (sub-issues). Generate parent and child issues using `gh issue create`, and link the parent-child relationship with `gh api .../sub_issues`. It is recommended to use Conventional Commits format (`feat:`, `fix:`, etc.) for titles. Used for scenarios like "Create an Issue" and "Break down tasks into Issues".
npx skill4agent add fandhe-ai/agent-cli-skills create-issueghgh auth statusgh issue create \
--title "feat: Feature Name" \
--body "$(cat <<'EOF'
## Overview
...
## Background
...
## Acceptance Criteria
- [ ] Criteria 1
- [ ] Criteria 2
## Related
- Figma: ...
- Related Issue: #...
EOF
)"feat:fix:chore:gh issue create \
--title "feat: Task Name" \
--body "..."gh apigh api \
--method POST \
repos/{owner}/{repo}/issues/{parent_number}/sub_issues \
-f sub_issue_id={child_number}GIT_SSL_NO_VERIFY=1GIT_SSL_NO_VERIFY=1gh issue creategh apidocs/sandbox-tls.md