(owner: Owner)
| 1566 | }; |
| 1567 | |
| 1568 | const requireUserSubject = (owner: Owner): Effect.Effect<void, StorageFailure> => |
| 1569 | owner === "user" && subject == null |
| 1570 | ? Effect.fail( |
| 1571 | new StorageError({ |
| 1572 | message: `Cannot target owner "user": executor has no subject.`, |
| 1573 | cause: undefined, |
| 1574 | }), |
| 1575 | ) |
| 1576 | : Effect.void; |
| 1577 | |
| 1578 | // Built-in core-tools plugin: agent-facing static tools over the v2 surface. |
| 1579 | const plugins: readonly AnyPlugin[] = config.coreTools |
no outgoing calls
no test coverage detected