@agentic-eng/easa 0.1.1 → 0.1.2
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/README.md +1 -1
- package/dist/index.cjs +16 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ Update your imports:
|
|
|
34
34
|
|
|
35
35
|
## Why?
|
|
36
36
|
|
|
37
|
-
The `@agentic-eng/easa` umbrella package was a thin re-export layer over `@agentic-eng/agent`. Going forward, `@agentic-eng/agent` is the single, primary package for the
|
|
37
|
+
The `@agentic-eng/easa` umbrella package was a thin re-export layer over `@agentic-eng/agent`. Going forward, `@agentic-eng/agent` is the single, primary package for the Agentic Engineering Framework. Consolidating to one package simplifies installation, reduces confusion, and streamlines releases.
|
|
38
38
|
|
|
39
39
|
## Timeline
|
|
40
40
|
|
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var agent = require('@agentic-eng/agent');
|
|
4
|
+
var memory = require('@agentic-eng/memory');
|
|
5
|
+
var observability = require('@agentic-eng/observability');
|
|
4
6
|
|
|
5
7
|
// src/index.ts
|
|
6
8
|
var _warn = globalThis.console.warn;
|
|
@@ -16,26 +18,18 @@ Object.defineProperty(exports, "AgentConfigError", {
|
|
|
16
18
|
enumerable: true,
|
|
17
19
|
get: function () { return agent.AgentConfigError; }
|
|
18
20
|
});
|
|
19
|
-
Object.defineProperty(exports, "
|
|
21
|
+
Object.defineProperty(exports, "AgenticError", {
|
|
20
22
|
enumerable: true,
|
|
21
|
-
get: function () { return agent.
|
|
23
|
+
get: function () { return agent.AgenticError; }
|
|
22
24
|
});
|
|
23
25
|
Object.defineProperty(exports, "EasaError", {
|
|
24
26
|
enumerable: true,
|
|
25
27
|
get: function () { return agent.EasaError; }
|
|
26
28
|
});
|
|
27
|
-
Object.defineProperty(exports, "FlatFileMemoryProvider", {
|
|
28
|
-
enumerable: true,
|
|
29
|
-
get: function () { return agent.FlatFileMemoryProvider; }
|
|
30
|
-
});
|
|
31
29
|
Object.defineProperty(exports, "MaxIterationsError", {
|
|
32
30
|
enumerable: true,
|
|
33
31
|
get: function () { return agent.MaxIterationsError; }
|
|
34
32
|
});
|
|
35
|
-
Object.defineProperty(exports, "NoopEventEmitter", {
|
|
36
|
-
enumerable: true,
|
|
37
|
-
get: function () { return agent.NoopEventEmitter; }
|
|
38
|
-
});
|
|
39
33
|
Object.defineProperty(exports, "ProviderError", {
|
|
40
34
|
enumerable: true,
|
|
41
35
|
get: function () { return agent.ProviderError; }
|
|
@@ -52,5 +46,17 @@ Object.defineProperty(exports, "ToolRegistry", {
|
|
|
52
46
|
enumerable: true,
|
|
53
47
|
get: function () { return agent.ToolRegistry; }
|
|
54
48
|
});
|
|
49
|
+
Object.defineProperty(exports, "FlatFileMemory", {
|
|
50
|
+
enumerable: true,
|
|
51
|
+
get: function () { return memory.FlatFileMemory; }
|
|
52
|
+
});
|
|
53
|
+
Object.defineProperty(exports, "ConsoleObserver", {
|
|
54
|
+
enumerable: true,
|
|
55
|
+
get: function () { return observability.ConsoleObserver; }
|
|
56
|
+
});
|
|
57
|
+
Object.defineProperty(exports, "NoopObserver", {
|
|
58
|
+
enumerable: true,
|
|
59
|
+
get: function () { return observability.NoopObserver; }
|
|
60
|
+
});
|
|
55
61
|
//# sourceMappingURL=index.cjs.map
|
|
56
62
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;AAcA,IAAM,KAAA,GAAS,WAA6E,OAAA,CAAQ,IAAA;AACpG,KAAA;AAAA,EACE;AAEF,CAAA","file":"index.cjs","sourcesContent":["/**\n * @deprecated This package is deprecated and will be removed after 15 April 2026.\n * Please migrate to `@agentic-eng/agent` which contains all the same exports.\n *\n * Migration:\n * npm uninstall @agentic-eng/easa\n * npm install @agentic-eng/agent\n *\n * Then update imports:\n * - import { Agent } from '@agentic-eng/easa';\n * + import { Agent } from '@agentic-eng/agent';\n */\n\n// Runtime deprecation warning\nconst _warn = (globalThis as unknown as { console: { warn: (...args: string[]) => void } }).console.warn;\n_warn(\n '\\x1b[33m[DEPRECATED]\\x1b[0m @agentic-eng/easa is deprecated and will be removed after 15 April 2026. ' +\n 'Please migrate to @agentic-eng/agent. See https://www.npmjs.com/package/@agentic-eng/agent'\n);\n\n// Core — re-export everything from @agentic-eng/agent (which itself re-exports from modular packages)\nexport {\n Agent,\n ToolRegistry,\n AgenticError,\n EasaError,\n ProviderError,\n AgentConfigError,\n MaxIterationsError,\n ReasoningParseError,\n ToolExecutionError,\n} from '@agentic-eng/agent';\nexport type {\n AgentConfig,\n InvokeResult,\n LlmProvider,\n MemoryProvider,\n ObservabilityProvider,\n Tool,\n ToolInputSchema,\n ToolDefinition,\n ToolCallRequest,\n ToolResult,\n EventType,\n AgentEvent,\n Role,\n Message,\n ChatOptions,\n Completion,\n CompletionChunk,\n ChatResponse,\n ChatChunk,\n TokenUsage,\n ReasoningAction,\n LLMReasoningResponse,\n MemoryEntry,\n IterationResult,\n ReasoningTrace,\n InvokeOptions,\n} from '@agentic-eng/agent';\n\n// Re-export concrete implementations from their new packages\nexport { FlatFileMemory } from '@agentic-eng/memory';\nexport { ConsoleObserver, NoopObserver } from '@agentic-eng/observability';\n"]}
|
package/dist/index.d.cts
CHANGED
|
@@ -1 +1,3 @@
|
|
|
1
|
-
export { Agent, AgentConfig, AgentConfigError, AgentEvent,
|
|
1
|
+
export { Agent, AgentConfig, AgentConfigError, AgentEvent, AgenticError, ChatChunk, ChatOptions, ChatResponse, Completion, CompletionChunk, EasaError, EventType, InvokeOptions, InvokeResult, IterationResult, LLMReasoningResponse, LlmProvider, MaxIterationsError, MemoryEntry, MemoryProvider, Message, ObservabilityProvider, ProviderError, ReasoningAction, ReasoningParseError, ReasoningTrace, Role, TokenUsage, Tool, ToolCallRequest, ToolDefinition, ToolExecutionError, ToolInputSchema, ToolRegistry, ToolResult } from '@agentic-eng/agent';
|
|
2
|
+
export { FlatFileMemory } from '@agentic-eng/memory';
|
|
3
|
+
export { ConsoleObserver, NoopObserver } from '@agentic-eng/observability';
|
package/dist/index.d.ts
CHANGED
|
@@ -1 +1,3 @@
|
|
|
1
|
-
export { Agent, AgentConfig, AgentConfigError, AgentEvent,
|
|
1
|
+
export { Agent, AgentConfig, AgentConfigError, AgentEvent, AgenticError, ChatChunk, ChatOptions, ChatResponse, Completion, CompletionChunk, EasaError, EventType, InvokeOptions, InvokeResult, IterationResult, LLMReasoningResponse, LlmProvider, MaxIterationsError, MemoryEntry, MemoryProvider, Message, ObservabilityProvider, ProviderError, ReasoningAction, ReasoningParseError, ReasoningTrace, Role, TokenUsage, Tool, ToolCallRequest, ToolDefinition, ToolExecutionError, ToolInputSchema, ToolRegistry, ToolResult } from '@agentic-eng/agent';
|
|
2
|
+
export { FlatFileMemory } from '@agentic-eng/memory';
|
|
3
|
+
export { ConsoleObserver, NoopObserver } from '@agentic-eng/observability';
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
export { Agent, AgentConfigError,
|
|
1
|
+
export { Agent, AgentConfigError, AgenticError, EasaError, MaxIterationsError, ProviderError, ReasoningParseError, ToolExecutionError, ToolRegistry } from '@agentic-eng/agent';
|
|
2
|
+
export { FlatFileMemory } from '@agentic-eng/memory';
|
|
3
|
+
export { ConsoleObserver, NoopObserver } from '@agentic-eng/observability';
|
|
2
4
|
|
|
3
5
|
// src/index.ts
|
|
4
6
|
var _warn = globalThis.console.warn;
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;AAcA,IAAM,KAAA,GAAS,WAA6E,OAAA,CAAQ,IAAA;AACpG,KAAA;AAAA,EACE;AAEF,CAAA","file":"index.js","sourcesContent":["/**\n * @deprecated This package is deprecated and will be removed after 15 April 2026.\n * Please migrate to `@agentic-eng/agent` which contains all the same exports.\n *\n * Migration:\n * npm uninstall @agentic-eng/easa\n * npm install @agentic-eng/agent\n *\n * Then update imports:\n * - import { Agent } from '@agentic-eng/easa';\n * + import { Agent } from '@agentic-eng/agent';\n */\n\n// Runtime deprecation warning\nconst _warn = (globalThis as unknown as { console: { warn: (...args: string[]) => void } }).console.warn;\n_warn(\n '\\x1b[33m[DEPRECATED]\\x1b[0m @agentic-eng/easa is deprecated and will be removed after 15 April 2026. ' +\n 'Please migrate to @agentic-eng/agent. See https://www.npmjs.com/package/@agentic-eng/agent'\n);\n\n// Core — re-export everything from @agentic-eng/agent (which itself re-exports from modular packages)\nexport {\n Agent,\n ToolRegistry,\n AgenticError,\n EasaError,\n ProviderError,\n AgentConfigError,\n MaxIterationsError,\n ReasoningParseError,\n ToolExecutionError,\n} from '@agentic-eng/agent';\nexport type {\n AgentConfig,\n InvokeResult,\n LlmProvider,\n MemoryProvider,\n ObservabilityProvider,\n Tool,\n ToolInputSchema,\n ToolDefinition,\n ToolCallRequest,\n ToolResult,\n EventType,\n AgentEvent,\n Role,\n Message,\n ChatOptions,\n Completion,\n CompletionChunk,\n ChatResponse,\n ChatChunk,\n TokenUsage,\n ReasoningAction,\n LLMReasoningResponse,\n MemoryEntry,\n IterationResult,\n ReasoningTrace,\n InvokeOptions,\n} from '@agentic-eng/agent';\n\n// Re-export concrete implementations from their new packages\nexport { FlatFileMemory } from '@agentic-eng/memory';\nexport { ConsoleObserver, NoopObserver } from '@agentic-eng/observability';\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentic-eng/easa",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "EASA — Easy Agent System Architecture: A Minimal TypeScript Framework for Agent Systems.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -43,7 +43,9 @@
|
|
|
43
43
|
"node": ">=18.0.0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@agentic-eng/agent": "0.
|
|
46
|
+
"@agentic-eng/agent": "0.2.4",
|
|
47
|
+
"@agentic-eng/observability": "0.2.4",
|
|
48
|
+
"@agentic-eng/memory": "0.2.4"
|
|
47
49
|
},
|
|
48
50
|
"devDependencies": {
|
|
49
51
|
"tsup": "^8.0.0",
|