chore(devex): remove the greptile cli review, keep the skill - #90504
Merged
Conversation
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
😎 Merged successfully - details. |
Contributor
🤖 CI report🚨 Trunk lane — universal laneThis PR is assigned to the universal lane. It cannot merge in parallel with other PRs, so it can take longer to merge. Ask dev-ex if you think this is wrong. |
gantoine
marked this pull request as ready for review
August 27, 2026 21:29
Contributor
|
Reviews (1): Last reviewed commit: "chore(devex): remove the greptile cli re..." | Re-trigger Greptile |
webjunkie
approved these changes
Aug 28, 2026
1 task
gantoine
added a commit
that referenced
this pull request
Aug 28, 2026
A task that only said to open a PR matched the skill's description, which then pointed at the harness code review. That fans out parallel agents and cost one person over a hundred dollars on a 2,400-line diff. #90039 and #90504 already removed the mandatory rules and the hogli review command. Nothing else references the skill. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
Problem
Every flox activation installs a code review CLI that almost nobody on the team can use.
hogli reviewexits 78 for most people who run it.~/.config/posthog/tools/greptile/.Changes
Before:
flowchart LR Flox{{Flox activation}} --> Install[(npm install greptile)] Dev{{Dev or agent}} --> Cmd["hogli review"] Install --> Cmd Cmd -->|no seat: exit 78| Fallback["Harness review"] Cmd -->|reviewed| Label[Open PR with no-greptile] Fallback --> Open[Open PR] classDef phBlue fill:#1d4aff,stroke:#1d4aff,color:#fff; classDef phRed fill:#f54e00,stroke:#f54e00,color:#fff; classDef phYellow fill:#f9bd2b,stroke:#f9bd2b,color:#000; classDef phGray fill:#e5e7eb,stroke:#c7ccd1,color:#000; class Dev,Flox phBlue; class Cmd phRed; class Label,Open phYellow; class Install,Fallback phGray;After:
flowchart LR Dev{{Dev or agent}} --> Review["Harness review"] Review --> Edits[(Pre-push edits)] Edits --> Open[Open PR] Open --> Bot{{PR review bot}} classDef phBlue fill:#1d4aff,stroke:#1d4aff,color:#fff; classDef phRed fill:#f54e00,stroke:#f54e00,color:#fff; classDef phYellow fill:#f9bd2b,stroke:#f9bd2b,color:#000; classDef phGray fill:#e5e7eb,stroke:#c7ccd1,color:#000; class Dev,Review phBlue; class Bot phRed; class Open phYellow; class Edits phGray;hogli reviewis gone, sohoglino longer lists it.reviewing-before-prskill now runs the harness's own review over the branch diff. In Claude Code that is/code-review.no-greptilelabeling gate. Every PR keeps its bot review, and no local pass can suppress one..greptile/bot config stays, at the root and inproducts/desktop/. The PR bot reads it, and it is not part of the CLI..env.local.exampledropsGREPTILE_API_KEY, and the command's tests go with the command.Nothing in the product changes. All surfaces are dev tooling:
hogli, flox activation, and one agent skill.How did you test this code?
hogli lint:skillspasses on the rewritten skill..flox/env/on-activate.shdeletion is the exact inverse of the 57 lines feat(devex): local greptile review before opening a PR #88409 added, andbash -nparses the result.hogli ci:preflight --strictreports no failures, and the pre-push hook ran it.hogli review, which no longer exists.Automatic notifications
Docs update
None.
docs/never documented the command, for the reason #88409 recorded: this workflow family lives in AGENTS.md and.agents/skills/.🤖 Agent context
Autonomy: Human-driven (agent-assisted)
.greptile/config directory was the one judgment call. feat(devex): local greptile review before opening a PR #88409 moved the bot config out ofgreptile.jsonso the CLI and bot could share it, and reverting that move would churn a live integration for no gain, so the directory stays andowners.yamlkeeps pointing at it.