You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(effect): align API and session-sync compliance boundaries
- add API and session-sync lint:effect gates and wire them into the root script
- decode session-sync boundary payloads with schemas and run the CLI entrypoint through Effect NodeRuntime
- move API agent snapshot persistence and terminal persistence queue toward Effect/platform primitives
- keep command builder core pure by passing clonedOnHostname explicitly
Proof of fix:
- rtk bun run lint
- rtk bun run typecheck
- rtk bun run --cwd packages/api typecheck
- rtk bun run --cwd packages/api lint
- rtk bun run test
- rtk bun run --cwd packages/api test
- rtk bun run lint:effect
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@
46
46
"web:serve": "bun run --cwd packages/app serve:web",
47
47
"lint": "bun run --filter @prover-coder-ai/docker-git-terminal lint && bun run --filter @prover-coder-ai/docker-git lint && bun run --filter @effect-template/lib lint",
48
48
"lint:tests": "bun run --filter @prover-coder-ai/docker-git lint:tests",
49
-
"lint:effect": "bun run --filter @prover-coder-ai/docker-git-terminal lint:effect && bun run --filter @prover-coder-ai/docker-git lint:effect && bun run --filter @effect-template/lib lint:effect",
49
+
"lint:effect": "bun run --filter @prover-coder-ai/docker-git-session-sync lint:effect && bun run --filter @prover-coder-ai/docker-git-terminal lint:effect && bun run --filter @prover-coder-ai/docker-git lint:effect && bun run --filter @prover-coder-ai/docker-git-container lint:effect && bun run --filter @effect-template/lib lint:effect && bun run --filter @effect-template/api lint:effect",
50
50
"test": "bun run --filter @prover-coder-ai/docker-git-session-sync test && bun run --filter @prover-coder-ai/docker-git-terminal test && bun run --filter @prover-coder-ai/docker-git test && bun run --filter @effect-template/lib test",
51
51
"typecheck": "bun run --filter @prover-coder-ai/docker-git-session-sync typecheck && bun run --filter @prover-coder-ai/docker-git-terminal typecheck && bun run --filter @prover-coder-ai/docker-git typecheck && bun run --filter @effect-template/lib typecheck",
52
52
"start": "bun run --cwd packages/app build:docker-git && bun ./packages/app/dist/src/docker-git/main.js"
0 commit comments