feat(self-driving): always enable the health checks signal source#196
Draft
rafaeelaudibert wants to merge 1 commit into
Draft
feat(self-driving): always enable the health checks signal source#196rafaeelaudibert wants to merge 1 commit into
rafaeelaudibert wants to merge 1 commit into
Conversation
Health findings — missing events, proxy gaps, outdated SDKs — are always actionable and a good fix target for the agent, so the self-driving setup now treats the `health_checks` / `health_issue` source as always-on alongside the scout gate, rather than leaving it off. Adds it as a sibling always-on row in step 4's Enable table. Generated-By: PostHog Code Task-Id: f43da6e8-ca5d-4ae0-8451-e6cce79e4e85
🧙 Wizard CIRun the Wizard CI and test your changes against wizard-workbench example apps by replying with a GitHub comment using one of the following commands: Test all apps:
Test all apps in a directory:
Test an individual app:
Show more apps
Results will be posted here when complete. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
The self-driving setup skill (
context/skills/self-driving/references/4-sources.md, step 4) now enables thehealth_checks/health_issuesignal source always, as a sibling of the always-on scout gate, instead of never turning it on.Why
Health findings — missing events, proxy gaps, outdated SDKs — are always actionable, and they're a good thing for the agent to fix. Unlike error tracking / session replay / support (which are conditional on the product actually using those surfaces), there's no reason to gate health checks: every project benefits. The source already exists in PostHog; the self-driving flow just wasn't turning it on.
Note on health checks: source vs. scout
These are complementary, not redundant:
signals-scout-health-checks(step 6) is the always-on scout whose findings reach the inbox via the scout gate.health_checks/health_issue(this change, step 4) is the native inbox source ("Responder").Adding the source closes a real gap — it isn't covered by the scout being on.
Reference bodies are copied verbatim at build time, so this is a direct markdown edit with no codegen.
🤖 Generated with Claude Code