Skill Index

maestro-flow/

manage-issue

community[command]

Create, query, update, close, and link issues

$/plugin install maestro-flow

details

<purpose> Issue lifecycle management for the project issue tracker. Supports create, list, status, update, close, and link (bidirectional issue-task cross-reference). All issues stored in `.workflow/issues/issues.jsonl` using the issue.json schema.

For automated issue discovery, use /manage-issue-discover.

Closed-loop workflow: After creating an issue, use /maestro-analyze --gaps <ISS-ID> for root cause analysis, /maestro-plan --gaps for solution planning, and /maestro-execute for execution. </purpose>

<required_reading> @~/.maestro/workflows/issue.md </required_reading>

<deferred_reading>

  • issue.json template — read when creating or updating issue records (create, update, close) </deferred_reading>
<context> $ARGUMENTS -- subcommand + options. Parse first token as subcommand.

Valid subcommands:

  • create -- create a new issue (--title, --severity, --source, --phase, --description)
  • list -- list issues with optional filters (--status, --phase, --severity, --source)
  • status -- show full detail for a specific issue (ISS-XXXXXXXX-NNN)
  • update -- update issue fields (ISS-XXXXXXXX-NNN --status, --priority, --severity, --tags, ...)
  • close -- close an issue with resolution (ISS-XXXXXXXX-NNN --resolution)
  • link -- link issue to a task (ISS-XXXXXXXX-NNN --task TASK-NNN)

State files:

  • .workflow/issues/issues.jsonl -- active issues (one JSON per line)
  • .workflow/issues/issue-history.jsonl -- archived/closed issues </context>
<execution> Parse subcommand from first token of $ARGUMENTS. Follow '~/.maestro/workflows/issue.md' completely.

Next-step routing on completion:

  • create → /maestro-analyze --gaps <ISS-ID> or /maestro-plan --gaps
  • list → /maestro-analyze --gaps <ISS-ID> for any open issue
  • close → /manage-status </execution>

<error_codes>

CodeSeverityConditionRecovery
E_NO_SUBCOMMANDerrorNo subcommand provided in $ARGUMENTSDisplay valid subcommands, prompt user to select
E_INVALID_SUBCOMMANDerrorUnrecognized subcommandDisplay valid subcommands with usage hints
E_ISSUES_DIR_MISSINGwarning.workflow/issues/ directory does not existAuto-create directory and empty issues.jsonl
</error_codes>

<success_criteria>

  • Subcommand parsed and routed to correct handler
  • Issue data read/written to correct JSONL file
  • Output displayed in appropriate format (table for list, detail for status)
  • Cross-references maintained (link creates bidirectional references)
  • Next step routing by subcommand:
    • create → /maestro-analyze --gaps <ISS-ID> or /maestro-plan --gaps
    • list → /maestro-analyze --gaps <ISS-ID> for any open issue
    • close → /manage-status </success_criteria>

technical

github
catlog22/maestro-flow
stars
340
license
unspecified
contributors
1
last commit
2026-05-25T02:58:12Z
file
.claude/commands/manage-issue.md

related