-
Notifications
You must be signed in to change notification settings - Fork 236
feat(core): add bm hook producer front door for harness capture #1070
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
c07393f
feat(core): add harness envelope and redaction floor for bm hook fron…
phernandez 3e3b85f
feat(core): add hook inbox WAL and harness stdin adapters
phernandez 2d7c1c1
feat(core): add deterministic hook projector
phernandez af38809
feat(cli): add bm hook command group
phernandez 6d34fe5
refactor(plugins): reduce claude and codex hooks to bm hook shims
phernandez a3ab49c
feat(cli): add bm hook install and remove with ownership-tagged merging
phernandez 956a693
chore(plugins): bump the shim uvx floor from the release version updater
phernandez f494950
docs(plugins): document uv prerequisite, uvx floor, and captureEvents…
phernandez 63bc6c8
fix(core): address review findings in bm hook front door
phernandez 7fd1d03
fix(core): address PR #1070 review — hook probe, path redaction, Wind…
phernandez aacb9ab
fix(core): address PR #1070 round-2 review — tilde paths, shim fail-open
phernandez 709a622
fix(core): redact envelope and checkpoint cwd (PR #1070 round-3 review)
phernandez e908d94
fix(core): fix projector replay-retire race and bound unmapped inbox …
phernandez c04e0c8
fix(core): dedup processed replay history on projector rebuild (PR #1…
phernandez 0a39f5f
fix(core): route on project hint carried by an in-group replay (PR #1…
phernandez 3d6e78a
fix(core): resolvable install command + flush tolerance for vanished …
phernandez daf3b4e
fix(core): probe PATH launchers before baking them into installed hoo…
phernandez 14e6d3e
fix(core): recall generic session notes in the Codex brief (PR #1070 …
phernandez 481b308
fix(core): redact Codex working-tree rows in checkpoints (PR #1070 ro…
phernandez a5f8798
fix(core): projector note_type, exact-dir redaction, envelope types, …
phernandez 0f1f903
fix(core): skip CLI init for hook commands, redact roots before punct…
phernandez 85cc94c
fix(plugins): restore uv tool run fallback for hook launchers (PR #10…
phernandez 0cb528e
fix(core): don't prune write-failed envelopes; fail-open hook config …
phernandez a08ff88
fix(core): scope hook fail-open so operator verbs aren't silenced (PR…
phernandez a71b154
fix(core): install uvloop on the hook path before async work (PR #107…
phernandez d5b65a2
fix(core): catch SystemExit on the hook fail-open paths (PR #1070 rou…
phernandez 510525e
fix(core): guard hook logging setup against config SystemExit (PR #10…
phernandez d9b2c20
fix(core): make pending retention session-aware (PR #1070 round-19)
phernandez 6da90df
fix(core): create the hook inbox with owner-only permissions (PR #107…
phernandez a636e89
fix(core): expand user redactPaths; serialize checkpoint frontmatter …
phernandez 56b76fd
fix(core): preserve the brief's closing fence under truncation (PR #1…
phernandez d883a05
fix(plugins): strip copied quotes from a multi-token BM_BIN (PR #1070…
phernandez 93245ed
fix(core): bound the brief fence; route on full processed history (PR…
phernandez ac9702e
fix(core): reject negative retention; case-insensitive deny paths on …
phernandez 5723092
fix(core): redact whole-value denied paths containing spaces (PR #107…
phernandez 9931d5f
fix(core): redact embedded denied paths with spaced directories (PR #…
phernandez 8ff92a7
fix(core): fix Windows deny-path redaction failures (PR #1070)
phernandez d6f60d8
refactor(core): value objects + Pydantic for the hooks module (PR #1070)
phernandez 64b7f2e
fix(core): serialize projector artifact frontmatter via metadata= (PR…
phernandez 14b07c7
fix(core): serialize concurrent projector flushes with an inbox lock …
phernandez d651ba2
fix(core): skip checkpoint working-tree section for denied workspaces…
phernandez 5d61444
fix(cli): rewrite harness configs atomically in bm hook install/remov…
phernandez 6cd43b7
fix(plugins): pin LF line endings for shell shims via .gitattributes …
phernandez c0bc0ab
fix(cli): preserve harness config file modes across atomic rewrites (…
phernandez 3db833e
fix(cli): recreate stale config tmp files at the target's mode (PR #1…
phernandez 123a44f
fix(core): collapse control characters in provenance observation line…
phernandez b82454f
refactor(plugins): replace bash hook shims with PEP 723 uv scripts
phernandez f7dd197
fix(core): single-line every dynamic line in projected note bodies (P…
phernandez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| # Shell scripts must reach every checkout with LF endings. Marketplace plugin | ||
| # installs are git clones, and Git for Windows defaults to core.autocrlf=true; | ||
| # a CRLF-converted hook shim makes bash exit 2 with syntax errors on every | ||
| # session start — breaking the hooks' fail-open contract exactly where the | ||
| # uvx fallback is meant to protect users without a local install. | ||
| *.sh text eol=lf |
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.