multica-ai/multica · error
resolve parent issue: %w
Error message
resolve parent issue: %w
What it means
Error "resolve parent issue: %w" thrown in multica-ai/multica.
Source
Thrown at server/cmd/multica/cmd_issue.go:1120
return err
}
if hasDesc {
if err := guardLocalPathLinks(desc, "issue description",
"Deliver the file itself with `multica issue create --attachment <path>` (repeatable) and drop the link."); err != nil {
return err
}
body["description"] = desc
}
if statusFlag != "" {
body["status"] = statusFlag
}
if priorityFlag != "" {
body["priority"] = priorityFlag
}
if v, _ := cmd.Flags().GetString("parent"); v != "" {
parent, err := resolveIssueRef(ctx, client, v)
if err != nil {
return fmt.Errorf("resolve parent issue: %w", err)
}
body["parent_issue_id"] = parent.ID
}
if v, _ := cmd.Flags().GetString("project"); v != "" {
project, err := resolveProjectID(ctx, client, v)
if err != nil {
return fmt.Errorf("resolve project: %w", err)
}
body["project_id"] = project.ID
}
if cmd.Flags().Changed("stage") {
stage, _ := cmd.Flags().GetInt("stage")
if stage < 1 {
return fmt.Errorf("--stage must be >= 1")
}
body["stage"] = stage
}
if v, _ := cmd.Flags().GetString("start-date"); v != "" {View on GitHub (pinned to 2c0912b6ec)
Solutions
- Verify the parent issue key or ID exists in the workspace.
When it happens
Trigger: Thrown at server/cmd/multica/cmd_issue.go:1120 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of multica-ai/multica@2c0912b6ec (2026-08-15).
Data as JSON: /api/errors/2098f5bf413c6567.
Report an issue: GitHub.