(owner: Owner)
| 1718 | }; |
| 1719 | |
| 1720 | const requireUserSubject = (owner: Owner): Effect.Effect<void, StorageFailure> => |
| 1721 | owner === "user" && subject == null |
| 1722 | ? Effect.fail( |
| 1723 | new StorageError({ |
| 1724 | message: `Cannot target owner "user": executor has no subject.`, |
| 1725 | cause: undefined, |
| 1726 | }), |
| 1727 | ) |
| 1728 | : Effect.void; |
| 1729 | |
| 1730 | // Built-in core-tools plugin: agent-facing static tools over the v2 surface. |
| 1731 | const plugins: readonly AnyPlugin[] = config.coreTools |
no outgoing calls
no test coverage detected