chore(sprint): clean local tooling artifacts #633

Merged
pdurlej merged 1 commit from codex/sprint-local-cleanup into main 2026-05-30 10:25:58 +02:00
Collaborator

Summary

Sprint-prep cleanup before the next quieter Shape Up-style cycle.

  • Ignores local agent/tool artifacts that were making the working tree look dirty: .codegraph/, .serena/, .understand-anything/, local platform state/cache, and generated control-plane/uv.lock.
  • Preserves the Memory Control Plane strategy note as tracked M07 context under state/strategy/ instead of leaving it as local untracked state.
  • Locally removed stale generated/untracked artifacts, including the closed Understand Anything spike scratch directory for #404.

Safety

  • No runtime changes.
  • No secrets or raw env values included.
  • No RS2000/VPS1000 mutation.
  • Closed UA scratch state was local-only and issue #404 is already closed.

Validation

  • UV_CACHE_DIR=/private/tmp/uv-cache PYTHONPATH=control-plane uv run --project control-plane python -m platformctl.cli validate all --json passed.
## Summary Sprint-prep cleanup before the next quieter Shape Up-style cycle. - Ignores local agent/tool artifacts that were making the working tree look dirty: `.codegraph/`, `.serena/`, `.understand-anything/`, local platform state/cache, and generated `control-plane/uv.lock`. - Preserves the Memory Control Plane strategy note as tracked M07 context under `state/strategy/` instead of leaving it as local untracked state. - Locally removed stale generated/untracked artifacts, including the closed Understand Anything spike scratch directory for #404. ## Safety - No runtime changes. - No secrets or raw env values included. - No RS2000/VPS1000 mutation. - Closed UA scratch state was local-only and issue #404 is already closed. ## Validation - `UV_CACHE_DIR=/private/tmp/uv-cache PYTHONPATH=control-plane uv run --project control-plane python -m platformctl.cli validate all --json` passed.
chore(sprint): clean local tooling artifacts
All checks were successful
base-is-main / guard (pull_request) Successful in 2s
canary-required / collect-diff (pull_request) Successful in 5s
patchwarden-client-dry-run / collect-diff (pull_request) Successful in 5s
patchwarden-pr-sanity / collect-diff (pull_request) Successful in 5s
canary-required / canary (pull_request) Has been skipped
patchwarden-client-dry-run / dry-run (pull_request) Successful in 26s
patchwarden-pr-sanity / sanity (pull_request) Successful in 1m52s
b63499bf10
Author
Collaborator

Patchwarden PR sanity

  • Status: advisory_findings
  • PR: 633
  • Commit: b63499bf1002615063d308c10cb3658db13c6b89
  • Security-sensitive label: missing
  • Authority: advisory model review plus deterministic blockers only
  • 3+3 canary: still alive; this does not replace it

Deterministic findings

No deterministic findings.

Model reviewers

global-glm / glm-5.1:cloud

  • Status: ok

  • Verdict: OK

  • medium control-plane/uv.lock ignored may break reproducibility

    • Evidence: Diff adds 'control-plane/uv.lock' to .gitignore. Lock files are typically committed to ensure deterministic dependency resolution across environments. The PR description calls it 'generated' but uv.lock serves the same purpose as package-lo
    • Next: Verify this is intentional. If control-plane is a separate project with its own uv.lock that should be shared across developers/CI, it should be tracked, not ignored. If it's truly local-only (e.g., a development-only artifact), document this decision in a comment in .gitignore or an ADR.

global-deepseek / deepseek-v4-pro:cloud

  • Status: ok

  • Verdict: OK

  • low Ignoring control-plane/uv.lock may break deterministic builds

    • Evidence: .gitignore now includes control-plane/uv.lock. If this lock file was previously tracked or is expected for reproducible environments, ignoring it could lead to non-deterministic dependency resolution across machines.
    • Next: Verify whether control-plane/uv.lock is required for deterministic builds. If so, remove it from .gitignore and ensure it remains tracked. If it is truly a generated artifact that should not be committed, confirm that no CI or developer workflow depends on it.

redteam / kimi-k2.6:cloud

  • Status: ok

  • Verdict: NOT_OK

  • medium control-plane/uv.lock ignored — reproducibility footgun

    • Evidence: .gitignore diff adds +control-plane/uv.lock; PR validation runs uv run --project control-plane python -m platformctl.cli validate all --json confirming this is an application with a CLI, not a library
    • Next: Remove control-plane/uv.lock from .gitignore, run uv lock in control-plane/, and commit the lockfile so CI and deployments have deterministic, reproducible dependency resolution

Policy notes

  • GLM 5.1 + DeepSeek V4 Pro are the operator-required model mix for this bot.
  • Optional red-team model is enabled only when PLATFORMCTL_PR_SANITY_REDTEAM_MODEL is configured.
  • Auto-merge is not enabled here.
<!-- patchwarden-pr-sanity:pdurlej/platform:PR-633 --> # Patchwarden PR sanity - Status: `advisory_findings` - PR: `633` - Commit: `b63499bf1002615063d308c10cb3658db13c6b89` - Security-sensitive label: `missing` - Authority: advisory model review plus deterministic blockers only - 3+3 canary: still alive; this does not replace it ## Deterministic findings No deterministic findings. ## Model reviewers ### `global-glm` / `glm-5.1:cloud` - Status: `ok` - Verdict: `OK` - **`medium`** control-plane/uv.lock ignored may break reproducibility - Evidence: `Diff adds 'control-plane/uv.lock' to .gitignore. Lock files are typically committed to ensure deterministic dependency resolution across environments. The PR description calls it 'generated' but uv.lock serves the same purpose as package-lo` - Next: Verify this is intentional. If control-plane is a separate project with its own uv.lock that should be shared across developers/CI, it should be tracked, not ignored. If it's truly local-only (e.g., a development-only artifact), document this decision in a comment in .gitignore or an ADR. ### `global-deepseek` / `deepseek-v4-pro:cloud` - Status: `ok` - Verdict: `OK` - **`low`** Ignoring control-plane/uv.lock may break deterministic builds - Evidence: `.gitignore now includes `control-plane/uv.lock`. If this lock file was previously tracked or is expected for reproducible environments, ignoring it could lead to non-deterministic dependency resolution across machines.` - Next: Verify whether `control-plane/uv.lock` is required for deterministic builds. If so, remove it from .gitignore and ensure it remains tracked. If it is truly a generated artifact that should not be committed, confirm that no CI or developer workflow depends on it. ### `redteam` / `kimi-k2.6:cloud` - Status: `ok` - Verdict: `NOT_OK` - **`medium`** control-plane/uv.lock ignored — reproducibility footgun - Evidence: `.gitignore diff adds `+control-plane/uv.lock`; PR validation runs `uv run --project control-plane python -m platformctl.cli validate all --json` confirming this is an application with a CLI, not a library` - Next: Remove `control-plane/uv.lock` from .gitignore, run `uv lock` in control-plane/, and commit the lockfile so CI and deployments have deterministic, reproducible dependency resolution ## Policy notes - GLM 5.1 + DeepSeek V4 Pro are the operator-required model mix for this bot. - Optional red-team model is enabled only when `PLATFORMCTL_PR_SANITY_REDTEAM_MODEL` is configured. - Auto-merge is not enabled here.
pdurlej deleted branch codex/sprint-local-cleanup 2026-05-30 10:25:58 +02:00
pdurlej approved these changes 2026-05-30 10:26:17 +02:00
pdurlej left a comment

Owner-authorized admin approval after green checks. Scope is non-runtime sprint cleanup; no secrets printed.

Owner-authorized admin approval after green checks. Scope is non-runtime sprint cleanup; no secrets printed.
Sign in to join this conversation.
No reviewers
No labels
W6d-automerge-calibration
agent/claude-code
agent/codex
agent/hermes
agent/iskra
agent/ollama
agent/patchwarden
automerge-candidate
class/security-sensitive
cutover-gate
dependency/blocked
dependency/blocks-others
dependency/cross-repo
dependency/needs-confirmation
domain:agents
domain:ci
domain:docs
domain:forgejo
domain:infra
domain:memory
domain:runtime
domain:signal
domain:ux
flow/architecture
flow/blocked
flow/deployed
flow/done
flow/implementation
flow/intake
flow/maintained
flow/observed
flow/ready
flow/refining
flow/retired
flow/review
iterating
judge/codex-candidate
judge/hermes-candidate
judge/low-confidence
judge/needs-refinement
judge/operator-needed
judge/p0
judge/p1
judge/p2
judge/p3
judge/park
judge/patchwarden-candidate
judge/stale-priority
kind/adr
kind/bug
kind/chore
kind/feature
kind/infra
kind/ops
kind/refactor
kind/research
large-impact
merge/auto
merge/manual
merge/manual-dependency-conflict
merge/manual-failing-tests
merge/manual-merge-conflict
merge/manual-missing-review
merge/manual-operator-preference
merge/manual-red-zone
merge/manual-security-sensitive
merge/manual-unclear-scope
merge/manual-unknown
meta
mode:operator-only
mode:patchwarden-iskra-approved
mode:safe-auto
needs-operator-decision
needs-triage
not-ready
observed/erroring
observed/needs-followup
observed/pending
observed/retire-candidate
observed/unused
observed/used
operator-emotional
owner-attention
phase/02
phase/03
priority:p0
priority:p1
priority:p2
priority:p3
proposed
ready-for-agent
ready-for-operator
recovery
review:claude-reviewed
review:codex-reviewed
review:dziadek-reviewed
review:needs-human
risk/exposure
risk/process
risk/product
risk/runtime
safety:external-write
safety:no-prod-mutation
safety:prod-impact
safety:secret-touch
size/large
size/medium
size/small
size/tiny
size/unknown
source/adr
source/agent-generated
source/manual
source/operator-chat
source/voice-note
status:blocked
status:codex-ready
status:merged:pending-evidence
status:needs-evidence
status:operator-needed
status:parked
tier/full
tier/lite
tier/stacked
tier:0-platform-substrate
tier:1-iskra-value-layer
tier:2-tools-products-modules
type:bug
type:chore
type:docs
type:feat
type:policy
type:research
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
pdurlej/platform!633
No description provided.