MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / requireUserSubject

Function requireUserSubject

packages/core/sdk/src/executor.ts:1330–1338  ·  view source on GitHub ↗
(owner: Owner)

Source from the content-addressed store, hash-verified

1328 };
1329
1330 const requireUserSubject = (owner: Owner): Effect.Effect<void, StorageFailure> =>
1331 owner === "user" && subject == null
1332 ? Effect.fail(
1333 new StorageError({
1334 message: `Cannot target owner "user": executor has no subject.`,
1335 cause: undefined,
1336 }),
1337 )
1338 : Effect.void;
1339
1340 // Built-in core-tools plugin: agent-facing static tools over the v2 surface.
1341 const plugins: readonly AnyPlugin[] = config.coreTools

Callers 2

mintOAuthConnectionFunction · 0.85
policiesCreateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected