@agentplugins/adapter-codex 0.1.0 → 0.2.0

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/dist/index.d.mts CHANGED
@@ -1,4 +1,5 @@
1
- import { PlatformAdapter, TargetPlatform, UniversalHookName, HandlerType, PluginManifest, ValidationIssue, AdapterOutput } from '@agentplugins/core';
1
+ import { TargetPlatform, PluginManifest } from '@agentplugins/core';
2
+ import { PlatformAdapter, UniversalHookName, HandlerType, ValidationIssue, AdapterOutput } from '@agentplugins/core/adapter';
2
3
 
3
4
  /**
4
5
  * @agentplugins/adapter-codex
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- import { PlatformAdapter, TargetPlatform, UniversalHookName, HandlerType, PluginManifest, ValidationIssue, AdapterOutput } from '@agentplugins/core';
1
+ import { TargetPlatform, PluginManifest } from '@agentplugins/core';
2
+ import { PlatformAdapter, UniversalHookName, HandlerType, ValidationIssue, AdapterOutput } from '@agentplugins/core/adapter';
2
3
 
3
4
  /**
4
5
  * @agentplugins/adapter-codex
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentplugins/adapter-codex",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "AgentPlugins platform adapter for OpenAI Codex CLI",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -11,15 +11,8 @@
11
11
  "types": "./dist/index.d.ts"
12
12
  }
13
13
  },
14
- "scripts": {
15
- "build": "tsup src/index.ts --format cjs,esm --dts",
16
- "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
17
- "typecheck": "tsc --noEmit",
18
- "lint": "eslint src/**/*.ts",
19
- "test": "vitest run"
20
- },
21
14
  "dependencies": {
22
- "@agentplugins/core": "workspace:*"
15
+ "@agentplugins/core": "0.2.0"
23
16
  },
24
17
  "devDependencies": {
25
18
  "@types/node": "^20.0.0",
@@ -28,7 +21,7 @@
28
21
  "vitest": "^1.0.0"
29
22
  },
30
23
  "peerDependencies": {
31
- "@agentplugins/core": "^0.1.0"
24
+ "@agentplugins/core": "^0.2.0"
32
25
  },
33
26
  "files": [
34
27
  "dist",
@@ -40,7 +33,7 @@
40
33
  "license": "MIT",
41
34
  "repository": {
42
35
  "type": "git",
43
- "url": "https://github.com/espetro/agentplugins.git",
36
+ "url": "https://github.com/sigilco/agentplugins.git",
44
37
  "directory": "packages/adapter-codex"
45
38
  },
46
39
  "keywords": [
@@ -49,5 +42,12 @@
49
42
  "openai",
50
43
  "cli",
51
44
  "adapter"
52
- ]
53
- }
45
+ ],
46
+ "scripts": {
47
+ "build": "tsup src/index.ts --format cjs,esm --dts",
48
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
49
+ "typecheck": "tsc --noEmit",
50
+ "lint": "eslint src/**/*.ts",
51
+ "test": "vitest run --passWithNoTests"
52
+ }
53
+ }