@agentic-eng/easa 0.1.0-beta.2 → 0.1.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 EASA Contributors
3
+ Copyright (c) 2026 Lahiru Ratnayaka
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,37 +1,55 @@
1
- # @agentic-eng/easa
1
+ # ⚠️ @agentic-eng/easa — DEPRECATED
2
2
 
3
- > EASA Easy Agent System Architecture: A Minimal TypeScript Framework for Agent Systems.
3
+ > **This package is deprecated and will be removed after 15 April 2026.**
4
+ >
5
+ > Please migrate to [`@agentic-eng/agent`](https://www.npmjs.com/package/@agentic-eng/agent), which contains all the same exports.
4
6
 
5
- This is the umbrella package that re-exports core primitives from all EASA packages. For granular, tree-shakeable imports, use the individual packages directly.
7
+ ---
6
8
 
7
- ## Installation
9
+ ## Migration Guide
10
+
11
+ Replace your dependency:
8
12
 
9
13
  ```bash
10
- npm install @agentic-eng/easa
11
- # or
12
- pnpm add @agentic-eng/easa
14
+ # Remove this package
15
+ npm uninstall @agentic-eng/easa
16
+
17
+ # Install the replacement
18
+ npm install @agentic-eng/agent
13
19
  ```
14
20
 
15
- ## Usage
21
+ Update your imports:
16
22
 
17
- ```typescript
18
- import { Agent } from '@agentic-eng/easa';
23
+ ```diff
24
+ - import { Agent, ToolRegistry } from '@agentic-eng/easa';
25
+ + import { Agent, ToolRegistry } from '@agentic-eng/agent';
19
26
 
20
- const agent = new Agent({
21
- name: 'my-agent',
22
- description: 'An example agent',
23
- });
27
+ - import type { LLMProvider, Tool } from '@agentic-eng/easa';
28
+ + import type { LLMProvider, Tool } from '@agentic-eng/agent';
24
29
  ```
25
30
 
26
- ## Granular Packages
31
+ **No API changes** — all exports are identical. This is a drop-in replacement.
32
+
33
+ ---
34
+
35
+ ## Why?
27
36
 
28
- For finer control, import directly from individual packages:
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 EASA framework. Consolidating to one package simplifies installation, reduces confusion, and streamlines releases.
29
38
 
30
- | Package | Import |
39
+ ## Timeline
40
+
41
+ | Date | Action |
31
42
  | --- | --- |
32
- | [`@agentic-eng/agent`](../agent) | `import { Agent } from "@agentic-eng/agent"` |
43
+ | **Now** | `@agentic-eng/easa` marked as deprecated on npm |
44
+ | **15 April 2026** | Final version — no further updates |
45
+ | **After 15 April 2026** | Package will remain on npm but receive no maintenance |
46
+
47
+ ## Feedback & Contact
48
+
49
+ Questions about migrating? Reach out:
33
50
 
34
- More packages coming soon: `@agentic-eng/providers`, `@agentic-eng/tools`, `@agentic-eng/memory`, `@agentic-eng/mcp`, `@agentic-eng/telemetry`.
51
+ - **Email:** [lahirunimantha@outlook.com](mailto:lahirunimantha@outlook.com)
52
+ - **LinkedIn:** [Lahiru Nimantha](https://www.linkedin.com/in/lahirunimantha/)
35
53
 
36
54
  ## License
37
55
 
package/dist/index.cjs CHANGED
@@ -2,7 +2,11 @@
2
2
 
3
3
  var agent = require('@agentic-eng/agent');
4
4
 
5
-
5
+ // src/index.ts
6
+ var _warn = globalThis.console.warn;
7
+ _warn(
8
+ "\x1B[33m[DEPRECATED]\x1B[0m @agentic-eng/easa is deprecated and will be removed after 15 April 2026. Please migrate to @agentic-eng/agent. See https://www.npmjs.com/package/@agentic-eng/agent"
9
+ );
6
10
 
7
11
  Object.defineProperty(exports, "Agent", {
8
12
  enumerable: true,
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"index.cjs","sourcesContent":[]}
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\nexport {\n Agent,\n FlatFileMemoryProvider,\n ToolRegistry,\n ConsoleEventEmitter,\n NoopEventEmitter,\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 Tool,\n ToolInputSchema,\n ToolDefinition,\n ToolCallRequest,\n ToolResult,\n EventType,\n AgentEvent,\n AgentEventEmitter,\n Role,\n Message,\n ChatOptions,\n ChatResponse,\n ChatChunk,\n TokenUsage,\n ReasoningAction,\n LLMReasoningResponse,\n MemoryEntry,\n IterationResult,\n ReasoningTrace,\n InvokeOptions,\n} from '@agentic-eng/agent';\n"]}
package/dist/index.js CHANGED
@@ -1,3 +1,9 @@
1
1
  export { Agent, AgentConfigError, ConsoleEventEmitter, EasaError, FlatFileMemoryProvider, MaxIterationsError, NoopEventEmitter, ProviderError, ReasoningParseError, ToolExecutionError, ToolRegistry } from '@agentic-eng/agent';
2
+
3
+ // src/index.ts
4
+ var _warn = globalThis.console.warn;
5
+ _warn(
6
+ "\x1B[33m[DEPRECATED]\x1B[0m @agentic-eng/easa is deprecated and will be removed after 15 April 2026. Please migrate to @agentic-eng/agent. See https://www.npmjs.com/package/@agentic-eng/agent"
7
+ );
2
8
  //# sourceMappingURL=index.js.map
3
9
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
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\nexport {\n Agent,\n FlatFileMemoryProvider,\n ToolRegistry,\n ConsoleEventEmitter,\n NoopEventEmitter,\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 Tool,\n ToolInputSchema,\n ToolDefinition,\n ToolCallRequest,\n ToolResult,\n EventType,\n AgentEvent,\n AgentEventEmitter,\n Role,\n Message,\n ChatOptions,\n ChatResponse,\n ChatChunk,\n TokenUsage,\n ReasoningAction,\n LLMReasoningResponse,\n MemoryEntry,\n IterationResult,\n ReasoningTrace,\n InvokeOptions,\n} from '@agentic-eng/agent';\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentic-eng/easa",
3
- "version": "0.1.0-beta.2",
3
+ "version": "0.1.1",
4
4
  "description": "EASA — Easy Agent System Architecture: A Minimal TypeScript Framework for Agent Systems.",
5
5
  "keywords": [
6
6
  "agent",
@@ -43,7 +43,7 @@
43
43
  "node": ">=18.0.0"
44
44
  },
45
45
  "dependencies": {
46
- "@agentic-eng/agent": "0.1.0-beta.2"
46
+ "@agentic-eng/agent": "0.1.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "tsup": "^8.0.0",