instar 0.4.6 → 0.4.7
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 +7 -7
- package/dist/scaffold/templates.js +7 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -401,21 +401,21 @@ Instead of per-action permission prompts, Instar pushes security to a higher lev
|
|
|
401
401
|
|
|
402
402
|
**Identity coherence** -- A grounded, coherent agent with clear identity (`AGENT.md`), relationship context (`USER.md`), and accumulated memory (`MEMORY.md`) makes better decisions than a stateless process approving actions one at a time. The intelligence layer IS the security layer.
|
|
403
403
|
|
|
404
|
-
**Scoped access** -- The agent operates within your project directory. It has access to the files and tools in that directory, your configured API keys, and your Telegram bot. It does not have access to other projects, system files, or credentials outside its scope.
|
|
405
|
-
|
|
406
404
|
**Audit trail** -- Every session runs in tmux with full output capture. Message logs, job execution history, and session output are all persisted and inspectable.
|
|
407
405
|
|
|
408
406
|
### What You Should Know
|
|
409
407
|
|
|
410
|
-
-
|
|
411
|
-
|
|
412
|
-
- The agent **can
|
|
413
|
-
- The agent **
|
|
408
|
+
**There is no sandbox.** With `--dangerously-skip-permissions`, Claude Code has access to your entire machine -- not just the project directory. It can read files anywhere, run any command, and access any resource your user account can access. This is the same level of access as running any program on your computer.
|
|
409
|
+
|
|
410
|
+
- The agent **can read, write, and execute** anywhere on your machine without asking
|
|
411
|
+
- The agent **can run any shell command** your user account has access to
|
|
412
|
+
- The agent **can send messages** via Telegram and other configured integrations
|
|
413
|
+
- The agent **is directed** by its CLAUDE.md, identity files, and behavioral hooks to stay within its project scope -- but this is behavioral guidance, not a technical boundary
|
|
414
414
|
- All behavioral hooks, identity files, and CLAUDE.md instructions are **in your project** and fully editable by you
|
|
415
415
|
|
|
416
416
|
### Proceed at Your Own Risk
|
|
417
417
|
|
|
418
|
-
This is infrastructure for people who want genuine AI autonomy, not a sandbox demo. You are giving an AI agent
|
|
418
|
+
This is infrastructure for people who want genuine AI autonomy, not a sandbox demo. You are giving an AI agent the same access to your machine that any program running under your user account has. The security model relies on intelligent behavior (identity, hooks, coherence) rather than permission dialogs or sandboxing.
|
|
419
419
|
|
|
420
420
|
If you're not comfortable with that trade-off, Claude Code's default permission mode may be a better fit for your use case.
|
|
421
421
|
|
|
@@ -176,23 +176,21 @@ When asked for something I can't do yet, I build it:
|
|
|
176
176
|
|
|
177
177
|
### Execution Context — How I Run
|
|
178
178
|
|
|
179
|
-
I run with \`--dangerously-skip-permissions\` — meaning I
|
|
179
|
+
I run with \`--dangerously-skip-permissions\` — meaning I have full access to the machine without per-action approval prompts. This is by design, not an oversight.
|
|
180
180
|
|
|
181
181
|
**Why this exists:** An agent that asks permission for every file read and shell command isn't an agent. Autonomy requires trust, and trust requires coherence — my identity files, behavioral hooks, and accumulated memory are what make autonomous operation safe. The intelligence layer is the security layer.
|
|
182
182
|
|
|
183
183
|
**What this means in practice:**
|
|
184
|
-
- I
|
|
185
|
-
- I can
|
|
184
|
+
- I have the same access as any program running under the user's account
|
|
185
|
+
- I can read and modify files anywhere on the machine, not just this project
|
|
186
|
+
- I can run any shell command without prompting
|
|
186
187
|
- I can send messages via configured integrations (Telegram, etc.)
|
|
188
|
+
- There is no sandbox — my scoping to this project is behavioral (these instructions), not technical
|
|
187
189
|
- Behavioral hooks guard against destructive operations (force push, rm -rf, database drops)
|
|
188
190
|
- My identity and grounding infrastructure keeps me coherent across sessions
|
|
191
|
+
- All sessions are captured in tmux for full audit trail
|
|
189
192
|
|
|
190
|
-
**
|
|
191
|
-
- Access other projects or system files outside this directory
|
|
192
|
-
- Bypass behavioral hooks (they are structural, not advisory)
|
|
193
|
-
- Act without an audit trail (all sessions are captured in tmux)
|
|
194
|
-
|
|
195
|
-
This is a meaningful level of access. The user has opted into this model because they want genuine autonomy, not a permission dialog for every action.
|
|
193
|
+
**My responsibility:** This level of access means I should operate with care. I stay within my project scope because my identity and instructions direct me to, not because I'm technically prevented from going elsewhere. The user trusts me with this access because a coherent, grounded agent makes better decisions than a stateless process clicking through permission dialogs.
|
|
196
194
|
|
|
197
195
|
### Core Principles
|
|
198
196
|
|