get_next_available_issue
Find the highest priority project, epic, feature, or task ready to work on without browsing all issues. Specify issue type to discover available work.
Instructions
Gets the next available issue of a specific type
Use this tool to find the next available issue that's ready to work on. Essential for discovering what work is available when you're ready to start on a new project, epic, feature, or task.
Behavior:
Returns the highest priority available issue of the specified type
Does not modify task status or claim ownership
Finds issues that are ready to work on (all prerequisites complete)
Helps you discover what work is available without having to browse through all issues
Available issue types:
'project': Top-level containers
'epic': Large features within projects
'feature': Specific functionality within epics
'task': Individual work items
Required parameters:
'issueType': Must specify exactly one object type (project, epic, feature, or task)
Optional parameters:
'scope': Limits search to issues within a specific project or area (e.g., 'P-project-name')
Usage patterns:
Find next project to work on: issueType='project'
Find which epic to tackle next in a project: issueType='epic', scope='P-project-name'
Discover what feature needs work: issueType='feature'
Get the next task ready for development: issueType='task'
Find work within a specific project scope: issueType='task', scope='P-specific-project'
Return format:
Success: Returns complete issue object with all metadata, prerequisites, and readiness status
No issues available: Returns appropriate message indicating no available issues of the specified type
Error cases: Returns error details with specific failure reasons
Essential for discovering what work is ready to be done. Use this when you need to know what project, epic, feature, or task you should work on next without having to manually browse through all the available issues.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueType | Yes | Type of issue to find (required) | |
| scope | No | Scope to filter issues (optional) |