MCPcopy Create free account
hub / github.com/claude-code-best/claude-code / createAutonomyRun

Function createAutonomyRun

src/utils/autonomyRuns.ts:507–515  ·  view source on GitHub ↗
(
  params: CreateAutonomyRunParams,
)

Source from the content-addressed store, hash-verified

505}
506
507export async function createAutonomyRun(
508 params: CreateAutonomyRunParams,
509): Promise<AutonomyRunRecord> {
510 const record = await createAutonomyRunCore(params, false)
511 if (!record) {
512 throw new Error('Autonomy run was unexpectedly skipped.')
513 }
514 return record
515}
516
517export async function createAutonomyRunIfNoActiveSource(
518 params: CreateAutonomyRunParams & { sourceId: string },

Callers 1

Calls 1

createAutonomyRunCoreFunction · 0.85

Tested by

no test coverage detected