multica-ai/multica · error

property %q not found; available: %s

Error message

property %q not found; available: %s

What it means

Error "property %q not found; available: %s" thrown in multica-ai/multica.

Source

Thrown at server/cmd/multica/cmd_property.go:207

// resolvePropertyRef matches a CLI ref against the catalog by UUID first,
// then case-insensitive name.
func resolvePropertyRef(properties []propertyDTO, ref string) (propertyDTO, error) {
	for _, p := range properties {
		if p.ID == ref {
			return p, nil
		}
	}
	lower := strings.ToLower(strings.TrimSpace(ref))
	for _, p := range properties {
		if strings.ToLower(p.Name) == lower {
			return p, nil
		}
	}
	names := make([]string, len(properties))
	for i, p := range properties {
		names[i] = p.Name
	}
	return propertyDTO{}, fmt.Errorf("property %q not found; available: %s", ref, strings.Join(names, ", "))
}

// parseOptionFlags converts repeatable --option flags ("Name" or
// "Name:#rrggbb") into config options. When updating, pass the existing
// options so same-named options keep their ids (issue values reference ids).
const defaultOptionColor = "#6b7280"

func parseOptionFlags(flags []string, existing []propertyOptionDTO) []map[string]string {
	byName := make(map[string]string, len(existing))
	for _, opt := range existing {
		byName[strings.ToLower(opt.Name)] = opt.ID
	}
	out := make([]map[string]string, 0, len(flags))
	for _, raw := range flags {
		name := raw
		color := defaultOptionColor
		if idx := strings.LastIndex(raw, ":#"); idx > 0 {
			name = raw[:idx]

View on GitHub (pinned to 2c0912b6ec)

Solutions

  1. Check the property name spelling; the available properties are listed in the message.

When it happens

Trigger: Thrown at server/cmd/multica/cmd_property.go:207 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/90094cac34a3205a. Report an issue: GitHub.