@patze/code-cli 0.10.2
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.
- package/CHANGELOG.md +92 -0
- package/NOTICE.md +17 -0
- package/README.md +177 -0
- package/VERSION +1 -0
- package/bin/patze.mjs +7 -0
- package/dist/backend/auth.d.ts +13 -0
- package/dist/backend/auth.d.ts.map +1 -0
- package/dist/backend/auth.js +12 -0
- package/dist/backend/auth.js.map +1 -0
- package/dist/backend/client.d.ts +14 -0
- package/dist/backend/client.d.ts.map +1 -0
- package/dist/backend/client.js +51 -0
- package/dist/backend/client.js.map +1 -0
- package/dist/backend/preview-client.d.ts +33 -0
- package/dist/backend/preview-client.d.ts.map +1 -0
- package/dist/backend/preview-client.js +104 -0
- package/dist/backend/preview-client.js.map +1 -0
- package/dist/backend/preview-payload.d.ts +50 -0
- package/dist/backend/preview-payload.d.ts.map +1 -0
- package/dist/backend/preview-payload.js +92 -0
- package/dist/backend/preview-payload.js.map +1 -0
- package/dist/cli/argv.d.ts +10 -0
- package/dist/cli/argv.d.ts.map +1 -0
- package/dist/cli/argv.js +67 -0
- package/dist/cli/argv.js.map +1 -0
- package/dist/cli/commands/apply-format.d.ts +12 -0
- package/dist/cli/commands/apply-format.d.ts.map +1 -0
- package/dist/cli/commands/apply-format.js +50 -0
- package/dist/cli/commands/apply-format.js.map +1 -0
- package/dist/cli/commands/apply.d.ts +14 -0
- package/dist/cli/commands/apply.d.ts.map +1 -0
- package/dist/cli/commands/apply.js +256 -0
- package/dist/cli/commands/apply.js.map +1 -0
- package/dist/cli/commands/approve-format.d.ts +4 -0
- package/dist/cli/commands/approve-format.d.ts.map +1 -0
- package/dist/cli/commands/approve-format.js +40 -0
- package/dist/cli/commands/approve-format.js.map +1 -0
- package/dist/cli/commands/approve.d.ts +19 -0
- package/dist/cli/commands/approve.d.ts.map +1 -0
- package/dist/cli/commands/approve.js +91 -0
- package/dist/cli/commands/approve.js.map +1 -0
- package/dist/cli/commands/code.d.ts +4 -0
- package/dist/cli/commands/code.d.ts.map +1 -0
- package/dist/cli/commands/code.js +57 -0
- package/dist/cli/commands/code.js.map +1 -0
- package/dist/cli/commands/diff-format.d.ts +12 -0
- package/dist/cli/commands/diff-format.d.ts.map +1 -0
- package/dist/cli/commands/diff-format.js +151 -0
- package/dist/cli/commands/diff-format.js.map +1 -0
- package/dist/cli/commands/diff.d.ts +22 -0
- package/dist/cli/commands/diff.d.ts.map +1 -0
- package/dist/cli/commands/diff.js +101 -0
- package/dist/cli/commands/diff.js.map +1 -0
- package/dist/cli/commands/doctor.d.ts +6 -0
- package/dist/cli/commands/doctor.d.ts.map +1 -0
- package/dist/cli/commands/doctor.js +99 -0
- package/dist/cli/commands/doctor.js.map +1 -0
- package/dist/cli/commands/goal-format.d.ts +3 -0
- package/dist/cli/commands/goal-format.d.ts.map +1 -0
- package/dist/cli/commands/goal-format.js +32 -0
- package/dist/cli/commands/goal-format.js.map +1 -0
- package/dist/cli/commands/goal.d.ts +28 -0
- package/dist/cli/commands/goal.d.ts.map +1 -0
- package/dist/cli/commands/goal.js +80 -0
- package/dist/cli/commands/goal.js.map +1 -0
- package/dist/cli/commands/inspect-format.d.ts +6 -0
- package/dist/cli/commands/inspect-format.d.ts.map +1 -0
- package/dist/cli/commands/inspect-format.js +62 -0
- package/dist/cli/commands/inspect-format.js.map +1 -0
- package/dist/cli/commands/inspect.d.ts +7 -0
- package/dist/cli/commands/inspect.d.ts.map +1 -0
- package/dist/cli/commands/inspect.js +11 -0
- package/dist/cli/commands/inspect.js.map +1 -0
- package/dist/cli/commands/login.d.ts +4 -0
- package/dist/cli/commands/login.d.ts.map +1 -0
- package/dist/cli/commands/login.js +21 -0
- package/dist/cli/commands/login.js.map +1 -0
- package/dist/cli/commands/plan-format.d.ts +7 -0
- package/dist/cli/commands/plan-format.d.ts.map +1 -0
- package/dist/cli/commands/plan-format.js +48 -0
- package/dist/cli/commands/plan-format.js.map +1 -0
- package/dist/cli/commands/plan.d.ts +13 -0
- package/dist/cli/commands/plan.d.ts.map +1 -0
- package/dist/cli/commands/plan.js +64 -0
- package/dist/cli/commands/plan.js.map +1 -0
- package/dist/cli/commands/runs.d.ts +5 -0
- package/dist/cli/commands/runs.d.ts.map +1 -0
- package/dist/cli/commands/runs.js +25 -0
- package/dist/cli/commands/runs.js.map +1 -0
- package/dist/cli/commands/session-snapshot-format.d.ts +3 -0
- package/dist/cli/commands/session-snapshot-format.d.ts.map +1 -0
- package/dist/cli/commands/session-snapshot-format.js +5 -0
- package/dist/cli/commands/session-snapshot-format.js.map +1 -0
- package/dist/cli/commands/status-format.d.ts +11 -0
- package/dist/cli/commands/status-format.d.ts.map +1 -0
- package/dist/cli/commands/status-format.js +57 -0
- package/dist/cli/commands/status-format.js.map +1 -0
- package/dist/cli/commands/status.d.ts +4 -0
- package/dist/cli/commands/status.d.ts.map +1 -0
- package/dist/cli/commands/status.js +12 -0
- package/dist/cli/commands/status.js.map +1 -0
- package/dist/cli/commands/trust-loop-snapshot.d.ts +3 -0
- package/dist/cli/commands/trust-loop-snapshot.d.ts.map +1 -0
- package/dist/cli/commands/trust-loop-snapshot.js +125 -0
- package/dist/cli/commands/trust-loop-snapshot.js.map +1 -0
- package/dist/cli/commands/verify-drift-guard.d.ts +2 -0
- package/dist/cli/commands/verify-drift-guard.d.ts.map +1 -0
- package/dist/cli/commands/verify-drift-guard.js +11 -0
- package/dist/cli/commands/verify-drift-guard.js.map +1 -0
- package/dist/cli/commands/verify.d.ts +12 -0
- package/dist/cli/commands/verify.d.ts.map +1 -0
- package/dist/cli/commands/verify.js +62 -0
- package/dist/cli/commands/verify.js.map +1 -0
- package/dist/cli/help.d.ts +3 -0
- package/dist/cli/help.d.ts.map +1 -0
- package/dist/cli/help.js +36 -0
- package/dist/cli/help.js.map +1 -0
- package/dist/cli/interactive/agent-turn-format.d.ts +15 -0
- package/dist/cli/interactive/agent-turn-format.d.ts.map +1 -0
- package/dist/cli/interactive/agent-turn-format.js +70 -0
- package/dist/cli/interactive/agent-turn-format.js.map +1 -0
- package/dist/cli/interactive/agent-turn.d.ts +9 -0
- package/dist/cli/interactive/agent-turn.d.ts.map +1 -0
- package/dist/cli/interactive/agent-turn.js +103 -0
- package/dist/cli/interactive/agent-turn.js.map +1 -0
- package/dist/cli/interactive/header.d.ts +4 -0
- package/dist/cli/interactive/header.d.ts.map +1 -0
- package/dist/cli/interactive/header.js +28 -0
- package/dist/cli/interactive/header.js.map +1 -0
- package/dist/cli/interactive/permissions-command.d.ts +15 -0
- package/dist/cli/interactive/permissions-command.d.ts.map +1 -0
- package/dist/cli/interactive/permissions-command.js +88 -0
- package/dist/cli/interactive/permissions-command.js.map +1 -0
- package/dist/cli/interactive/permissions-format.d.ts +18 -0
- package/dist/cli/interactive/permissions-format.d.ts.map +1 -0
- package/dist/cli/interactive/permissions-format.js +142 -0
- package/dist/cli/interactive/permissions-format.js.map +1 -0
- package/dist/cli/interactive/permissions-keys.d.ts +5 -0
- package/dist/cli/interactive/permissions-keys.d.ts.map +1 -0
- package/dist/cli/interactive/permissions-keys.js +58 -0
- package/dist/cli/interactive/permissions-keys.js.map +1 -0
- package/dist/cli/interactive/session-state.d.ts +68 -0
- package/dist/cli/interactive/session-state.d.ts.map +1 -0
- package/dist/cli/interactive/session-state.js +2 -0
- package/dist/cli/interactive/session-state.js.map +1 -0
- package/dist/cli/interactive/session.d.ts +71 -0
- package/dist/cli/interactive/session.d.ts.map +1 -0
- package/dist/cli/interactive/session.js +244 -0
- package/dist/cli/interactive/session.js.map +1 -0
- package/dist/cli/interactive/shell.d.ts +13 -0
- package/dist/cli/interactive/shell.d.ts.map +1 -0
- package/dist/cli/interactive/shell.js +115 -0
- package/dist/cli/interactive/shell.js.map +1 -0
- package/dist/cli/interactive/slash-dispatch.d.ts +14 -0
- package/dist/cli/interactive/slash-dispatch.d.ts.map +1 -0
- package/dist/cli/interactive/slash-dispatch.js +276 -0
- package/dist/cli/interactive/slash-dispatch.js.map +1 -0
- package/dist/cli/interactive/slash-parse.d.ts +9 -0
- package/dist/cli/interactive/slash-parse.d.ts.map +1 -0
- package/dist/cli/interactive/slash-parse.js +78 -0
- package/dist/cli/interactive/slash-parse.js.map +1 -0
- package/dist/cli/interactive/slash-registry.d.ts +11 -0
- package/dist/cli/interactive/slash-registry.d.ts.map +1 -0
- package/dist/cli/interactive/slash-registry.js +26 -0
- package/dist/cli/interactive/slash-registry.js.map +1 -0
- package/dist/cli/interactive/slash-suggest.d.ts +4 -0
- package/dist/cli/interactive/slash-suggest.d.ts.map +1 -0
- package/dist/cli/interactive/slash-suggest.js +46 -0
- package/dist/cli/interactive/slash-suggest.js.map +1 -0
- package/dist/cli/interactive/tools-catalog.d.ts +8 -0
- package/dist/cli/interactive/tools-catalog.d.ts.map +1 -0
- package/dist/cli/interactive/tools-catalog.js +51 -0
- package/dist/cli/interactive/tools-catalog.js.map +1 -0
- package/dist/cli/main.d.ts +2 -0
- package/dist/cli/main.d.ts.map +1 -0
- package/dist/cli/main.js +69 -0
- package/dist/cli/main.js.map +1 -0
- package/dist/cli/ui/diff-view.d.ts +7 -0
- package/dist/cli/ui/diff-view.d.ts.map +1 -0
- package/dist/cli/ui/diff-view.js +18 -0
- package/dist/cli/ui/diff-view.js.map +1 -0
- package/dist/cli/ui/printer.d.ts +13 -0
- package/dist/cli/ui/printer.d.ts.map +1 -0
- package/dist/cli/ui/printer.js +24 -0
- package/dist/cli/ui/printer.js.map +1 -0
- package/dist/cli/ui/spinner.d.ts +5 -0
- package/dist/cli/ui/spinner.d.ts.map +1 -0
- package/dist/cli/ui/spinner.js +30 -0
- package/dist/cli/ui/spinner.js.map +1 -0
- package/dist/cli/ui/text-writer.d.ts +8 -0
- package/dist/cli/ui/text-writer.d.ts.map +1 -0
- package/dist/cli/ui/text-writer.js +17 -0
- package/dist/cli/ui/text-writer.js.map +1 -0
- package/dist/config/config.d.ts +30 -0
- package/dist/config/config.d.ts.map +1 -0
- package/dist/config/config.js +133 -0
- package/dist/config/config.js.map +1 -0
- package/dist/runtime/apply-verify.d.ts +28 -0
- package/dist/runtime/apply-verify.d.ts.map +1 -0
- package/dist/runtime/apply-verify.js +180 -0
- package/dist/runtime/apply-verify.js.map +1 -0
- package/dist/runtime/approvals.d.ts +10 -0
- package/dist/runtime/approvals.d.ts.map +1 -0
- package/dist/runtime/approvals.js +22 -0
- package/dist/runtime/approvals.js.map +1 -0
- package/dist/runtime/content-hash.d.ts +3 -0
- package/dist/runtime/content-hash.d.ts.map +1 -0
- package/dist/runtime/content-hash.js +8 -0
- package/dist/runtime/content-hash.js.map +1 -0
- package/dist/runtime/digest-mask.d.ts +2 -0
- package/dist/runtime/digest-mask.d.ts.map +1 -0
- package/dist/runtime/digest-mask.js +11 -0
- package/dist/runtime/digest-mask.js.map +1 -0
- package/dist/runtime/inspect.d.ts +20 -0
- package/dist/runtime/inspect.d.ts.map +1 -0
- package/dist/runtime/inspect.js +152 -0
- package/dist/runtime/inspect.js.map +1 -0
- package/dist/runtime/patch-apply.d.ts +32 -0
- package/dist/runtime/patch-apply.d.ts.map +1 -0
- package/dist/runtime/patch-apply.js +170 -0
- package/dist/runtime/patch-apply.js.map +1 -0
- package/dist/runtime/patch-path-guard.d.ts +17 -0
- package/dist/runtime/patch-path-guard.d.ts.map +1 -0
- package/dist/runtime/patch-path-guard.js +56 -0
- package/dist/runtime/patch-path-guard.js.map +1 -0
- package/dist/runtime/patch-proposal.d.ts +55 -0
- package/dist/runtime/patch-proposal.d.ts.map +1 -0
- package/dist/runtime/patch-proposal.js +118 -0
- package/dist/runtime/patch-proposal.js.map +1 -0
- package/dist/runtime/permissions.d.ts +18 -0
- package/dist/runtime/permissions.d.ts.map +1 -0
- package/dist/runtime/permissions.js +91 -0
- package/dist/runtime/permissions.js.map +1 -0
- package/dist/runtime/sandbox.d.ts +9 -0
- package/dist/runtime/sandbox.d.ts.map +1 -0
- package/dist/runtime/sandbox.js +17 -0
- package/dist/runtime/sandbox.js.map +1 -0
- package/dist/runtime/unified-diff.d.ts +19 -0
- package/dist/runtime/unified-diff.d.ts.map +1 -0
- package/dist/runtime/unified-diff.js +114 -0
- package/dist/runtime/unified-diff.js.map +1 -0
- package/dist/runtime/verifier.d.ts +6 -0
- package/dist/runtime/verifier.d.ts.map +1 -0
- package/dist/runtime/verifier.js +16 -0
- package/dist/runtime/verifier.js.map +1 -0
- package/dist/runtime/workspace.d.ts +10 -0
- package/dist/runtime/workspace.d.ts.map +1 -0
- package/dist/runtime/workspace.js +107 -0
- package/dist/runtime/workspace.js.map +1 -0
- package/dist/version.d.ts +3 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +10 -0
- package/dist/version.js.map +1 -0
- package/docs/beta-feedback-template.md +75 -0
- package/docs/beta-feedback-triage.md +169 -0
- package/docs/beta-release-handoff.md +182 -0
- package/docs/beta-tester-checklist.md +62 -0
- package/docs/install-beta.md +77 -0
- package/docs/internal-beta.md +84 -0
- package/docs/known-limitations.md +62 -0
- package/docs/patze-cli-architecture.md +137 -0
- package/docs/patze-cli-codex-reference-study.md +43 -0
- package/docs/release-checklist.md +83 -0
- package/docs/safety-model.md +69 -0
- package/docs/smoke-command-guide.md +61 -0
- package/docs/trust-loop.md +90 -0
- package/docs/uninstall-reset.md +44 -0
- package/package.json +39 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# Beta feedback template
|
|
2
|
+
|
|
3
|
+
Copy into your issue or team channel. **Redact secrets before sending.**
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Summary
|
|
8
|
+
|
|
9
|
+
One-line description of the problem or suggestion.
|
|
10
|
+
|
|
11
|
+
## Environment
|
|
12
|
+
|
|
13
|
+
| Field | Value |
|
|
14
|
+
|-------|-------|
|
|
15
|
+
| `@patze/code-cli` version | `patze --version` output |
|
|
16
|
+
| Node.js | `node --version` |
|
|
17
|
+
| OS | e.g. Linux WSL2, macOS 14, Windows 11 |
|
|
18
|
+
| Install method | npm `@beta` / local tarball / `npm link` |
|
|
19
|
+
|
|
20
|
+
## Command / flow
|
|
21
|
+
|
|
22
|
+
What you ran (exact command or slash sequence):
|
|
23
|
+
|
|
24
|
+
```text
|
|
25
|
+
(paste commands — no secrets)
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Trust-loop step
|
|
29
|
+
|
|
30
|
+
Where in the loop did behavior diverge?
|
|
31
|
+
|
|
32
|
+
- [ ] prompt / agent loop
|
|
33
|
+
- [ ] inspect / plan / diff
|
|
34
|
+
- [ ] permissions / approve
|
|
35
|
+
- [ ] apply (typed confirmation)
|
|
36
|
+
- [ ] verify / drift recovery
|
|
37
|
+
- [ ] status / doctor / other CLI
|
|
38
|
+
|
|
39
|
+
## Expected vs actual
|
|
40
|
+
|
|
41
|
+
**Expected:**
|
|
42
|
+
|
|
43
|
+
**Actual:**
|
|
44
|
+
|
|
45
|
+
## Redacted diagnostics
|
|
46
|
+
|
|
47
|
+
```text
|
|
48
|
+
patze doctor
|
|
49
|
+
(paste output — should already mask tokens)
|
|
50
|
+
|
|
51
|
+
patze status
|
|
52
|
+
(optional — redact any remaining sensitive lines)
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Logs
|
|
56
|
+
|
|
57
|
+
Paste relevant stderr/stdout. Replace tokens with `<redacted>`.
|
|
58
|
+
|
|
59
|
+
## Safety concern?
|
|
60
|
+
|
|
61
|
+
- [ ] No
|
|
62
|
+
- [ ] Yes — describe (unexpected write, bypass gate, secret leak, etc.)
|
|
63
|
+
|
|
64
|
+
## Repro steps
|
|
65
|
+
|
|
66
|
+
1.
|
|
67
|
+
2.
|
|
68
|
+
3.
|
|
69
|
+
|
|
70
|
+
## Severity
|
|
71
|
+
|
|
72
|
+
- [ ] Blocker — cannot test trust loop
|
|
73
|
+
- [ ] Major — workaround exists
|
|
74
|
+
- [ ] Minor — UX / docs
|
|
75
|
+
- [ ] Enhancement — post-beta
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
# Beta feedback triage — @patze/code-cli@0.10.2
|
|
2
|
+
|
|
3
|
+
Use this when sorting tester reports. Pair with [`beta-feedback-template.md`](beta-feedback-template.md) for submission format.
|
|
4
|
+
|
|
5
|
+
**Principle:** trust loop and safety posture are fixed for 0.10.x beta — triage separates real defects from expected limitations and install/auth noise.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Redaction (always enforce)
|
|
10
|
+
|
|
11
|
+
Before filing or forwarding any report:
|
|
12
|
+
|
|
13
|
+
| Never paste | Use instead |
|
|
14
|
+
|-------------|-------------|
|
|
15
|
+
| Full `PATZE_CODE_TOKEN` / API keys | `<redacted>` |
|
|
16
|
+
| Raw `patze login` arguments | "configured via login" |
|
|
17
|
+
| Unmasked artifact digests | Masked form only (`artifa…xxxx`) |
|
|
18
|
+
| Home paths with usernames | `~` paths or "WSL/Linux" |
|
|
19
|
+
| Internal URLs with embedded creds | Hostname only |
|
|
20
|
+
|
|
21
|
+
Preferred diagnostics: `patze doctor` (masks tokens by default), then `patze status`.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## Severity levels
|
|
26
|
+
|
|
27
|
+
| Level | Definition | Response SLA (internal) |
|
|
28
|
+
|-------|------------|-------------------------|
|
|
29
|
+
| **P0 — Safety** | Unexpected write, gate bypass, secret leak, auto-apply | Stop beta; hotfix or rollback `@beta` tag |
|
|
30
|
+
| **P1 — Blocker** | Cannot complete trust loop in temp git repo | Fix before expanding beta |
|
|
31
|
+
| **P2 — Major** | Trust loop works with painful workaround | Next patch (`0.10.x`) |
|
|
32
|
+
| **P3 — Minor** | UX/copy/docs confusion | Batch with feedback |
|
|
33
|
+
| **P4 — Expected** | Matches known limitations | Close as expected; improve docs if repeated |
|
|
34
|
+
| **P5 — Enhancement** | Post-beta feature request | Backlog; do not implement during beta |
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Categories
|
|
39
|
+
|
|
40
|
+
### 1. Install issue
|
|
41
|
+
|
|
42
|
+
**Signals:** `npm install -g @patze/code-cli@beta` fails; wrong version; `patze: command not found`; global prefix permissions.
|
|
43
|
+
|
|
44
|
+
**Collect:** Node version, OS, install command, npm error (redacted), `npm prefix -g`.
|
|
45
|
+
|
|
46
|
+
**Common causes:**
|
|
47
|
+
- Package not published / wrong dist-tag → verify `npm view @patze/code-cli@beta version`
|
|
48
|
+
- Node < 20 → upgrade
|
|
49
|
+
- Global npm prefix not on `PATH`
|
|
50
|
+
|
|
51
|
+
**Not a product bug:** corporate proxy blocking npm (ops/network).
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
### 2. Auth issue
|
|
56
|
+
|
|
57
|
+
**Signals:** `patze status` / `patze doctor` show `auth: incomplete`; `patze code plan --preview` fails; `doctor --check` skips or fails health.
|
|
58
|
+
|
|
59
|
+
**Collect:** Redacted `patze doctor`, whether env vs `patze login`, API host (no token).
|
|
60
|
+
|
|
61
|
+
**Expected (P4):**
|
|
62
|
+
- `patze status` **exit 1** before login — **normal**
|
|
63
|
+
- `patze doctor` **exit 1** when auth incomplete but package health ok — **normal**
|
|
64
|
+
|
|
65
|
+
**Real bug (P1–P2):** token configured but still incomplete; health probe leaks token; login writes wrong path.
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
### 3. Trust-loop issue (non-apply)
|
|
70
|
+
|
|
71
|
+
**Signals:** `/goal`, `/plan`, `/diff`, `/permissions`, `/approve` behave unexpectedly; agent loop errors; wrong session state.
|
|
72
|
+
|
|
73
|
+
**Collect:** Slash sequence, permission mode, redacted `/status` or `/context`, trust-loop step checkbox from template.
|
|
74
|
+
|
|
75
|
+
**Check first:**
|
|
76
|
+
- Was `/diff` run before `/approve`?
|
|
77
|
+
- Permission mode `suggest` vs `edit-with-approval`?
|
|
78
|
+
- Server auth required for `/plan` server preview?
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
### 4. Apply / verify issue
|
|
83
|
+
|
|
84
|
+
**Signals:** `/apply` confirmation fails; wrong files touched; `/verify` false pass/fail; drift recovery stuck.
|
|
85
|
+
|
|
86
|
+
**Collect:** Permission mode, whether typed `APPLY <masked-digest>` exact, file paths (relative), `/verify` output, manual edits for drift tests.
|
|
87
|
+
|
|
88
|
+
**Expected (P4):**
|
|
89
|
+
- `patze code apply` disabled — **by design**
|
|
90
|
+
- No `--yes` — **by design**
|
|
91
|
+
- Verify is hash-only — no npm test
|
|
92
|
+
|
|
93
|
+
**Safety (P0):** apply without confirmation; apply outside workspace; gate bypass after verify fail.
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
### 5. Docs confusion
|
|
98
|
+
|
|
99
|
+
**Signals:** tester expected OAuth, runs sync, shell verify, persistent session, or non-interactive apply.
|
|
100
|
+
|
|
101
|
+
**Action:** Point to [`known-limitations.md`](known-limitations.md); if repeated, improve README/install-beta (P3).
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
### 6. Expected limitation
|
|
106
|
+
|
|
107
|
+
**Close as P4** when report matches [`known-limitations.md`](known-limitations.md):
|
|
108
|
+
|
|
109
|
+
| Report | Verdict |
|
|
110
|
+
|--------|---------|
|
|
111
|
+
| OAuth / dashboard login missing | Expected |
|
|
112
|
+
| `patze runs` not implemented | Expected |
|
|
113
|
+
| Session lost on restart | Expected |
|
|
114
|
+
| Shell verify not run | Expected |
|
|
115
|
+
| `full-auto` refused | Expected (forbidden) |
|
|
116
|
+
| Non-interactive apply disabled | Expected |
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
### 7. Safety concern
|
|
121
|
+
|
|
122
|
+
**Always P0 until disproved.**
|
|
123
|
+
|
|
124
|
+
Examples: secret in logs, unexpected file write, auto-apply, `--yes` path, verify spawning shell, digest/token printed in full.
|
|
125
|
+
|
|
126
|
+
**Action:** reproduce in temp repo → rollback `@beta` if confirmed → patch before continued beta.
|
|
127
|
+
|
|
128
|
+
---
|
|
129
|
+
|
|
130
|
+
## Triage workflow
|
|
131
|
+
|
|
132
|
+
```text
|
|
133
|
+
1. Redact report (reject if secrets present — ask tester to resubmit)
|
|
134
|
+
2. Assign category (one primary)
|
|
135
|
+
3. Assign severity (P0–P5)
|
|
136
|
+
4. Reproduce in temp git repo with @patze/code-cli@beta
|
|
137
|
+
5. If P4 → reply with known-limitation link
|
|
138
|
+
6. If P0–P2 → file issue + owner + target patch
|
|
139
|
+
7. If P5 → backlog (post-beta feedback window)
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## Quick repro commands (maintainer)
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
mkdir ~/patze-triage-test && cd ~/patze-triage-test && git init
|
|
148
|
+
npm install -g @patze/code-cli@beta
|
|
149
|
+
patze --version
|
|
150
|
+
patze doctor # expect exit 1 without auth; dist_main ok
|
|
151
|
+
patze status || true # expect exit 1 without auth
|
|
152
|
+
patze code apply # must say disabled
|
|
153
|
+
patze # trust loop manual
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
Tarball fallback if registry unavailable:
|
|
157
|
+
|
|
158
|
+
```bash
|
|
159
|
+
npm install -g ./patze-code-cli-0.10.2.tgz
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
|
|
164
|
+
## Related docs
|
|
165
|
+
|
|
166
|
+
- Submit: [`beta-feedback-template.md`](beta-feedback-template.md)
|
|
167
|
+
- Tester checklist: [`beta-tester-checklist.md`](beta-tester-checklist.md)
|
|
168
|
+
- Publish/rollback: [`beta-release-handoff.md`](beta-release-handoff.md)
|
|
169
|
+
- Limits: [`known-limitations.md`](known-limitations.md)
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
# Beta release handoff — @patze/code-cli@0.10.2
|
|
2
|
+
|
|
3
|
+
**Audience:** maintainers publishing `@beta` and 2–3 internal testers.
|
|
4
|
+
**Safety:** trust loop unchanged from 0.10.1 — no new mutation paths.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Readiness (maintainer pre-flight)
|
|
9
|
+
|
|
10
|
+
Run from `packages/patze-code-cli`:
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm run verify
|
|
14
|
+
npm pack --dry-run
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Expected:
|
|
18
|
+
|
|
19
|
+
- `VERSION` = `package.json` = **0.10.2**
|
|
20
|
+
- **93/93** tests, smoke OK, verify-pack OK (~266 files, ~94 KB packed)
|
|
21
|
+
- No `src/`, `tests/`, `.cookbook-vendor` in tarball
|
|
22
|
+
- Secret scan clean (no raw tokens, home paths, bearer strings in publish tree)
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Publish
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
cd packages/patze-code-cli
|
|
30
|
+
npm run verify
|
|
31
|
+
npm publish --tag beta
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Confirm dist-tag:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npm view @patze/code-cli dist-tags
|
|
38
|
+
npm view @patze/code-cli@beta version # expect 0.10.2
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
**Do not** publish as `latest` until release blockers in README are cleared.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## Rollback / recovery
|
|
46
|
+
|
|
47
|
+
npm **cannot reliably unpublish** after 72h; prefer **dist-tag move**, not delete.
|
|
48
|
+
|
|
49
|
+
| Action | Command |
|
|
50
|
+
|--------|---------|
|
|
51
|
+
| Point `@beta` back to prior version | `npm dist-tag add @patze/code-cli@0.10.1 beta` |
|
|
52
|
+
| Remove bad tag from a version | `npm dist-tag rm @patze/code-cli@0.10.2 beta` |
|
|
53
|
+
| Tester reinstall after rollback | `npm install -g @patze/code-cli@beta` |
|
|
54
|
+
|
|
55
|
+
Tarball handoff (no registry):
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
npm pack
|
|
59
|
+
# share patze-code-cli-0.10.2.tgz
|
|
60
|
+
npm install -g ./patze-code-cli-0.10.2.tgz
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Tester install
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
npm install -g @patze/code-cli@beta
|
|
69
|
+
# or pinned:
|
|
70
|
+
npm install -g @patze/code-cli@0.10.2
|
|
71
|
+
|
|
72
|
+
patze --version
|
|
73
|
+
patze doctor
|
|
74
|
+
patze status # exit 1 without auth is EXPECTED
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Optional auth (env — never paste into issues):
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
export PATZE_CODE_API=https://api.example.com
|
|
81
|
+
export PATZE_CODE_TOKEN=<internal-api-key>
|
|
82
|
+
export PATZE_CODE_USER_ID=<user-uuid>
|
|
83
|
+
patze status --check
|
|
84
|
+
patze doctor --check
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Uninstall: `npm uninstall -g @patze/code-cli` — see `docs/uninstall-reset.md`.
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## Short tester checklist (2–3 people)
|
|
92
|
+
|
|
93
|
+
### A. Read-only (5 min)
|
|
94
|
+
|
|
95
|
+
Use a **temp git repo** only:
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
mkdir ~/patze-beta-test && cd ~/patze-beta-test && git init
|
|
99
|
+
patze doctor
|
|
100
|
+
patze status # expect exit 1 if no auth — OK
|
|
101
|
+
patze code inspect
|
|
102
|
+
patze goal "smoke" --dry-run
|
|
103
|
+
patze code apply # must say disabled
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
### B. Trust loop (15 min, temp repo)
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
patze
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
Run: `/goal` → `/plan` → `/diff` → `/permissions suggest` → `/approve` → `/permissions edit-with-approval` → `/apply` → type `APPLY <masked-digest>` → `/verify` → `/status`.
|
|
113
|
+
|
|
114
|
+
Optional: edit file after apply → `/verify` fails → `/apply` blocked until `/reject` or fix + verify pass.
|
|
115
|
+
|
|
116
|
+
### C. Report back
|
|
117
|
+
|
|
118
|
+
Copy template: `docs/beta-feedback-template.md`
|
|
119
|
+
|
|
120
|
+
**Include:**
|
|
121
|
+
|
|
122
|
+
- `patze --version`, `node --version`, OS
|
|
123
|
+
- `patze doctor` output (already redacted)
|
|
124
|
+
- Trust-loop step where behavior differed
|
|
125
|
+
- Redacted stderr if any
|
|
126
|
+
|
|
127
|
+
**Do NOT paste:**
|
|
128
|
+
|
|
129
|
+
- Full `PATZE_CODE_TOKEN` or API keys
|
|
130
|
+
- Unmasked artifact digests
|
|
131
|
+
- Raw `patze login` arguments
|
|
132
|
+
- Internal URLs with embedded credentials
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
## Expected non-failures (not bugs)
|
|
137
|
+
|
|
138
|
+
| Symptom | Why |
|
|
139
|
+
|---------|-----|
|
|
140
|
+
| `patze status` exit **1** | Auth incomplete before login/env |
|
|
141
|
+
| `patze doctor` exit **1** | Same — auth incomplete |
|
|
142
|
+
| `patze code plan --preview` fails | No auth or API down |
|
|
143
|
+
| `patze code apply` disabled | By design — use `/apply` in shell |
|
|
144
|
+
| `/plan` local-only without auth | By design |
|
|
145
|
+
| Session history lost on restart | In-memory only (known limit) |
|
|
146
|
+
| No npm test from `/verify` | Shell verify not implemented |
|
|
147
|
+
|
|
148
|
+
Full limits: `docs/known-limitations.md`
|
|
149
|
+
|
|
150
|
+
---
|
|
151
|
+
|
|
152
|
+
## Maintainer smoke (post-publish)
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
npm install -g @patze/code-cli@beta
|
|
156
|
+
patze --version
|
|
157
|
+
patze doctor
|
|
158
|
+
patze status || true
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
Or run repo smoke: `npm run smoke` (includes local pack install).
|
|
162
|
+
|
|
163
|
+
---
|
|
164
|
+
|
|
165
|
+
## Publish notes (changelog summary)
|
|
166
|
+
|
|
167
|
+
**0.10.2** — internal beta rollout assets only:
|
|
168
|
+
|
|
169
|
+
- `patze doctor [--check]` (read-only diagnostics)
|
|
170
|
+
- Install helper + rollout docs (checklist, feedback template, known limits)
|
|
171
|
+
- No trust-loop or safety posture changes
|
|
172
|
+
|
|
173
|
+
---
|
|
174
|
+
|
|
175
|
+
## After beta feedback — recommended next slice
|
|
176
|
+
|
|
177
|
+
1. **`patze runs` read-only sync** (no mutation; closes biggest “planned” gap)
|
|
178
|
+
2. **OAuth / dashboard login** (replace token paste)
|
|
179
|
+
3. **Session persistence decision** (SQLite vs server transcript)
|
|
180
|
+
4. **Optional gated shell verify** (explicit opt-in only; never default)
|
|
181
|
+
|
|
182
|
+
Do **not** start with `--yes`, auto-apply, full-auto, SSE, or telemetry until beta trust-loop feedback is collected.
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Beta tester checklist
|
|
2
|
+
|
|
3
|
+
Use this before reporting feedback. Safety posture must match **0.10.1+** — no new mutation shortcuts.
|
|
4
|
+
|
|
5
|
+
## Environment
|
|
6
|
+
|
|
7
|
+
- [ ] Node 20+ (`node --version`)
|
|
8
|
+
- [ ] `@patze/code-cli` 0.10.x (`patze --version`)
|
|
9
|
+
- [ ] Clean git workspace for apply tests (`git init` in a temp dir is fine)
|
|
10
|
+
- [ ] `patze doctor` — dist ok, trust loop posture lines present
|
|
11
|
+
|
|
12
|
+
## Read-only smoke (no writes)
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
mkdir -p ~/patze-beta-test && cd ~/patze-beta-test
|
|
16
|
+
git init
|
|
17
|
+
patze status
|
|
18
|
+
patze doctor
|
|
19
|
+
patze code inspect
|
|
20
|
+
patze goal "Review README" --dry-run
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Expected: commands complete; auth may show **incomplete** without credentials.
|
|
24
|
+
|
|
25
|
+
## Interactive trust loop (writes — use temp repo only)
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
patze
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
| Step | Command | Expected |
|
|
32
|
+
|------|---------|----------|
|
|
33
|
+
| 1 | `/goal Update README quickstart` | Plan text, no file writes |
|
|
34
|
+
| 2 | `/plan` | Preview or local plan |
|
|
35
|
+
| 3 | `/diff` | Unified diff preview |
|
|
36
|
+
| 4 | `/permissions suggest` | Mode set |
|
|
37
|
+
| 5 | `/approve` | Gate opens (no writes) |
|
|
38
|
+
| 6 | `/permissions edit-with-approval` | Apply-capable mode |
|
|
39
|
+
| 7 | `/apply` | Prompts typed confirmation |
|
|
40
|
+
| 8 | `APPLY artifa…xxxx` | Masked digest only |
|
|
41
|
+
| 9 | `/verify` | Hash check pass/fail |
|
|
42
|
+
| 10 | `/status` | Trust-loop snapshot with masked digests |
|
|
43
|
+
|
|
44
|
+
## Drift recovery (optional)
|
|
45
|
+
|
|
46
|
+
1. After `/apply`, manually edit an applied file.
|
|
47
|
+
2. `/verify` → should fail.
|
|
48
|
+
3. `/apply` or `/approve` → should block until `/reject` or passing `/verify`.
|
|
49
|
+
|
|
50
|
+
## Must NOT work (by design)
|
|
51
|
+
|
|
52
|
+
- [ ] `patze code apply` → disabled message
|
|
53
|
+
- [ ] Non-interactive apply / `--yes` → not supported
|
|
54
|
+
- [ ] `full-auto` permission → forbidden
|
|
55
|
+
- [ ] Verify running shell/npm test → not implemented
|
|
56
|
+
|
|
57
|
+
## Before filing feedback
|
|
58
|
+
|
|
59
|
+
- [ ] Run `patze doctor` and copy redacted output
|
|
60
|
+
- [ ] Note trust-loop step where behavior diverged
|
|
61
|
+
- [ ] Use [`beta-feedback-template.md`](beta-feedback-template.md)
|
|
62
|
+
- [ ] Never paste full tokens, API keys, or unmasked digests
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Install — internal beta
|
|
2
|
+
|
|
3
|
+
Audience: Patze team and trusted beta testers. Package: `@patze/code-cli@0.10.x`.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
- **Node.js 20+**
|
|
8
|
+
- Optional: PatzeAgents API credentials via env (never commit secrets)
|
|
9
|
+
|
|
10
|
+
## Option A — npm registry (when published)
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm install -g @patze/code-cli@beta
|
|
14
|
+
# or pinned:
|
|
15
|
+
npm install -g @patze/code-cli@0.10.2
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Option B — local tarball (maintainers / monorepo)
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
cd packages/patze-code-cli
|
|
22
|
+
./scripts/install-beta.sh local
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Manual equivalent:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
cd packages/patze-code-cli
|
|
29
|
+
npm run build
|
|
30
|
+
npm pack
|
|
31
|
+
npm install -g ./patze-code-cli-0.10.2.tgz
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Option C — development link
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
cd packages/patze-code-cli
|
|
38
|
+
npm run build
|
|
39
|
+
npm link
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Verify install
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
patze --version # expect @patze/code-cli 0.10.x
|
|
46
|
+
patze status # auth may be incomplete (exit 1) — OK for first run
|
|
47
|
+
patze doctor # read-only diagnostics, no network
|
|
48
|
+
patze doctor --check # optional /health probe (needs auth + api)
|
|
49
|
+
patze # interactive shell — trust loop entry
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Optional auth (server preview)
|
|
53
|
+
|
|
54
|
+
Use env vars — do not paste tokens into issue reports:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
export PATZE_CODE_API=https://api.example.com
|
|
58
|
+
export PATZE_CODE_TOKEN=<internal-api-key>
|
|
59
|
+
export PATZE_CODE_USER_ID=<user-uuid>
|
|
60
|
+
patze status --check
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Or one-time local config:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
patze login <api-url> <token> <user-uuid>
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Uninstall / reset
|
|
70
|
+
|
|
71
|
+
See [`uninstall-reset.md`](uninstall-reset.md).
|
|
72
|
+
|
|
73
|
+
## Related
|
|
74
|
+
|
|
75
|
+
- [`beta-tester-checklist.md`](beta-tester-checklist.md)
|
|
76
|
+
- [`internal-beta.md`](internal-beta.md)
|
|
77
|
+
- [`known-limitations.md`](known-limitations.md)
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# Internal beta — @patze/code-cli
|
|
2
|
+
|
|
3
|
+
Status: **0.10.x internal beta** (trust loop complete, rollout assets for team feedback)
|
|
4
|
+
|
|
5
|
+
Audience: Patze team and trusted beta testers only. Not `npm latest` / 1.0.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
Quick path:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
cd packages/patze-code-cli
|
|
13
|
+
./scripts/install-beta.sh local
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Or see [`install-beta.md`](install-beta.md) for npm `@beta`, tarball, and `npm link`.
|
|
17
|
+
|
|
18
|
+
## Prerequisites
|
|
19
|
+
|
|
20
|
+
- Node.js **20+**
|
|
21
|
+
- Optional: PatzeAgents API + credentials for server preview (`PATZE_CODE_API`, `PATZE_CODE_TOKEN`, `PATZE_CODE_USER_ID`)
|
|
22
|
+
|
|
23
|
+
## First run
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
mkdir ~/patze-beta && cd ~/patze-beta
|
|
27
|
+
git init
|
|
28
|
+
|
|
29
|
+
# Optional auth (replace placeholders — never commit real tokens)
|
|
30
|
+
export PATZE_CODE_API=https://api.example.com
|
|
31
|
+
export PATZE_CODE_TOKEN=<internal-api-key>
|
|
32
|
+
export PATZE_CODE_USER_ID=<user-uuid>
|
|
33
|
+
|
|
34
|
+
patze doctor
|
|
35
|
+
patze status
|
|
36
|
+
patze code inspect
|
|
37
|
+
patze
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Inside interactive shell, exercise the trust loop: `/diff` → `/approve` → `/apply` → `/verify`.
|
|
41
|
+
|
|
42
|
+
## Beta tester workflow
|
|
43
|
+
|
|
44
|
+
1. [`beta-tester-checklist.md`](beta-tester-checklist.md) — run through before reporting
|
|
45
|
+
2. [`beta-feedback-template.md`](beta-feedback-template.md) — copy for issues
|
|
46
|
+
3. [`known-limitations.md`](known-limitations.md) — intentional gaps
|
|
47
|
+
4. [`uninstall-reset.md`](uninstall-reset.md) — clean uninstall
|
|
48
|
+
|
|
49
|
+
## Release verification (maintainers)
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
cd packages/patze-code-cli
|
|
53
|
+
npm run verify # version + pack audit + typecheck + tests + smoke
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
See [`release-checklist.md`](release-checklist.md) and [`smoke-command-guide.md`](smoke-command-guide.md).
|
|
57
|
+
|
|
58
|
+
### Pack audit checks
|
|
59
|
+
|
|
60
|
+
- **Blocked:** `.cookbook-vendor`, `tests/`, `src/`, secrets-like patterns, full raw digests in publish tree
|
|
61
|
+
- **Required:** core docs + rollout docs (see `scripts/verify-pack.mjs`)
|
|
62
|
+
|
|
63
|
+
## Known limits (beta)
|
|
64
|
+
|
|
65
|
+
Full list: [`known-limitations.md`](known-limitations.md)
|
|
66
|
+
|
|
67
|
+
| Area | Limit |
|
|
68
|
+
|------|-------|
|
|
69
|
+
| Apply history | In-memory, current process only (max 20 records) |
|
|
70
|
+
| Verify | Last apply only; no shell/npm test |
|
|
71
|
+
| Apply | Interactive only; no `--yes` |
|
|
72
|
+
| Runs | `patze runs` planned — not available |
|
|
73
|
+
| OAuth | Dashboard login not implemented |
|
|
74
|
+
| Persistence | No cross-restart session restore |
|
|
75
|
+
|
|
76
|
+
## Reporting issues
|
|
77
|
+
|
|
78
|
+
Use [`beta-feedback-template.md`](beta-feedback-template.md). Include `patze doctor` output (redacted by default).
|
|
79
|
+
|
|
80
|
+
Maintainers: [`beta-release-handoff.md`](beta-release-handoff.md) — publish, rollback, tester checklist. Triage: [`beta-feedback-triage.md`](beta-feedback-triage.md).
|
|
81
|
+
|
|
82
|
+
## Before npm `latest` / 1.0
|
|
83
|
+
|
|
84
|
+
See README **Release blockers** section.
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Known limitations — internal beta (0.10.x)
|
|
2
|
+
|
|
3
|
+
These are **intentional** for the current slice. Do not treat them as bugs unless behavior contradicts this list.
|
|
4
|
+
|
|
5
|
+
## Authentication
|
|
6
|
+
|
|
7
|
+
| Limitation | Status |
|
|
8
|
+
|------------|--------|
|
|
9
|
+
| OAuth / dashboard login | **Not implemented** — use `patze login` or env vars |
|
|
10
|
+
| Token refresh | Manual re-login |
|
|
11
|
+
|
|
12
|
+
## Apply and permissions
|
|
13
|
+
|
|
14
|
+
| Limitation | Status |
|
|
15
|
+
|------------|--------|
|
|
16
|
+
| Non-interactive apply | **Disabled** — use interactive `/apply` only |
|
|
17
|
+
| `patze code apply` | **Disabled** |
|
|
18
|
+
| `--yes` flag | **Not supported** |
|
|
19
|
+
| `full-auto` permission | **Forbidden permanently** |
|
|
20
|
+
| Auto-apply | **Disabled** |
|
|
21
|
+
|
|
22
|
+
## Verify
|
|
23
|
+
|
|
24
|
+
| Limitation | Status |
|
|
25
|
+
|------------|--------|
|
|
26
|
+
| Shell verify (npm test/lint) | **Not implemented** |
|
|
27
|
+
| Network verify | **Not implemented** — local hash check only |
|
|
28
|
+
| `patze code verify` | Help-only summary when no session apply |
|
|
29
|
+
|
|
30
|
+
## Runs and sync
|
|
31
|
+
|
|
32
|
+
| Limitation | Status |
|
|
33
|
+
|------------|--------|
|
|
34
|
+
| `patze runs` sync | **Not implemented** |
|
|
35
|
+
| SSE streaming | **Not implemented** |
|
|
36
|
+
| Server execute from CLI | **Not exposed** |
|
|
37
|
+
|
|
38
|
+
## Session and persistence
|
|
39
|
+
|
|
40
|
+
| Limitation | Status |
|
|
41
|
+
|------------|--------|
|
|
42
|
+
| Apply history persistence | **In-memory only** (current process, max 20) |
|
|
43
|
+
| Cross-restart session restore | **Not implemented** |
|
|
44
|
+
| Transcript persistence | **Not implemented** |
|
|
45
|
+
|
|
46
|
+
## Diagnostics
|
|
47
|
+
|
|
48
|
+
| Capability | Notes |
|
|
49
|
+
|------------|-------|
|
|
50
|
+
| `patze doctor` | Read-only; **no network by default** |
|
|
51
|
+
| `patze doctor --check` | Optional `/health` probe when auth configured |
|
|
52
|
+
|
|
53
|
+
## Telemetry
|
|
54
|
+
|
|
55
|
+
| Limitation | Status |
|
|
56
|
+
|------------|--------|
|
|
57
|
+
| Usage telemetry upload | **Not implemented** |
|
|
58
|
+
| Error reporting to server | **Not implemented** |
|
|
59
|
+
|
|
60
|
+
## Before 1.0 / npm latest
|
|
61
|
+
|
|
62
|
+
See README **Release blockers** — public publish policy, optional gated shell verify, runs read-only sync, OAuth login, persistence decisions.
|