multica-ai/multica · error
no %s found matching %q
Error message
no %s found matching %q
What it means
Error "no %s found matching %q" thrown in multica-ai/multica.
Source
Thrown at server/cmd/multica/cmd_issue.go:2570
case 0:
return "<none>"
case 1:
return parts[0]
case 2:
return parts[0] + " or " + parts[1]
default:
return strings.Join(parts[:len(parts)-1], ", ") + ", or " + parts[len(parts)-1]
}
}
func resolveAssignee(ctx context.Context, client *cli.APIClient, name string, kinds assigneeKinds) (string, string, error) {
if client.WorkspaceID == "" {
return "", "", fmt.Errorf("workspace ID is required to resolve assignees; use --workspace-id or set MULTICA_WORKSPACE_ID")
}
input := normalizeAssigneeLookupInput(name)
if input == "" {
return "", "", fmt.Errorf("no %s found matching %q", kinds.describe(), name)
}
inputLower := strings.ToLower(input)
// Matches are collected into three priority buckets. Higher-priority buckets
// short-circuit lower-priority matching so that, e.g., an exact name match
// always wins over a substring collision with another candidate.
// 1. idMatches — full UUID or 8-char ShortID (as shown by `truncateID`).
// 2. exactMatches — case-insensitive full name equality.
// 3. substringMatches — preserves the existing partial-name UX.
var idMatches, exactMatches, substringMatches []assigneeMatch
var errs []error
var fetchAttempts int
classify := func(entityType, id, displayName string) {
match := assigneeMatch{Type: entityType, ID: id, Name: displayName}
if id != "" && (strings.EqualFold(id, input) || strings.EqualFold(truncateID(id), input)) {
idMatches = append(idMatches, match)
returnView on GitHub (pinned to 2c0912b6ec)
Solutions
- Check the name or ID spelling; run the list command to see available options.
When it happens
Trigger: Thrown at server/cmd/multica/cmd_issue.go:2570 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/eccf18f99cb2e42c.
Report an issue: GitHub.