Sandbox and Safety
FScript security is capability-based.
Scripts can only perform actions that your host exposes.
Practical safety model
- Do not expose risky externs by default.
- Restrict filesystem scope with root/deny policies.
- Use cancellation and timeouts for execution control.
- Treat script execution as untrusted input handling.
Recommended defaults
- Expose read-only externs first.
- Add write/network capability only when required.
- Log extern calls for observability.