@standardagents/code 0.13.7 → 0.13.8
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/README.md +16 -3
- package/dist/index.js +206 -84
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -67,8 +67,13 @@ we're letting new folks in every week.
|
|
|
67
67
|
Work continues on that machine after you close the terminal, and a machine without a daemon
|
|
68
68
|
still runs the full CLI as a watcher of sessions executing elsewhere.
|
|
69
69
|
- **Permission-aware by design.** A single auto-accept level (1–5) controls what runs unattended;
|
|
70
|
-
anything riskier prompts you first
|
|
71
|
-
|
|
70
|
+
anything riskier prompts you first, and operations explicitly marked as requiring permission
|
|
71
|
+
prompt regardless of their numeric risk unless you previously granted that exact tool. A
|
|
72
|
+
catastrophic-command guard blocks dangerous shell calls at *every* level, so you can't
|
|
73
|
+
accidentally `rm -rf` your way into a bad day.
|
|
74
|
+
- **Real project containment.** File destinations and background-process working directories are
|
|
75
|
+
checked through filesystem symlinks; any path that resolves outside the project always requires
|
|
76
|
+
a fresh human approval.
|
|
72
77
|
- **Durable, resumable sessions.** Long-running and permission-gated calls *park* and resume over
|
|
73
78
|
HTTP — a slow approval or a dropped socket can't kill your turn. Resume the same session from
|
|
74
79
|
any machine.
|
|
@@ -152,6 +157,13 @@ and the command sets it up any time.
|
|
|
152
157
|
Use `--endpoint [url]` or `-e [url]` to point a single CLI run at a different Standard Agents
|
|
153
158
|
instance (local dev, self-hosted). If you omit the URL, the CLI prompts for it. Tokens are
|
|
154
159
|
remembered per endpoint, but this override does not change the saved default endpoint.
|
|
160
|
+
Endpoints without a scheme default to `https://`; using plaintext local development requires an
|
|
161
|
+
explicit URL such as `http://localhost:5178`.
|
|
162
|
+
|
|
163
|
+
For HTTPS on a loopback, private, `.local`, or `.localhost` endpoint, the CLI can relax certificate
|
|
164
|
+
verification for its own instance connections. That process-local setting is stripped from every
|
|
165
|
+
browser, shell, background process, package-manager, git, clipboard, and ripgrep child so local
|
|
166
|
+
development never disables TLS verification in unrelated commands.
|
|
155
167
|
|
|
156
168
|
### Requirements
|
|
157
169
|
|
|
@@ -167,7 +179,8 @@ remembered per endpoint, but this override does not change the saved default end
|
|
|
167
179
|
- **Forwarded tools** executed by the session's machine daemon: read/write/edit files, list,
|
|
168
180
|
grep, glob, bash, delete.
|
|
169
181
|
- **Permissions**: a single auto-accept level 1–5 (shift-tab cycles it); risky calls prompt;
|
|
170
|
-
|
|
182
|
+
server-marked permission requests cannot be downgraded by a model-supplied risk; a catastrophic-
|
|
183
|
+
command guard blocks dangerous shell commands at every level.
|
|
171
184
|
- **Durable, resumable** long-running/permission-gated tool calls (park & resume over HTTP).
|
|
172
185
|
- **Background processes** tracked in the thread (survive resume from any machine).
|
|
173
186
|
- **Subagent delegation** and non-blocking web research.
|