deepseek-ai/deepseek-harness · error · Error

pluginInventory.list failed: ${result.error.code}: ${result.

Error message

pluginInventory.list failed: ${result.error.code}: ${result.error.message}

What it means

Error "pluginInventory.list failed: ${result.error.code}: ${result.error.message}" thrown in deepseek-ai/deepseek-harness.

Source

Thrown at packages/client/ui-settings-plugin-inventory/src/client/index.ts:33

    'settings.pluginInventory': PluginInventoryLocaleKey
  }
}

/** Dictionary namespace owned by this plugin. */
export const NS = 'settings.pluginInventory'

/** Services required by the Settings registration and generated Remote face. */
export const inject = ['slots', 'locale', 'remote', 'remote.pluginInventory']

/** Contribute the lazy inventory tab to the Plugins settings section. */
export function apply(ctx: ClientContext): void {
  ctx.effect(() => ctx.locale.register(NS, { zh, en }), 'ui-settings-plugin-inventory: dictionaries')

  const t = ctx.locale.bind(NS)
  const list: PluginInventorySettingsTabInjected['list'] = async () => {
    const result = await ctx.remote.pluginInventory.list()
    if (!result.ok) {
      throw new Error(`pluginInventory.list failed: ${result.error.code}: ${result.error.message}`)
    }
    return result.value
  }
  const injected = (): PluginInventorySettingsTabInjected => ({ list })

  ctx.slots.inject('settings.plugins.tab', () => ctx.slots.register({
    name: 'settings.plugins.tab',
    id: 'all',
    order: 10,
    label: () => t('tab'),
    locale: NS,
    inject: injected,
  }, PluginInventorySettingsTab))
}

View on GitHub (pinned to b150a551b8)

Solutions

  1. Ensure the pluginInventory service is running and read the reported code and message.

When it happens

Trigger: Thrown at packages/client/ui-settings-plugin-inventory/src/client/index.ts:33 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of deepseek-ai/deepseek-harness@b150a551b8 (2026-08-24). Data as JSON: /api/errors/347e115efbf6e528. Report an issue: GitHub.