(owner: Owner)
| 1843 | }; |
| 1844 | |
| 1845 | const requireUserSubject = (owner: Owner): Effect.Effect<void, StorageFailure> => |
| 1846 | owner === "user" && subject == null |
| 1847 | ? Effect.fail( |
| 1848 | new StorageError({ |
| 1849 | message: `Cannot target owner "user": executor has no subject.`, |
| 1850 | cause: undefined, |
| 1851 | }), |
| 1852 | ) |
| 1853 | : Effect.void; |
| 1854 | |
| 1855 | // Built-in core-tools plugin: agent-facing static tools over the v2 surface. |
| 1856 | const plugins: readonly AnyPlugin[] = config.coreTools |
no outgoing calls
no test coverage detected