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