@khirby/plugin-pokelo 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@khirby/plugin-pokelo",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Khirby — Pokelo knowledge MCP proxy for Ask Khirby + RAG context for AI Compose",
5
5
  "main": "src/index.ts",
6
6
  "keywords": [
@@ -4,7 +4,7 @@ import type {
4
4
  KnowledgeFetchOpts,
5
5
  KnowledgeMcpToolDef,
6
6
  KnowledgeToolsLike,
7
- } from '../../../packages/plugin-host/src';
7
+ } from '@khirby/plugin-host';
8
8
  import { PokeloSettingsService } from './pokelo-settings.service';
9
9
  import {
10
10
  callMcpTool,
@@ -2,4 +2,4 @@ export {
2
2
  decrypt,
3
3
  encrypt,
4
4
  isInstanceSecretsKeyConfigured as isPokeloSecretsKeyConfigured,
5
- } from '../../../packages/plugin-host/src/instance-secrets';
5
+ } from '@khirby/plugin-host';
@@ -1,4 +1,4 @@
1
- import type { KnowledgeMcpToolDef } from '../../../packages/plugin-host/src';
1
+ import type { KnowledgeMcpToolDef } from '@khirby/plugin-host';
2
2
 
3
3
  export type McpToolResult = {
4
4
  result?: {
@@ -7,7 +7,7 @@ import {
7
7
  RequirePluginEnabled,
8
8
  PluginEnabledGuard,
9
9
  AppException,
10
- } from '../../../packages/plugin-host/src';
10
+ } from '@khirby/plugin-host';
11
11
  import { PokeloSettingsService, POKELO_PLUGIN_NAME } from './pokelo-settings.service';
12
12
  import { PokeloContextService } from './pokelo-context.service';
13
13
 
@@ -6,7 +6,7 @@ import {
6
6
  PLUGIN_REGISTRY,
7
7
  type PluginRegistryLike,
8
8
  AppException,
9
- } from '../../../packages/plugin-host/src';
9
+ } from '@khirby/plugin-host';
10
10
  import { pokeloSettings } from './schema';
11
11
  import { encrypt, decrypt, isPokeloSecretsKeyConfigured } from './pokelo-crypto';
12
12
 
@@ -3,7 +3,7 @@ import {
3
3
  KNOWLEDGE_CONTEXT,
4
4
  KNOWLEDGE_TOOLS,
5
5
  POKELO_CONTEXT_SERVICE,
6
- } from '../../../packages/plugin-host/src';
6
+ } from '@khirby/plugin-host';
7
7
  import { PokeloSettingsService } from './pokelo-settings.service';
8
8
  import { PokeloContextService } from './pokelo-context.service';
9
9
  import { PokeloSettingsController } from './pokelo-settings.controller';