multica-ai/multica · error

%s links %d runtime-local path(s), which no reader can open:

Error message

%s links %d runtime-local path(s), which no reader can open:

What it means

Error "%s links %d runtime-local path(s), which no reader can open: " thrown in multica-ai/multica.

Source

Thrown at server/cmd/multica/local_path_link_lint.go:154

// exist and turn one failure into two.
func guardLocalPathLinks(body, field, deliveryHint string) error {
	if !inAgentExecutionContext() {
		return nil
	}
	findings := findLocalPathLinks(body)
	if len(findings) == 0 {
		return nil
	}

	var b strings.Builder
	fmt.Fprintf(&b, "%s links %d runtime-local path(s), which no reader can open:\n", field, len(findings))
	for _, f := range findings {
		fmt.Fprintf(&b, "  - %q — %s\n", f.Target, f.Reason)
	}
	b.WriteString("\nThe path exists only on the machine running you; for everyone else the link is dead. ")
	b.WriteString(deliveryHint)
	b.WriteString("\nTo merely reference a code location, use inline code instead of a link (`path/to/file.ts:42`) — code spans and fenced blocks are not checked.")
	return fmt.Errorf("%s", b.String())
}

View on GitHub (pinned to 2c0912b6ec)

Solutions

  1. Replace runtime-local paths in the linked content with portable paths or repository-relative links.

When it happens

Trigger: Thrown at server/cmd/multica/local_path_link_lint.go:154 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/a2471d9cb8626bd2. Report an issue: GitHub.