π¦ Hippo Memory Insights β 2026-06-11 #38552
Closed
Replies: 1 comment
-
|
This discussion has been marked as outdated by Daily Hippo Learn. A newer discussion is available at Discussion #39032. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
.lock.ymlfiles cause CI friction (strength=1.00, retrieved 32x)Top Memories Surfaced
.lock.ymlfiles cause churn and CI friction; runmake recompileafter markdown workflow edits.list_code_scanning_alertscalls in workflow prompts β always includestate: openandseverity: critical,highto avoid oversized MCP responses.gh-awis a GitHub CLI extension (gh aw) that compiles markdown workflows into GitHub Actions β not the GitHub CLI itself.make build+make recompileafter every code or workflow change; never skip recompile.make build && make fmtafter first edit (Checkpoint 1);make agent-report-progressbefore every PR (Checkpoint 2).node: command not foundon GPU/self-hosted paths when Node.js runtime is missing; validate runtimes and PATH early.make fmtbefore PR has caused 5 CI failures in a single day β PRs that fail CI after opening are closed without merging.Suggested Improvements
Error Patterns
.lock.ymlfiles (verified, strength=1.00, 32x retrieved): The single highest-confidence recurring incident. Consider a pre-commit hook or CI check that validates lock files are current after any.mdworkflow edit.nodemissing on GPU/self-hosted runners (strength=1.00): Add anode --versionsanity check early in workflows that depend on Node.js.Code Quality
skills/javascript-refactoring/SKILL.mddocuments splitting large.cjsfiles. Any file > 300 lines with 2+ distinct domains should be split. Worth an audit pass.scratchpad/validation-refactoring.mdhas a step-by-step guide. Checkpkg/workflow/compiler_yaml.goand related validators for candidates.JobNamevsStepID) for compile-time safety.CI Health
make testvs selective testing: Memory consistently recommends letting CI runmake test(>5 min) rather than running locally. Reinforce in onboarding docs.validate-yamljob: Ensures no ANSI escapes in YAML before other CI jobs run β keep this at the top of the dependency graph in.github/workflows/ci.yml.Quick Wins
make recompilereminder to the PR template or a CI job that validates.lock.ymlfreshness after.mdedits. Directly addresses the top recurring incident.hippo auditand bulk-delete entries below 0.1 to improve recall precision.state: open+severity: critical,highin alllist_code_scanning_alertscalls. Add a linter rule or document inAGENTS.md.node --version || (echo 'node not found' && exit 1)early in all workflows using Node.js tooling..cjsfiles exist, link the skill fromAGENTS.mdto increase adoption.Longer-term Themes
make recompileafter workflow edits appears in 4+ independent memories. A Git post-commit hook may be more reliable than documentation alone.Memory Health
Low-quality memories flagged for pruning
Run
hippo auditfor the full list. Examples of fading duplicates:mem_ef4574760dbb(strength=0.07) β duplicate ofmake build/fmtcheckpoint remindermem_6fb77abf55fb(strength=0.07) β duplicate of JavaScriptfmt-cjsremindermem_b3de87b76481(strength=0.06) β Codex auth failure incident (consider archiving if not recurring)References: 27332590144
Beta Was this translation helpful? Give feedback.
All reactions