pumuki 6.3.302 → 6.3.303

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1949,8 +1949,12 @@ export const resolvePreWriteNextAction = (params: {
1949
1949
  command: buildPreWritePolicyReconcileCommand(params.aiGate.repo_state.repo_root),
1950
1950
  };
1951
1951
  }
1952
+ const hasOnlyPreWriteWorktreeWarn =
1953
+ params.aiGate.violations.length > 0
1954
+ && params.aiGate.violations.every((violation) => violation.code === 'EVIDENCE_PREWRITE_WORKTREE_WARN');
1952
1955
  const atomicSliceViolation = params.aiGate.violations.find((violation) =>
1953
1956
  PRE_WRITE_ATOMIC_SLICE_CODES.has(violation.code)
1957
+ && !(hasOnlyPreWriteWorktreeWarn && violation.code === 'EVIDENCE_PREWRITE_WORKTREE_WARN')
1954
1958
  );
1955
1959
  if (atomicSliceViolation) {
1956
1960
  const plan = collectWorktreeAtomicSlices({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.302",
3
+ "version": "6.3.303",
4
4
  "description": "Enterprise-grade AST Intelligence System with multi-platform support (iOS, Android, Backend, Frontend) and Feature-First + DDD + Clean Architecture enforcement. Includes dynamic violations API for intelligent querying.",
5
5
  "main": "index.js",
6
6
  "bin": {