@moldea.ai/adapter-openai-agents-sdk 1.0.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/LICENSE +21 -0
- package/README.md +90 -0
- package/cover.png +0 -0
- package/dist/adapter/index.d.ts +3 -0
- package/dist/adapter/index.d.ts.map +1 -0
- package/dist/constants/index.d.ts +7 -0
- package/dist/constants/index.d.ts.map +1 -0
- package/dist/contracts/index.d.ts +164 -0
- package/dist/contracts/index.d.ts.map +1 -0
- package/dist/diagnostics/index.d.ts +32 -0
- package/dist/diagnostics/index.d.ts.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1993 -0
- package/dist/inspection/common.d.ts +36 -0
- package/dist/inspection/common.d.ts.map +1 -0
- package/dist/inspection/handoffs.d.ts +6 -0
- package/dist/inspection/handoffs.d.ts.map +1 -0
- package/dist/inspection/index.d.ts +2 -0
- package/dist/inspection/index.d.ts.map +1 -0
- package/dist/inspection/inspection.d.ts +18 -0
- package/dist/inspection/inspection.d.ts.map +1 -0
- package/dist/inspection/package-inspection.d.ts +7 -0
- package/dist/inspection/package-inspection.d.ts.map +1 -0
- package/dist/inspection/relationships.d.ts +6 -0
- package/dist/inspection/relationships.d.ts.map +1 -0
- package/dist/inspection/session.d.ts +5 -0
- package/dist/inspection/session.d.ts.map +1 -0
- package/dist/package-discovery/index.d.ts +27 -0
- package/dist/package-discovery/index.d.ts.map +1 -0
- package/dist/source-analysis/agent-definitions.d.ts +20 -0
- package/dist/source-analysis/agent-definitions.d.ts.map +1 -0
- package/dist/source-analysis/bindings.d.ts +11 -0
- package/dist/source-analysis/bindings.d.ts.map +1 -0
- package/dist/source-analysis/function-tools.d.ts +9 -0
- package/dist/source-analysis/function-tools.d.ts.map +1 -0
- package/dist/source-analysis/handoffs.d.ts +27 -0
- package/dist/source-analysis/handoffs.d.ts.map +1 -0
- package/dist/source-analysis/index.d.ts +11 -0
- package/dist/source-analysis/index.d.ts.map +1 -0
- package/dist/source-analysis/instruction-loaders.d.ts +11 -0
- package/dist/source-analysis/instruction-loaders.d.ts.map +1 -0
- package/dist/source-analysis/mutations.d.ts +15 -0
- package/dist/source-analysis/mutations.d.ts.map +1 -0
- package/dist/source-analysis/source-analysis.d.ts +11 -0
- package/dist/source-analysis/source-analysis.d.ts.map +1 -0
- package/dist/source-analysis/static-strings.d.ts +11 -0
- package/dist/source-analysis/static-strings.d.ts.map +1 -0
- package/dist/source-analysis/tool-collections.d.ts +27 -0
- package/dist/source-analysis/tool-collections.d.ts.map +1 -0
- package/package.json +60 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Jesus Graterol
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# `@moldea.ai/adapter-openai-agents-sdk`
|
|
4
|
+
|
|
5
|
+
Deterministic runtime evidence and diagnostics for OpenAI Agents SDK integrations declared by `moldea` agents.
|
|
6
|
+
|
|
7
|
+
The package implements the official `openai-agents-sdk` runtime adapter for `@moldea.ai/core`. It statically inspects explicitly bound repository source through Core's source-neutral reader. It never imports or calls the OpenAI Agents SDK, requires no API key, executes no repository code, and makes no network request.
|
|
8
|
+
|
|
9
|
+
## Supported target
|
|
10
|
+
|
|
11
|
+
Version `1.0.0` experimentally supports:
|
|
12
|
+
|
|
13
|
+
- Repository Format version `1`
|
|
14
|
+
- `@moldea.ai/core ^2.0.0`
|
|
15
|
+
- TypeScript ESM source
|
|
16
|
+
- npm `@openai/agents >=0.16.1 <0.17.0`
|
|
17
|
+
- directly exported `const` agents constructed through `new Agent({ ... })` or `Agent.create({ ... })`
|
|
18
|
+
- direct, awaited, referenced, or single-return-wrapper instruction loaders
|
|
19
|
+
- direct agent output-schema relationships through `outputType`
|
|
20
|
+
- closed function tools created through `tool({ ... })`
|
|
21
|
+
- direct tool implementation, input-schema, and output-schema relationships
|
|
22
|
+
- closed inline or immutable module-local agent tool arrays
|
|
23
|
+
- direct agent handoffs and configured `handoff(...)` registrations
|
|
24
|
+
- effective routing descriptions from `toolDescriptionOverride`, `handoffDescription`, or the canonical agent-description fallback
|
|
25
|
+
|
|
26
|
+
Named root-package imports and aliases of `Agent`, `tool`, and `handoff` are supported. Relationship closure is independent: a dynamic or mutated relationship does not erase other relationships proved from the same definition. Relative ESM named imports resolve exact paths plus `.js` to `.ts` or `.tsx` and `.mjs` to `.mts` substitutions.
|
|
27
|
+
|
|
28
|
+
The Runtime Compatibility Matrix is authoritative for current target maturity, exact versions, evidence, binding support, patterns, and known limitations.
|
|
29
|
+
|
|
30
|
+
## Usage
|
|
31
|
+
|
|
32
|
+
```typescript
|
|
33
|
+
import { createCore } from '@moldea.ai/core';
|
|
34
|
+
import { openAiAgentsSdkAdapter } from '@moldea.ai/adapter-openai-agents-sdk';
|
|
35
|
+
|
|
36
|
+
const core = createCore({ adapters: [openAiAgentsSdkAdapter] });
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
The local CLI bundles active official adapters automatically. Applications composing Core directly register the immutable singleton explicitly.
|
|
40
|
+
|
|
41
|
+
## Public exports
|
|
42
|
+
|
|
43
|
+
The package exports only the immutable `openAiAgentsSdkAdapter` singleton. It has no default export, configuration factory, diagnostic registry, SDK facade, parser export, or mutable runtime state.
|
|
44
|
+
|
|
45
|
+
## Evidence
|
|
46
|
+
|
|
47
|
+
The verified target may emit `agent-definition`, `handoff-registration`, `instruction-loader`, `language`, `runtime-package`, `schema`, and `tool-registration` evidence. Evidence is source-grounded, references existing regular files, and contains no repository contents, instructions, credentials, tool arguments, or provider payloads.
|
|
48
|
+
|
|
49
|
+
Agent-definition evidence uses a supported static Agent name only when it satisfies Core's machine-string contract; otherwise it uses the bound runtime-agent symbol. Handoff target names and explicit handoff runtime names are omitted when they cannot satisfy that contract.
|
|
50
|
+
|
|
51
|
+
## Diagnostics
|
|
52
|
+
|
|
53
|
+
| Code | Stable message |
|
|
54
|
+
| --------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------ |
|
|
55
|
+
| `OPENAI_AGENTS_SDK_PACKAGE_MANIFEST_INVALID` | The owning package manifest is invalid for OpenAI Agents SDK dependency detection. |
|
|
56
|
+
| `OPENAI_AGENTS_SDK_VERSION_UNSUPPORTED` | The observed OpenAI Agents SDK dependency range is disjoint from the supported range. |
|
|
57
|
+
| `OPENAI_AGENTS_SDK_SOURCE_TEXT_INVALID` | The referenced OpenAI Agents SDK source file is not valid normalized text. |
|
|
58
|
+
| `OPENAI_AGENTS_SDK_SOURCE_SYNTAX_INVALID` | The referenced OpenAI Agents SDK source file contains invalid TypeScript syntax. |
|
|
59
|
+
| `OPENAI_AGENTS_SDK_RUNTIME_AGENT_SYMBOL_NOT_FOUND` | The declared runtime-agent symbol was not found. |
|
|
60
|
+
| `OPENAI_AGENTS_SDK_INSTRUCTION_LOADER_SYMBOL_NOT_FOUND` | The declared instruction-loader symbol was not found. |
|
|
61
|
+
| `OPENAI_AGENTS_SDK_AGENT_OUTPUT_SCHEMA_SYMBOL_NOT_FOUND` | The declared agent output-schema symbol was not found. |
|
|
62
|
+
| `OPENAI_AGENTS_SDK_TOOL_IMPLEMENTATION_SYMBOL_NOT_FOUND` | The declared tool-implementation symbol was not found. |
|
|
63
|
+
| `OPENAI_AGENTS_SDK_TOOL_REGISTRATION_SYMBOL_NOT_FOUND` | The declared tool-registration symbol was not found. |
|
|
64
|
+
| `OPENAI_AGENTS_SDK_TOOL_INPUT_SCHEMA_SYMBOL_NOT_FOUND` | The declared tool input-schema symbol was not found. |
|
|
65
|
+
| `OPENAI_AGENTS_SDK_TOOL_OUTPUT_SCHEMA_SYMBOL_NOT_FOUND` | The declared tool output-schema symbol was not found. |
|
|
66
|
+
| `OPENAI_AGENTS_SDK_INSTRUCTION_LOADER_NOT_WIRED` | The declared instruction loader is not wired to the detected OpenAI Agents SDK agent. |
|
|
67
|
+
| `OPENAI_AGENTS_SDK_AGENT_OUTPUT_SCHEMA_NOT_WIRED` | The declared agent output schema is not wired to the detected OpenAI Agents SDK agent output type. |
|
|
68
|
+
| `OPENAI_AGENTS_SDK_TOOL_IMPLEMENTATION_NOT_WIRED` | The declared tool implementation is not wired to the detected OpenAI Agents SDK function tool. |
|
|
69
|
+
| `OPENAI_AGENTS_SDK_TOOL_REGISTRATION_NOT_WIRED` | The declared tool registration is not wired to the detected OpenAI Agents SDK agent. |
|
|
70
|
+
| `OPENAI_AGENTS_SDK_TOOL_NAME_MISMATCH` | The declared tool name does not match the detected OpenAI Agents SDK function-tool name. |
|
|
71
|
+
| `OPENAI_AGENTS_SDK_TOOL_INPUT_SCHEMA_NOT_WIRED` | The declared tool input schema is not wired to the detected OpenAI Agents SDK function tool. |
|
|
72
|
+
| `OPENAI_AGENTS_SDK_TOOL_OUTPUT_SCHEMA_NOT_WIRED` | The declared tool output schema is not wired to the detected OpenAI Agents SDK function tool. |
|
|
73
|
+
| `OPENAI_AGENTS_SDK_HANDOFF_TARGET_AMBIGUOUS` | The detected OpenAI Agents SDK handoff target matches more than one registered moldea agent. |
|
|
74
|
+
| `OPENAI_AGENTS_SDK_HANDOFF_ROUTING_DESCRIPTION_MISSING` | The detected OpenAI Agents SDK handoff registration is missing its effective routing description. |
|
|
75
|
+
| `OPENAI_AGENTS_SDK_HANDOFF_ROUTING_DESCRIPTION_NOT_WIRED` | The detected OpenAI Agents SDK handoff registration does not use the target agent's effective routing description. |
|
|
76
|
+
|
|
77
|
+
Missing local runtime evidence is not a diagnostic. Dynamic or unsupported forms produce partial or no evidence rather than guessed failures.
|
|
78
|
+
|
|
79
|
+
## Development
|
|
80
|
+
|
|
81
|
+
From the monorepo root:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
pnpm --filter @moldea.ai/adapter-openai-agents-sdk test
|
|
85
|
+
pnpm --filter @moldea.ai/adapter-openai-agents-sdk typecheck
|
|
86
|
+
pnpm --filter @moldea.ai/adapter-openai-agents-sdk lint
|
|
87
|
+
pnpm --filter @moldea.ai/adapter-openai-agents-sdk build
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Unit and integration tests are colocated with their implementation modules. Adapter-specific conformance fixtures live under `/fixtures/adapter-openai-agents-sdk`.
|
package/cover.png
ADDED
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/adapter/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAS/D,eAAO,MAAM,sBAAsB,EAAE,eAInC,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const OPENAI_AGENTS_SDK_ADAPTER_ID = "openai-agents-sdk";
|
|
2
|
+
export declare const OPENAI_AGENTS_SDK_PACKAGE_NAME = "@openai/agents";
|
|
3
|
+
export declare const OPENAI_AGENTS_SDK_SUPPORTED_RANGE = ">=0.16.1 <0.17.0";
|
|
4
|
+
export declare const OPENAI_AGENTS_SDK_TARGET_ID = "typescript-agent-handoffs-0-16";
|
|
5
|
+
export declare const OPENAI_AGENTS_SDK_SUPPORTED_REPOSITORY_FORMAT_VERSIONS: readonly 1[];
|
|
6
|
+
export declare const OPENAI_AGENTS_SDK_TOOL_NAME_PATTERN: RegExp;
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,4BAA4B,sBAAsB,CAAC;AAChE,eAAO,MAAM,8BAA8B,mBAAmB,CAAC;AAC/D,eAAO,MAAM,iCAAiC,qBAAqB,CAAC;AACpE,eAAO,MAAM,2BAA2B,mCAAmC,CAAC;AAC5E,eAAO,MAAM,sDAAsD,cAEnB,CAAC;AAGjD,eAAO,MAAM,mCAAmC,QAAoB,CAAC"}
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
import type ts from 'typescript';
|
|
2
|
+
import type { ISourceRange } from '@moldea.ai/core';
|
|
3
|
+
import type { IAdapterDiagnostic } from '@moldea.ai/core/adapter';
|
|
4
|
+
import type { IRepositoryEntry, IRepositoryPath } from '@moldea.ai/repository';
|
|
5
|
+
export type IOpenAiAgentsSdkAdapterDiagnosticCode = 'OPENAI_AGENTS_SDK_PACKAGE_MANIFEST_INVALID' | 'OPENAI_AGENTS_SDK_VERSION_UNSUPPORTED' | 'OPENAI_AGENTS_SDK_SOURCE_TEXT_INVALID' | 'OPENAI_AGENTS_SDK_SOURCE_SYNTAX_INVALID' | 'OPENAI_AGENTS_SDK_RUNTIME_AGENT_SYMBOL_NOT_FOUND' | 'OPENAI_AGENTS_SDK_INSTRUCTION_LOADER_SYMBOL_NOT_FOUND' | 'OPENAI_AGENTS_SDK_AGENT_OUTPUT_SCHEMA_SYMBOL_NOT_FOUND' | 'OPENAI_AGENTS_SDK_TOOL_IMPLEMENTATION_SYMBOL_NOT_FOUND' | 'OPENAI_AGENTS_SDK_TOOL_REGISTRATION_SYMBOL_NOT_FOUND' | 'OPENAI_AGENTS_SDK_TOOL_INPUT_SCHEMA_SYMBOL_NOT_FOUND' | 'OPENAI_AGENTS_SDK_TOOL_OUTPUT_SCHEMA_SYMBOL_NOT_FOUND' | 'OPENAI_AGENTS_SDK_INSTRUCTION_LOADER_NOT_WIRED' | 'OPENAI_AGENTS_SDK_AGENT_OUTPUT_SCHEMA_NOT_WIRED' | 'OPENAI_AGENTS_SDK_TOOL_IMPLEMENTATION_NOT_WIRED' | 'OPENAI_AGENTS_SDK_TOOL_REGISTRATION_NOT_WIRED' | 'OPENAI_AGENTS_SDK_TOOL_NAME_MISMATCH' | 'OPENAI_AGENTS_SDK_TOOL_INPUT_SCHEMA_NOT_WIRED' | 'OPENAI_AGENTS_SDK_TOOL_OUTPUT_SCHEMA_NOT_WIRED' | 'OPENAI_AGENTS_SDK_HANDOFF_TARGET_AMBIGUOUS' | 'OPENAI_AGENTS_SDK_HANDOFF_ROUTING_DESCRIPTION_MISSING' | 'OPENAI_AGENTS_SDK_HANDOFF_ROUTING_DESCRIPTION_NOT_WIRED';
|
|
6
|
+
export type IOpenAiAgentsSdkPackageCompatibility = 'ambiguous' | 'supported' | 'unsupported';
|
|
7
|
+
export type IOpenAiAgentsSdkPackageDependencyKind = 'dependencies' | 'optionalDependencies' | 'peerDependencies' | 'devDependencies';
|
|
8
|
+
export interface IOpenAiAgentsSdkPackageDeclaration {
|
|
9
|
+
readonly declaredRange: string;
|
|
10
|
+
readonly dependencyKind: IOpenAiAgentsSdkPackageDependencyKind;
|
|
11
|
+
}
|
|
12
|
+
export interface IOpenAiAgentsSdkPackageObservation {
|
|
13
|
+
readonly compatibility: IOpenAiAgentsSdkPackageCompatibility;
|
|
14
|
+
readonly declarations: readonly IOpenAiAgentsSdkPackageDeclaration[];
|
|
15
|
+
readonly path: IRepositoryPath;
|
|
16
|
+
}
|
|
17
|
+
export type IOpenAiAgentsSdkPackageDiscoveryResult = {
|
|
18
|
+
readonly kind: 'absent';
|
|
19
|
+
} | {
|
|
20
|
+
readonly kind: 'invalid';
|
|
21
|
+
readonly path: IRepositoryPath;
|
|
22
|
+
} | {
|
|
23
|
+
readonly kind: 'observed';
|
|
24
|
+
readonly observation: IOpenAiAgentsSdkPackageObservation;
|
|
25
|
+
};
|
|
26
|
+
export interface IOpenAiAgentsSdkImports {
|
|
27
|
+
readonly agentNames: ReadonlySet<string>;
|
|
28
|
+
readonly handoffNames: ReadonlySet<string>;
|
|
29
|
+
readonly toolNames: ReadonlySet<string>;
|
|
30
|
+
}
|
|
31
|
+
export interface IOpenAiAgentsSdkNamedImport {
|
|
32
|
+
readonly importedName: string;
|
|
33
|
+
readonly moduleSpecifier: string;
|
|
34
|
+
}
|
|
35
|
+
export type IOpenAiAgentsSdkModuleExportState = {
|
|
36
|
+
readonly kind: 'absent';
|
|
37
|
+
} | {
|
|
38
|
+
readonly declaration: ts.Node;
|
|
39
|
+
readonly kind: 'present-supported';
|
|
40
|
+
} | {
|
|
41
|
+
readonly declaration: ts.Node;
|
|
42
|
+
readonly kind: 'present-unsupported';
|
|
43
|
+
};
|
|
44
|
+
export interface IOpenAiAgentsSdkModuleArray {
|
|
45
|
+
readonly declaration: ts.VariableDeclaration;
|
|
46
|
+
readonly expression: ts.ArrayLiteralExpression;
|
|
47
|
+
}
|
|
48
|
+
export type IOpenAiAgentsSdkTextResult = {
|
|
49
|
+
readonly valid: false;
|
|
50
|
+
} | {
|
|
51
|
+
readonly locator: {
|
|
52
|
+
locateRange(startOffset: number, endOffset: number): ISourceRange;
|
|
53
|
+
};
|
|
54
|
+
readonly valid: true;
|
|
55
|
+
readonly value: string;
|
|
56
|
+
};
|
|
57
|
+
export interface IOpenAiAgentsSdkSourceAnalysis {
|
|
58
|
+
readonly clientNames: ReadonlySet<string>;
|
|
59
|
+
readonly constructorNames: ReadonlySet<string>;
|
|
60
|
+
readonly exports: ReadonlyMap<string, IOpenAiAgentsSdkModuleExportState & {
|
|
61
|
+
readonly declaration: ts.Node;
|
|
62
|
+
}>;
|
|
63
|
+
readonly identifierUses: ReadonlyMap<string, readonly ts.Identifier[]>;
|
|
64
|
+
readonly imports: IOpenAiAgentsSdkImports;
|
|
65
|
+
readonly localBindingNames: ReadonlyMap<ts.Node, ReadonlySet<string>>;
|
|
66
|
+
readonly moduleArrays: ReadonlyMap<string, IOpenAiAgentsSdkModuleArray>;
|
|
67
|
+
readonly moduleConstDeclarations: ReadonlyMap<string, ts.VariableDeclaration>;
|
|
68
|
+
readonly namedImports: ReadonlyMap<string, IOpenAiAgentsSdkNamedImport>;
|
|
69
|
+
readonly path: IRepositoryPath;
|
|
70
|
+
readonly safeModuleArrayNames: ReadonlySet<string>;
|
|
71
|
+
readonly sourceFile: ts.SourceFile;
|
|
72
|
+
readonly text: IOpenAiAgentsSdkTextResult & {
|
|
73
|
+
readonly valid: true;
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
export type IOpenAiAgentsSdkSourceAnalysisResult = {
|
|
77
|
+
readonly kind: 'invalid-syntax';
|
|
78
|
+
readonly range: ISourceRange | null;
|
|
79
|
+
} | {
|
|
80
|
+
readonly kind: 'invalid-text';
|
|
81
|
+
} | {
|
|
82
|
+
readonly analysis: IOpenAiAgentsSdkSourceAnalysis;
|
|
83
|
+
readonly kind: 'valid';
|
|
84
|
+
};
|
|
85
|
+
export type IOpenAiAgentsSdkRelationship = {
|
|
86
|
+
readonly kind: 'absent';
|
|
87
|
+
} | {
|
|
88
|
+
readonly expression: ts.Expression;
|
|
89
|
+
readonly kind: 'present';
|
|
90
|
+
} | {
|
|
91
|
+
readonly kind: 'unresolved';
|
|
92
|
+
};
|
|
93
|
+
export type IOpenAiAgentsSdkExportState = {
|
|
94
|
+
readonly kind: 'absent';
|
|
95
|
+
} | {
|
|
96
|
+
readonly declaration: ts.Node;
|
|
97
|
+
readonly kind: 'present-unsupported';
|
|
98
|
+
} | {
|
|
99
|
+
readonly config: ts.ObjectLiteralExpression;
|
|
100
|
+
readonly declaration: ts.VariableDeclaration;
|
|
101
|
+
readonly kind: 'present-supported';
|
|
102
|
+
};
|
|
103
|
+
export interface IOpenAiAgentsSdkAgentDefinition {
|
|
104
|
+
readonly config: ts.ObjectLiteralExpression;
|
|
105
|
+
readonly declaration: ts.VariableDeclaration;
|
|
106
|
+
readonly handoffDescription: IOpenAiAgentsSdkRelationship;
|
|
107
|
+
readonly handoffs: IOpenAiAgentsSdkRelationship;
|
|
108
|
+
readonly instructions: IOpenAiAgentsSdkRelationship;
|
|
109
|
+
readonly name: IOpenAiAgentsSdkRelationship;
|
|
110
|
+
readonly outputType: IOpenAiAgentsSdkRelationship;
|
|
111
|
+
readonly tools: IOpenAiAgentsSdkRelationship;
|
|
112
|
+
}
|
|
113
|
+
export type IOpenAiAgentsSdkStaticStringResult = {
|
|
114
|
+
readonly expression: ts.Expression;
|
|
115
|
+
readonly kind: 'supported';
|
|
116
|
+
readonly value: string;
|
|
117
|
+
} | {
|
|
118
|
+
readonly kind: 'unsupported';
|
|
119
|
+
};
|
|
120
|
+
export interface IOpenAiAgentsSdkFunctionTool {
|
|
121
|
+
readonly declaration: ts.VariableDeclaration;
|
|
122
|
+
readonly execute: IOpenAiAgentsSdkRelationship;
|
|
123
|
+
readonly name: ts.Expression;
|
|
124
|
+
readonly object: ts.ObjectLiteralExpression;
|
|
125
|
+
readonly outputSchema: IOpenAiAgentsSdkRelationship;
|
|
126
|
+
readonly parameters: IOpenAiAgentsSdkRelationship;
|
|
127
|
+
}
|
|
128
|
+
export type IOpenAiAgentsSdkFunctionToolResult = {
|
|
129
|
+
readonly kind: 'absent';
|
|
130
|
+
} | {
|
|
131
|
+
readonly declaration: ts.Node;
|
|
132
|
+
readonly kind: 'present-unsupported';
|
|
133
|
+
} | {
|
|
134
|
+
readonly kind: 'present-supported';
|
|
135
|
+
readonly tool: IOpenAiAgentsSdkFunctionTool;
|
|
136
|
+
};
|
|
137
|
+
export interface IOpenAiAgentsSdkHandoffRegistration {
|
|
138
|
+
readonly expression: ts.Expression;
|
|
139
|
+
readonly kind: 'agent' | 'handoff';
|
|
140
|
+
readonly target: ts.Expression;
|
|
141
|
+
readonly toolDescriptionOverride: IOpenAiAgentsSdkRelationship;
|
|
142
|
+
readonly toolNameOverride: IOpenAiAgentsSdkRelationship;
|
|
143
|
+
}
|
|
144
|
+
export interface IOpenAiAgentsSdkResolvedAgentTarget {
|
|
145
|
+
readonly analysis: IOpenAiAgentsSdkSourceAnalysis;
|
|
146
|
+
readonly definition: IOpenAiAgentsSdkAgentDefinition;
|
|
147
|
+
readonly path: IRepositoryPath;
|
|
148
|
+
readonly runtimeName: string | null;
|
|
149
|
+
readonly symbol: string;
|
|
150
|
+
}
|
|
151
|
+
export interface IOpenAiAgentsSdkInspectionSession {
|
|
152
|
+
readonly signal?: AbortSignal;
|
|
153
|
+
analyzeSource(path: IRepositoryPath): Promise<IOpenAiAgentsSdkSourceAnalysisResult>;
|
|
154
|
+
discoverPackage(path: IRepositoryPath): Promise<IOpenAiAgentsSdkPackageDiscoveryResult>;
|
|
155
|
+
getEntry(path: IRepositoryPath): Promise<IRepositoryEntry | null>;
|
|
156
|
+
}
|
|
157
|
+
export type IOpenAiAgentsSdkDiagnosticInput = Omit<IAdapterDiagnostic, 'message' | 'source'> & {
|
|
158
|
+
readonly code: IOpenAiAgentsSdkAdapterDiagnosticCode;
|
|
159
|
+
};
|
|
160
|
+
export interface IOpenAiAgentsSdkLocatedExpression {
|
|
161
|
+
readonly expression: ts.Expression;
|
|
162
|
+
readonly range: ISourceRange;
|
|
163
|
+
}
|
|
164
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/contracts/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { IAdapterDiagnostic } from '@moldea.ai/core/adapter';
|
|
2
|
+
import type { IOpenAiAgentsSdkDiagnosticInput } from '../contracts/index.js';
|
|
3
|
+
export declare const OPENAI_AGENTS_SDK_ADAPTER_DIAGNOSTICS: Readonly<{
|
|
4
|
+
readonly OPENAI_AGENTS_SDK_AGENT_OUTPUT_SCHEMA_NOT_WIRED: "The declared agent output schema is not wired to the detected OpenAI Agents SDK agent output type.";
|
|
5
|
+
readonly OPENAI_AGENTS_SDK_AGENT_OUTPUT_SCHEMA_SYMBOL_NOT_FOUND: "The declared agent output-schema symbol was not found.";
|
|
6
|
+
readonly OPENAI_AGENTS_SDK_HANDOFF_ROUTING_DESCRIPTION_MISSING: "The detected OpenAI Agents SDK handoff registration is missing its effective routing description.";
|
|
7
|
+
readonly OPENAI_AGENTS_SDK_HANDOFF_ROUTING_DESCRIPTION_NOT_WIRED: "The detected OpenAI Agents SDK handoff registration does not use the target agent's effective routing description.";
|
|
8
|
+
readonly OPENAI_AGENTS_SDK_HANDOFF_TARGET_AMBIGUOUS: "The detected OpenAI Agents SDK handoff target matches more than one registered moldea agent.";
|
|
9
|
+
readonly OPENAI_AGENTS_SDK_INSTRUCTION_LOADER_NOT_WIRED: "The declared instruction loader is not wired to the detected OpenAI Agents SDK agent.";
|
|
10
|
+
readonly OPENAI_AGENTS_SDK_INSTRUCTION_LOADER_SYMBOL_NOT_FOUND: "The declared instruction-loader symbol was not found.";
|
|
11
|
+
readonly OPENAI_AGENTS_SDK_PACKAGE_MANIFEST_INVALID: "The owning package manifest is invalid for OpenAI Agents SDK dependency detection.";
|
|
12
|
+
readonly OPENAI_AGENTS_SDK_RUNTIME_AGENT_SYMBOL_NOT_FOUND: "The declared runtime-agent symbol was not found.";
|
|
13
|
+
readonly OPENAI_AGENTS_SDK_SOURCE_SYNTAX_INVALID: "The referenced OpenAI Agents SDK source file contains invalid TypeScript syntax.";
|
|
14
|
+
readonly OPENAI_AGENTS_SDK_SOURCE_TEXT_INVALID: "The referenced OpenAI Agents SDK source file is not valid normalized text.";
|
|
15
|
+
readonly OPENAI_AGENTS_SDK_TOOL_IMPLEMENTATION_NOT_WIRED: "The declared tool implementation is not wired to the detected OpenAI Agents SDK function tool.";
|
|
16
|
+
readonly OPENAI_AGENTS_SDK_TOOL_IMPLEMENTATION_SYMBOL_NOT_FOUND: "The declared tool-implementation symbol was not found.";
|
|
17
|
+
readonly OPENAI_AGENTS_SDK_TOOL_INPUT_SCHEMA_NOT_WIRED: "The declared tool input schema is not wired to the detected OpenAI Agents SDK function tool.";
|
|
18
|
+
readonly OPENAI_AGENTS_SDK_TOOL_INPUT_SCHEMA_SYMBOL_NOT_FOUND: "The declared tool input-schema symbol was not found.";
|
|
19
|
+
readonly OPENAI_AGENTS_SDK_TOOL_NAME_MISMATCH: "The declared tool name does not match the detected OpenAI Agents SDK function-tool name.";
|
|
20
|
+
readonly OPENAI_AGENTS_SDK_TOOL_OUTPUT_SCHEMA_NOT_WIRED: "The declared tool output schema is not wired to the detected OpenAI Agents SDK function tool.";
|
|
21
|
+
readonly OPENAI_AGENTS_SDK_TOOL_OUTPUT_SCHEMA_SYMBOL_NOT_FOUND: "The declared tool output-schema symbol was not found.";
|
|
22
|
+
readonly OPENAI_AGENTS_SDK_TOOL_REGISTRATION_NOT_WIRED: "The declared tool registration is not wired to the detected OpenAI Agents SDK agent.";
|
|
23
|
+
readonly OPENAI_AGENTS_SDK_TOOL_REGISTRATION_SYMBOL_NOT_FOUND: "The declared tool-registration symbol was not found.";
|
|
24
|
+
readonly OPENAI_AGENTS_SDK_VERSION_UNSUPPORTED: "The observed OpenAI Agents SDK dependency range is disjoint from the supported range.";
|
|
25
|
+
}>;
|
|
26
|
+
/**
|
|
27
|
+
* Creates one frozen, safely namespaced OpenAI Agents SDK adapter diagnostic.
|
|
28
|
+
* @param input The complete code, location, entity, and safe scalar details.
|
|
29
|
+
* @returns The immutable adapter diagnostic.
|
|
30
|
+
*/
|
|
31
|
+
export declare const createOpenAiAgentsSdkDiagnostic: (input: IOpenAiAgentsSdkDiagnosticInput) => IAdapterDiagnostic;
|
|
32
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/diagnostics/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAGlE,OAAO,KAAK,EAEV,+BAA+B,EAChC,MAAM,uBAAuB,CAAC;AAG/B,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;EA2CmC,CAAC;AAEtF;;;;GAIG;AACH,eAAO,MAAM,+BAA+B,GAC1C,OAAO,+BAA+B,KACrC,kBAOC,CAAC"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC"}
|