(owner: Owner)
| 1604 | }; |
| 1605 | |
| 1606 | const requireUserSubject = (owner: Owner): Effect.Effect<void, StorageFailure> => |
| 1607 | owner === "user" && subject == null |
| 1608 | ? Effect.fail( |
| 1609 | new StorageError({ |
| 1610 | message: `Cannot target owner "user": executor has no subject.`, |
| 1611 | cause: undefined, |
| 1612 | }), |
| 1613 | ) |
| 1614 | : Effect.void; |
| 1615 | |
| 1616 | // Built-in core-tools plugin: agent-facing static tools over the v2 surface. |
| 1617 | const plugins: readonly AnyPlugin[] = config.coreTools |
no outgoing calls
no test coverage detected