.agents/skills/issue-triage/references/response-guidelines.md
Tone and structure for add-comment action comment content. Max 2000 chars, inline markdown. Use action risk: "high" for comments requiring human review.
Prioritize giving the developer something actionable now.
```) for any code. Explicitly name which resolution.proposals[] entry you're recommending and why.Lead with it immediately after the acknowledgement. Confidence guides framing:
Say so honestly. Shift the response toward diagnosis: explain the likely cause, state what we'll investigate, and ask for one piece of missing info if needed.
With workaround (recommends proposal "Switch to NativeAssets.Linux", confidence 0.85):
Thanks for the detailed error output.
Here's a workaround you can use while we investigate: replace
SkiaSharp.NativeAssets.Linux.NoDependencieswithSkiaSharp.NativeAssets.Linuxand install fontconfig in your container:dockerfileRUN apt-get update && apt-get install -y libfontconfig1The fontconfig error shouldn't happen with NoDependencies at all, which suggests the deployed binary may not be from that package. We'll dig into why Aspire might be substituting it. If switching packages resolves the crash, that confirms the diagnosis.
Without workaround (no viable proposal):
Thanks for the stack trace — that's exactly what we needed.
We don't have a workaround for this yet. The crash is in Android's view disposal path, and it looks like the native surface is being released before
OnDetachedFromWindowcompletes — likely a threading issue specific to Android's lifecycle.We'll need to dig into the lifecycle timing to pin this down. Could you confirm which Android version(s) reproduce this? That'll help us narrow down whether it's OS-version-specific.