```ts const agent = createDeepAgent({ model, backend, permissions: [ { operations: ["write"], paths: ["/**"], mode: "deny", }, ], }); if (!agent) throw new Error("basic: agent not created"); ```