Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pulseengine-claude",
"version": "0.16.1",
"version": "0.16.2",
"description": "PulseEngine methodology as installable Claude Code tooling \u2014 philosophy + toolchain + repo-taxonomy + model-operating-contract memory, memory-persistence hooks (situational awareness at session start, working-context checkpoints across sessions/compaction), plus sixteen procedural skills (clean-room verification, release execution with a V-model traceability gate, oracle-gating, the full feature loop, the standardized release-artifact pipeline, tool-friction reporting, session-learning capture, STPA/STPA-Sec hazard-analysis audit, backend-agnostic proof synthesis, full bidirectional traceability audit across the V, greenfield verification bootstrap, release planning with an issue-driven delivery loop, an incremental issue-hunt loop, a quiesce-gated post-release repo-hygiene sweep, and a gate-potency audit that proves standing CI checks can still fail).",
"author": {
"name": "PulseEngine",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,14 @@ The sweep is written for multi-agent campaigns, and in one a background lane may
own the working tree, a worktree, or a cache *right now*. Assert idle first, or
the sweep races live work and corrupts it:

- **No compiler running.** `ps aux | grep -E 'cargo|rustc|bazel'` is empty. A
step-6 `rm -rf` on a `target/` an active build is writing is corruption, not
reclaim.
- **No compiler running.** `pgrep -x 'cargo|rustc|bazel'` is empty. A step-6
`rm -rf` on a `target/` an active build is writing is corruption, not reclaim.
**Match the command *name*, not the command line:** `ps aux | grep cargo` also
matches every tool installed under `~/.cargo/bin`, so on a normal developer
machine it is near-permanently non-empty and would abort every valid sweep.
(`ps -eo comm= | awk -F/ '{print $NF}' | grep -cxE 'cargo|rustc|bazel'` is the
portable equivalent.) The same name-vs-path care applies anywhere this skill
greps `ps`.
- **No agent owns the tree.** No agent lock held (e.g.
`.claude/scheduled_tasks.lock`), no background implementer mid-edit — `git
status` in the root *and* every worktree shows only what you expect.
Expand Down Expand Up @@ -192,6 +197,11 @@ issue-hunt watermarks: hygiene closes what shipped; issue-hunt triages what's ne

- **Sweeping under live work** — every step mutates; a running build or a
mid-edit agent turns the sweep into corruption. Quiesce (step 0) first.
- **A precondition that cries wolf** — a check that reports "busy" on a machine
that is idle gets routed around by habit, and then the once it fires for real
it is ignored. This is the human-factors twin of the vacuous gate: one check
can never fail, the other always "fails", and neither carries information.
A guard that misfires is a bug in the guard — fix it, don't learn to skip it.
- **`git branch --merged` (or `git cherry`) as squash-merge detectors** — both
miss squashes (verified); `--merged` sees the tip as unmerged and `git cherry`
flags it `+` on a patch-id mismatch. Verify content shipped by merged PR, a
Expand Down