agentsclimarketplace

Create tasks

Skill makigjuro/cloudstack-ai-plugins/plugins/dev-workflow/skills/create-tasks

Claude Code plugin marketplace — AI-powered full-stack cloud engineer for .NET 10 + React 19 + Azure/Terraform/Helm projects. 29 skills, 6 agents, 14 rules.

Install
npx -y skills add makigjuro/cloudstack-ai-plugins --skill create-tasks

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Create GitHub issues from a feature plan or PRD -- automatically determines single issue vs epic + task issues. Use after /prd or /plan-feature to push tasks to GitHub, or whenever the user wants to create structured issue(s) for a feature.

SKILL.md

6.9 KB, as published. Nobody here has run it

Create GitHub Tasks

Analyze a feature plan or PRD and create the appropriate GitHub issue structure. Automatically decides whether to create a single issue or an epic with multiple task issues based on scope and complexity.

Configuration

Read cloudstack.json from the project root at the start of execution. Extract relevant fields:

  • REPO_OWNER / REPO_NAME = repository.owner / repository.name (default: detect from git remote -v)

If cloudstack.json does not exist, auto-detect by parsing the GitHub remote URL:

git remote get-url origin | sed -E 's|.*github\.com[:/]([^/]+)/([^/.]+).*|\1 \2|'

Arguments

  • {prd-path} -- Path to PRD file (optional, will search docs/prd/ or use conversation context)
  • --dry-run -- Show what would be created without actually creating issues
  • --epic-only -- Create only the epic issue, not individual tasks
  • --no-epic -- Create only task issues, no parent epic

Decision Logic: Single vs Multiple Issues

Create a SINGLE issue when:

  • Feature has <= 3 implementation tasks
  • All tasks affect the same service/layer
  • Work is small enough for one PR (roughly < 1 day of work)
  • No PRD exists -- just a simple feature plan from conversation

Create an EPIC + task issues when:

  • Feature has > 3 implementation tasks
  • Tasks span multiple services or layers
  • A PRD exists with structured sections
  • Tasks could be assigned to different people or done in separate PRs
  • --epic-only or --no-epic flags override this logic

Process

Step 1: Find the Plan

  1. If path provided, read that file
  2. Else search docs/prd/*.md for most recent PRD
  3. Else look for feature plan in conversation context
  4. If nothing found, ask user to describe the feature or run /plan-feature or /prd first

Step 2: Parse & Classify

Extract from the plan:

  • Title: Feature name
  • Summary: Description
  • Acceptance Criteria: All AC items
  • Tasks: Implementation tasks grouped by layer
  • Out of Scope: Exclusions
  • Labels: Derive from affected services (see Label Mapping below)

Apply the decision logic above to determine: single issue or epic + tasks.

Step 3: Present Plan for Approval

Show the user what will be created:

## Issue Creation Plan

Mode: {Single Issue | Epic + N Task Issues}
Reason: {brief explanation of why this mode was chosen}

### {Single Issue title OR Epic title}
Labels: {labels}

### Tasks ({count})
1. {task description}
2. {task description}
...

Create? [Yes / Modify / Cancel]

Step 4a: Single Issue Path

Create one issue with all tasks as a checklist using MCP:

mcp__github-mcp-server__create_issue(
  owner: "{REPO_OWNER}",
  repo: "{REPO_NAME}",
  title: "{Feature Title}",
  labels: ["{labels}"],
  body: "..."
)

Issue body format:

## Summary
{description}

## Acceptance Criteria
- [ ] AC1: ...
- [ ] AC2: ...

## Implementation Tasks

### Domain
- [ ] {task}

### Application
- [ ] {task}

### Infrastructure
- [ ] {task}

### Endpoints
- [ ] {task}

### Frontend
- [ ] {task}

### Tests
- [ ] {task}

## Out of Scope
- {exclusions}

---
Generated with [Claude Code](https://claude.com/claude-code)

Only include layer sections that have tasks. Skip empty sections.

Step 4b: Epic + Tasks Path

Create the epic using MCP:

mcp__github-mcp-server__create_issue(
  owner: "{REPO_OWNER}",
  repo: "{REPO_NAME}",
  title: "Epic: {Feature Title}",
  labels: ["epic", "feature", "{labels}"],
  body: "..."
)

Epic body format:

## Summary
{summary}

## Acceptance Criteria
{all AC items as checkboxes}

## Task Issues
<!-- Links added after tasks are created -->

## Out of Scope
{exclusions}

## References
- PRD: {prd-path if applicable}

---
Generated with [Claude Code](https://claude.com/claude-code)

Create each task issue using MCP:

mcp__github-mcp-server__create_issue(
  owner: "{REPO_OWNER}",
  repo: "{REPO_NAME}",
  title: "[{Layer}] {Task Title}",
  labels: ["{layer-label}", "{service-labels}"],
  body: "..."
)

Task body format:

## Parent Epic
#{epic-number}

## Task
{task description}

## Acceptance Criteria
{relevant AC items}

## Files to Modify
- `{file path}`

## Implementation Notes
{hints from PRD}

---
Generated with [Claude Code](https://claude.com/claude-code)

Update epic with task links:

mcp__github-mcp-server__update_issue(
  owner: "{REPO_OWNER}",
  repo: "{REPO_NAME}",
  issue_number: {epic-number},
  body: "{updated body with - [ ] #{taskN} -- {title} links}"
)

Label Mapping

Layer/ServiceLabels
Domaindomain, backend
Applicationapplication, backend
Infrastructureinfrastructure, backend
Endpointsapi, backend
Frontendfrontend
Teststesting
Helm/Terraforminfrastructure, devops

General labels:

  • feature for new functionality
  • enhancement for improvements
  • bug for defects

Add service-specific labels based on the services defined in cloudstack.json or discovered in the project.

Task Title Conventions

Keep titles under 70 characters. Use [Layer] prefix for multi-issue mode:

DescriptionTitle
"Add user entity to domain"[Domain] Add user entity
"Create API endpoint for orders"[Endpoints] Add order creation endpoint

Grouping Strategy

Group related tasks into single issues when:

  • They modify the same file
  • They're logically atomic (must be done together)
  • They're trivial (< 10 lines each)

Split into separate issues when:

  • Tasks can be done independently
  • Different reviewers might handle them
  • They touch different services

Output Format

Single Issue Output

## Issue Created

- #{number}: {title}
  URL: {url}

## Next Steps
Run `/start-work #{number}` to begin implementation.

Epic + Tasks Output

## Issues Created

### Epic
- #{number}: {title} -- {url}

### Tasks ({count})
| # | Issue | Title | Labels |
|---|-------|-------|--------|
| 1 | #{n1} | {title1} | {labels} |
| 2 | #{n2} | {title2} | {labels} |

## Next Steps
1. Run `/start-work #{first-task}` to begin implementation
2. Close tasks as completed; epic tracks overall progress

Error Handling

  • gh not authenticated: Prompt user to run gh auth login
  • Label doesn't exist: Create label or skip with warning
  • Rate limit: Pause and retry with backoff
  • Partial failure: Report which issues were created, which failed

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.