langgenius/dify · error · Error

Unknown seed pack "${pack}".

Error message

Unknown seed pack "${pack}".

What it means

Error "Unknown seed pack "${pack}"." thrown in langgenius/dify.

Source

Thrown at e2e/scripts/seed-runner.ts:18

import { chromium } from '@playwright/test'
import { createAgentV2SeedTasks } from '../features/agent-v2/support/seed'
import { ensureAuthenticatedState } from '../fixtures/auth'
import { createStandaloneConsoleSession } from '../support/api/console-session'
import { runSeedTasks, writeSeedReport } from '../support/seed'
import { baseURL } from '../test-env'

export type SeedOptions = {
  allowBlocked: boolean
  dryRun: boolean
  pack: string
  profile: string
}

const getTasks = (pack: string, profile: string) => {
  if (pack === 'agent-v2') return createAgentV2SeedTasks(profile)

  throw new Error(`Unknown seed pack "${pack}".`)
}

const ensureAuth = async () => {
  const browser = await chromium.launch({ headless: true })
  try {
    await ensureAuthenticatedState(browser, baseURL)
  } finally {
    await browser.close()
  }
}

export const runSeed = async ({ allowBlocked, dryRun, pack, profile }: SeedOptions) => {
  console.warn(`[seed] bootstrapping auth state against ${baseURL}`)
  await ensureAuth()

  const consoleSession = await createStandaloneConsoleSession()
  try {
    const results = await runSeedTasks(getTasks(pack, profile), {

View on GitHub (pinned to ef8544b173)

When it happens

Trigger: Thrown at e2e/scripts/seed-runner.ts:18 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of langgenius/dify@ef8544b173 (2026-08-12). Data as JSON: /api/errors/71d8f48b89f951da. Report an issue: GitHub.