@executioncontrolprotocol/extensions 0.10.1 → 0.11.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/README.md +5 -10
- package/dist/index.d.ts +10 -8
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -10
- package/dist/index.js.map +1 -1
- package/package.json +13 -14
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# @executioncontrolprotocol/extensions
|
|
2
2
|
|
|
3
3
|
Optional convenience bundle that registers the **host-agnostic, dependency-light**
|
|
4
|
-
first-party extensions in one call.
|
|
4
|
+
first-party protocol/platform extensions in one call.
|
|
5
5
|
|
|
6
6
|
```ts
|
|
7
7
|
import { registerAllExtensions } from "@executioncontrolprotocol/extensions"
|
|
@@ -15,7 +15,6 @@ await registerAllExtensions()
|
|
|
15
15
|
| --------- | ------- |
|
|
16
16
|
| `@executioncontrolprotocol/memory` | Memory capabilities + lifecycle hooks |
|
|
17
17
|
| `@executioncontrolprotocol/storage` | Key/value storage capabilities |
|
|
18
|
-
| `@executioncontrolprotocol/slack` | Slack send capability |
|
|
19
18
|
| `@executioncontrolprotocol/telemetry` | Lifecycle telemetry hooks |
|
|
20
19
|
| `@executioncontrolprotocol/openai` | OpenAI model provider |
|
|
21
20
|
| `@executioncontrolprotocol/ollama` | Local Ollama model provider |
|
|
@@ -27,18 +26,14 @@ The exact set is exported as `BUNDLED_EXTENSION_IDS`.
|
|
|
27
26
|
|
|
28
27
|
## Intentionally excluded
|
|
29
28
|
|
|
30
|
-
These are **not** registered by `registerAllExtensions()` because they are
|
|
31
|
-
host-specific or require credentials. Register them explicitly when needed:
|
|
32
|
-
|
|
33
29
|
| Extension | Why excluded |
|
|
34
30
|
| --------- | ------------ |
|
|
35
31
|
| `@executioncontrolprotocol/chrome-ai` | Browser-only (Chrome on-device `LanguageModel` API) |
|
|
36
32
|
| `@executioncontrolprotocol/claude` | Requires Anthropic provider configuration/credentials |
|
|
37
33
|
|
|
34
|
+
**Vendor extensions** are published from the sibling [extensions](https://github.com/executioncontrolprotocol/extensions) repo — see that repo’s [package list](https://github.com/executioncontrolprotocol/extensions#packages). Do not maintain a vendor inventory in this README.
|
|
35
|
+
|
|
38
36
|
```ts
|
|
39
|
-
import {
|
|
40
|
-
await
|
|
37
|
+
import { registerFalExtension } from "@executioncontrolprotocol/fal"
|
|
38
|
+
await registerFalExtension()
|
|
41
39
|
```
|
|
42
|
-
|
|
43
|
-
This mirrors the spec guidance that the convenience bundle should avoid forcing
|
|
44
|
-
heavy or host-specific transitive dependencies.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,25 +1,27 @@
|
|
|
1
1
|
export { registerMemoryExtension, memoryExtension } from "@executioncontrolprotocol/extension-memory";
|
|
2
2
|
export { registerOpenaiExtension, openaiExtension } from "@executioncontrolprotocol/extension-openai";
|
|
3
3
|
export { registerOllamaExtension, ollamaExtension } from "@executioncontrolprotocol/extension-ollama";
|
|
4
|
-
export { registerSlackExtension, slackExtension } from "@executioncontrolprotocol/extension-slack";
|
|
5
4
|
export { registerStorageExtension, storageExtension } from "@executioncontrolprotocol/extension-storage";
|
|
6
5
|
export { registerTelemetryExtension, telemetryExtension } from "@executioncontrolprotocol/extension-telemetry";
|
|
7
6
|
export { registerFormatToonExtension, formatToonExtension } from "@executioncontrolprotocol/format-toon";
|
|
8
7
|
export { registerFormatEqlExtension, formatEqlExtension } from "@executioncontrolprotocol/format-eql";
|
|
9
8
|
export { registerFormatMermaidExtension, formatMermaidExtension } from "@executioncontrolprotocol/format-mermaid";
|
|
10
9
|
/** Namespaced ids registered by {@link registerAllExtensions}. */
|
|
11
|
-
export declare const BUNDLED_EXTENSION_IDS: readonly ["@executioncontrolprotocol/memory", "@executioncontrolprotocol/openai", "@executioncontrolprotocol/ollama", "@executioncontrolprotocol/
|
|
10
|
+
export declare const BUNDLED_EXTENSION_IDS: readonly ["@executioncontrolprotocol/memory", "@executioncontrolprotocol/openai", "@executioncontrolprotocol/ollama", "@executioncontrolprotocol/storage", "@executioncontrolprotocol/telemetry", "@executioncontrolprotocol/format-toon", "@executioncontrolprotocol/format-eql", "@executioncontrolprotocol/format-mermaid"];
|
|
12
11
|
/**
|
|
13
|
-
* Register all bundled first-party extensions on the global registry.
|
|
12
|
+
* Register all bundled first-party protocol/platform extensions on the global registry.
|
|
14
13
|
*
|
|
15
|
-
* This bundle is host-agnostic and dependency-light: it includes
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
* extensions used by harness encode/decode (toon, eql, mermaid).
|
|
14
|
+
* This bundle is host-agnostic and dependency-light: it includes memory, storage,
|
|
15
|
+
* telemetry, local/remote model providers that do not pull heavy SDKs (openai, ollama),
|
|
16
|
+
* and format extensions used by harness encode/decode (toon, eql, mermaid).
|
|
19
17
|
*
|
|
20
|
-
*
|
|
18
|
+
* Vendor integrations (fal, slack, image-sharp, adobe) live in the
|
|
19
|
+
* `extensions` monorepo — install and register them explicitly.
|
|
20
|
+
*
|
|
21
|
+
* Intentionally excluded from this bundle:
|
|
21
22
|
* - `@executioncontrolprotocol/chrome-ai` — browser-only (Chrome on-device `LanguageModel` API).
|
|
22
23
|
* - `@executioncontrolprotocol/claude` — requires the Anthropic provider configuration/credentials.
|
|
24
|
+
* - Vendor packages (`fal`, `slack`, `image-sharp`, `adobe`) — published from the extensions repo.
|
|
23
25
|
*
|
|
24
26
|
* @category Extensions
|
|
25
27
|
*/
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AACrG,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AACrG,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AACrG,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AACrG,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AACrG,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AACrG,OAAO,EAAE,wBAAwB,EAAE,gBAAgB,EAAE,MAAM,6CAA6C,CAAA;AACxG,OAAO,EAAE,0BAA0B,EAAE,kBAAkB,EAAE,MAAM,+CAA+C,CAAA;AAC9G,OAAO,EAAE,2BAA2B,EAAE,mBAAmB,EAAE,MAAM,uCAAuC,CAAA;AACxG,OAAO,EAAE,0BAA0B,EAAE,kBAAkB,EAAE,MAAM,sCAAsC,CAAA;AACrG,OAAO,EAAE,8BAA8B,EAAE,sBAAsB,EAAE,MAAM,0CAA0C,CAAA;AAWjH,kEAAkE;AAClE,eAAO,MAAM,qBAAqB,gUASxB,CAAA;AAEV;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAsB,qBAAqB,IAAI,OAAO,CAAC,IAAI,CAAC,CAS3D"}
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export { registerMemoryExtension, memoryExtension } from "@executioncontrolprotocol/extension-memory";
|
|
2
2
|
export { registerOpenaiExtension, openaiExtension } from "@executioncontrolprotocol/extension-openai";
|
|
3
3
|
export { registerOllamaExtension, ollamaExtension } from "@executioncontrolprotocol/extension-ollama";
|
|
4
|
-
export { registerSlackExtension, slackExtension } from "@executioncontrolprotocol/extension-slack";
|
|
5
4
|
export { registerStorageExtension, storageExtension } from "@executioncontrolprotocol/extension-storage";
|
|
6
5
|
export { registerTelemetryExtension, telemetryExtension } from "@executioncontrolprotocol/extension-telemetry";
|
|
7
6
|
export { registerFormatToonExtension, formatToonExtension } from "@executioncontrolprotocol/format-toon";
|
|
@@ -10,7 +9,6 @@ export { registerFormatMermaidExtension, formatMermaidExtension } from "@executi
|
|
|
10
9
|
import { registerMemoryExtension } from "@executioncontrolprotocol/extension-memory";
|
|
11
10
|
import { registerOpenaiExtension } from "@executioncontrolprotocol/extension-openai";
|
|
12
11
|
import { registerOllamaExtension } from "@executioncontrolprotocol/extension-ollama";
|
|
13
|
-
import { registerSlackExtension } from "@executioncontrolprotocol/extension-slack";
|
|
14
12
|
import { registerStorageExtension } from "@executioncontrolprotocol/extension-storage";
|
|
15
13
|
import { registerTelemetryExtension } from "@executioncontrolprotocol/extension-telemetry";
|
|
16
14
|
import { registerFormatToonExtension } from "@executioncontrolprotocol/format-toon";
|
|
@@ -21,7 +19,6 @@ export const BUNDLED_EXTENSION_IDS = [
|
|
|
21
19
|
"@executioncontrolprotocol/memory",
|
|
22
20
|
"@executioncontrolprotocol/openai",
|
|
23
21
|
"@executioncontrolprotocol/ollama",
|
|
24
|
-
"@executioncontrolprotocol/slack",
|
|
25
22
|
"@executioncontrolprotocol/storage",
|
|
26
23
|
"@executioncontrolprotocol/telemetry",
|
|
27
24
|
"@executioncontrolprotocol/format-toon",
|
|
@@ -29,16 +26,19 @@ export const BUNDLED_EXTENSION_IDS = [
|
|
|
29
26
|
"@executioncontrolprotocol/format-mermaid",
|
|
30
27
|
];
|
|
31
28
|
/**
|
|
32
|
-
* Register all bundled first-party extensions on the global registry.
|
|
29
|
+
* Register all bundled first-party protocol/platform extensions on the global registry.
|
|
33
30
|
*
|
|
34
|
-
* This bundle is host-agnostic and dependency-light: it includes
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
* extensions used by harness encode/decode (toon, eql, mermaid).
|
|
31
|
+
* This bundle is host-agnostic and dependency-light: it includes memory, storage,
|
|
32
|
+
* telemetry, local/remote model providers that do not pull heavy SDKs (openai, ollama),
|
|
33
|
+
* and format extensions used by harness encode/decode (toon, eql, mermaid).
|
|
38
34
|
*
|
|
39
|
-
*
|
|
35
|
+
* Vendor integrations (fal, slack, image-sharp, adobe) live in the
|
|
36
|
+
* `extensions` monorepo — install and register them explicitly.
|
|
37
|
+
*
|
|
38
|
+
* Intentionally excluded from this bundle:
|
|
40
39
|
* - `@executioncontrolprotocol/chrome-ai` — browser-only (Chrome on-device `LanguageModel` API).
|
|
41
40
|
* - `@executioncontrolprotocol/claude` — requires the Anthropic provider configuration/credentials.
|
|
41
|
+
* - Vendor packages (`fal`, `slack`, `image-sharp`, `adobe`) — published from the extensions repo.
|
|
42
42
|
*
|
|
43
43
|
* @category Extensions
|
|
44
44
|
*/
|
|
@@ -46,7 +46,6 @@ export async function registerAllExtensions() {
|
|
|
46
46
|
await registerMemoryExtension();
|
|
47
47
|
await registerOpenaiExtension();
|
|
48
48
|
await registerOllamaExtension();
|
|
49
|
-
await registerSlackExtension();
|
|
50
49
|
await registerStorageExtension();
|
|
51
50
|
await registerTelemetryExtension();
|
|
52
51
|
await registerFormatToonExtension();
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AACrG,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AACrG,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AACrG,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AACrG,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AACrG,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAA;AACrG,OAAO,EAAE,wBAAwB,EAAE,gBAAgB,EAAE,MAAM,6CAA6C,CAAA;AACxG,OAAO,EAAE,0BAA0B,EAAE,kBAAkB,EAAE,MAAM,+CAA+C,CAAA;AAC9G,OAAO,EAAE,2BAA2B,EAAE,mBAAmB,EAAE,MAAM,uCAAuC,CAAA;AACxG,OAAO,EAAE,0BAA0B,EAAE,kBAAkB,EAAE,MAAM,sCAAsC,CAAA;AACrG,OAAO,EAAE,8BAA8B,EAAE,sBAAsB,EAAE,MAAM,0CAA0C,CAAA;AAEjH,OAAO,EAAE,uBAAuB,EAAE,MAAM,4CAA4C,CAAA;AACpF,OAAO,EAAE,uBAAuB,EAAE,MAAM,4CAA4C,CAAA;AACpF,OAAO,EAAE,uBAAuB,EAAE,MAAM,4CAA4C,CAAA;AACpF,OAAO,EAAE,wBAAwB,EAAE,MAAM,6CAA6C,CAAA;AACtF,OAAO,EAAE,0BAA0B,EAAE,MAAM,+CAA+C,CAAA;AAC1F,OAAO,EAAE,2BAA2B,EAAE,MAAM,uCAAuC,CAAA;AACnF,OAAO,EAAE,0BAA0B,EAAE,MAAM,sCAAsC,CAAA;AACjF,OAAO,EAAE,8BAA8B,EAAE,MAAM,0CAA0C,CAAA;AAEzF,kEAAkE;AAClE,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,kCAAkC;IAClC,kCAAkC;IAClC,kCAAkC;IAClC,mCAAmC;IACnC,qCAAqC;IACrC,uCAAuC;IACvC,sCAAsC;IACtC,0CAA0C;CAClC,CAAA;AAEV;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,CAAC,KAAK,UAAU,qBAAqB;IACzC,MAAM,uBAAuB,EAAE,CAAA;IAC/B,MAAM,uBAAuB,EAAE,CAAA;IAC/B,MAAM,uBAAuB,EAAE,CAAA;IAC/B,MAAM,wBAAwB,EAAE,CAAA;IAChC,MAAM,0BAA0B,EAAE,CAAA;IAClC,MAAM,2BAA2B,EAAE,CAAA;IACnC,MAAM,0BAA0B,EAAE,CAAA;IAClC,MAAM,8BAA8B,EAAE,CAAA;AACxC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@executioncontrolprotocol/extensions",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "Aggregator that registers first-party ECP extensions",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -20,24 +20,23 @@
|
|
|
20
20
|
"build": "tsc -b"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@executioncontrolprotocol/extension-memory": "0.
|
|
24
|
-
"@executioncontrolprotocol/extension-ollama": "0.
|
|
25
|
-
"@executioncontrolprotocol/extension-openai": "0.
|
|
26
|
-
"@executioncontrolprotocol/extension-
|
|
27
|
-
"@executioncontrolprotocol/extension-
|
|
28
|
-
"@executioncontrolprotocol/
|
|
29
|
-
"@executioncontrolprotocol/format-
|
|
30
|
-
"@executioncontrolprotocol/format-
|
|
31
|
-
"@executioncontrolprotocol/format-toon": "0.10.1"
|
|
23
|
+
"@executioncontrolprotocol/extension-memory": "0.11.1",
|
|
24
|
+
"@executioncontrolprotocol/extension-ollama": "0.11.1",
|
|
25
|
+
"@executioncontrolprotocol/extension-openai": "0.11.1",
|
|
26
|
+
"@executioncontrolprotocol/extension-storage": "0.11.1",
|
|
27
|
+
"@executioncontrolprotocol/extension-telemetry": "0.11.1",
|
|
28
|
+
"@executioncontrolprotocol/format-eql": "0.11.1",
|
|
29
|
+
"@executioncontrolprotocol/format-mermaid": "0.11.1",
|
|
30
|
+
"@executioncontrolprotocol/format-toon": "0.11.1"
|
|
32
31
|
},
|
|
33
32
|
"peerDependencies": {
|
|
34
|
-
"@executioncontrolprotocol/core": "^0.
|
|
35
|
-
"@executioncontrolprotocol/types": "^0.
|
|
33
|
+
"@executioncontrolprotocol/core": "^0.11.1",
|
|
34
|
+
"@executioncontrolprotocol/types": "^0.11.1",
|
|
36
35
|
"zod": "^3.24.0"
|
|
37
36
|
},
|
|
38
37
|
"devDependencies": {
|
|
39
|
-
"@executioncontrolprotocol/core": "0.
|
|
40
|
-
"@executioncontrolprotocol/types": "0.
|
|
38
|
+
"@executioncontrolprotocol/core": "0.11.1",
|
|
39
|
+
"@executioncontrolprotocol/types": "0.11.1",
|
|
41
40
|
"typescript": "^5.7.0",
|
|
42
41
|
"zod": "^3.24.0"
|
|
43
42
|
}
|