Don't scroll to bottm when sending message on mobile
This commit is contained in:
parent
75ef93ed80
commit
9b51159e42
116 changed files with 6201 additions and 1 deletions
16
web/.agents/skills/investigate-first/SKILL.md
Normal file
16
web/.agents/skills/investigate-first/SKILL.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
name: investigate-first
|
||||
description: Diagnose ambiguous failures before editing. Use for unknown causes, intermittent behavior, performance regressions, or investigations needing evidence-ranked hypotheses.
|
||||
---
|
||||
|
||||
# Investigate first
|
||||
|
||||
Gather evidence before changing product code.
|
||||
|
||||
- Separate observed symptom from inferred cause.
|
||||
- Trace inputs, state transitions, ownership boundaries, and failure output.
|
||||
- Rank hypotheses by evidence and cheap falsification value.
|
||||
- Do not edit until one credible mechanism explains evidence.
|
||||
- Stop exploration when evidence is sufficient to name cause or exact blocker.
|
||||
|
||||
Report cause and proof. Make no fix unless task authorizes implementation.
|
||||
4
web/.agents/skills/investigate-first/agents/openai.yaml
Normal file
4
web/.agents/skills/investigate-first/agents/openai.yaml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
interface:
|
||||
display_name: "Investigate First"
|
||||
short_description: "Find credible cause before editing code"
|
||||
default_prompt: "Use $investigate-first to diagnose this failure before proposing edits."
|
||||
Loading…
Reference in a new issue