Skip to content

Replace low-value 'Resuming work' comment with conditional investigation findings gate and simplify skill rubrics #148

Description

@sebastientaggart

Problem to Fix

The /start skill posts a low-value "Resuming work" comment to GitHub tickets every time an agent resumes an existing issue. The comment typically restates the ticket title and provides no new information. Meanwhile, valuable insights discovered during the agent's investigation are lost when the conversation ends — they're never captured on the ticket itself.

Additionally, both /start and /submit-for-review contain detailed rubrics and enumerations for things that agents already handle well through natural language understanding, adding unnecessary complexity to the skill prompts without improving outcomes.

Why it Matters

For PMs and engineers watching a ticket, the "Resuming work" comment is noise that trains people to ignore ticket notifications. Conversely, genuinely useful investigation findings (root cause corrections, project-wide gotchas, related side-effects) disappear with the chat session — exactly the kind of durable knowledge that should live on the ticket.

The over-specified rubrics add cognitive load when maintaining the skills and consume agent context window for guidance the agents don't need.

General Approach

Replace the unconditional "Resuming work" comment in /start Case B with a conditional investigation findings gate: if the agent discovers anything novel and durable during investigation, present findings to the user with a simple post or skip choice before continuing to code. If nothing noteworthy was found, skip silently.

Simplify three over-specified rubrics across both skills by trusting agent judgment:

  • Collapse the intent classification blocks (duplicated in Case A and Case B) from 5-line enumerations to a single principle
  • Remove the complexity scale definitions (trivial/moderate/significant/extensive) — the field labels are self-explanatory
  • Remove the resolution comment writing rules in /submit-for-review where the template already demonstrates the desired style

Complexity

Verification / QA effort: moderate
Changes are to skill prompt text only — no code logic, no config, no infrastructure — but the investigation findings gate introduces a new conditional flow in Case B that should be tested with a real resume.

Acceptance Criteria

  • The "Resuming work" comment is no longer posted unconditionally when resuming a ticket
  • When the agent's investigation surfaces novel findings, they are presented to the user with a post / skip gate before coding begins
  • If investigation reveals nothing beyond what the ticket already states, no comment is posted and no gate is shown
  • Intent classification blocks in /start are reduced to a single-line principle (applied in both Case A and Case B)
  • The complexity scale definition is removed from /start
  • The resolution comment writing rules are removed from /submit-for-review (except the #N form rule)

Metadata

Metadata

Labels

enhancementNew feature or requestqa-passedQA completed, passes

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions