@inline-chat/hermes-agent-adapter 0.0.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/package.json ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "@inline-chat/hermes-agent-adapter",
3
+ "version": "0.0.1",
4
+ "description": "Hermes Agent platform adapter for Inline, with a native Python plugin and bundled Inline realtime sidecar.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "keywords": [
8
+ "inline",
9
+ "inline-chat",
10
+ "hermes",
11
+ "hermes-agent",
12
+ "agent",
13
+ "plugin",
14
+ "adapter",
15
+ "realtime"
16
+ ],
17
+ "homepage": "https://github.com/inline-chat/inline/tree/main/packages/hermes-agent#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/inline-chat/inline/issues"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/inline-chat/inline.git",
24
+ "directory": "packages/hermes-agent"
25
+ },
26
+ "files": [
27
+ "LICENSE",
28
+ "README.md",
29
+ "dist/install.d.ts",
30
+ "dist/install.js",
31
+ "plugin/inline/__init__.py",
32
+ "plugin/inline/adapter.py",
33
+ "plugin/inline/cli.py",
34
+ "plugin/inline/plugin.yaml",
35
+ "plugin/inline/tools.py",
36
+ "plugin/inline/sidecar/index.mjs"
37
+ ],
38
+ "bin": {
39
+ "inline-hermes": "dist/install.js"
40
+ },
41
+ "exports": {
42
+ ".": {
43
+ "types": "./dist/install.d.ts",
44
+ "default": "./dist/install.js"
45
+ }
46
+ },
47
+ "engines": {
48
+ "node": ">=20"
49
+ },
50
+ "scripts": {
51
+ "build": "mkdir -p plugin/inline/sidecar && bun build ./src/install.ts --outdir dist --entry-naming '[name].js' --target=node --format=esm --packages=bundle && bun build ./src/sidecar/index.ts --outdir plugin/inline/sidecar --entry-naming 'index.mjs' --target=node --format=esm --packages=bundle && tsc -p tsconfig.json --emitDeclarationOnly",
52
+ "lint": "bunx oxlint --ignore-path ../../.oxlintignore src/install.ts src/sidecar/contract.ts src/sidecar/index.ts tests/adapter-python.test.ts tests/install.test.ts tests/package-artifact.test.ts tests/sidecar-contract.test.ts tests/sidecar-runtime.test.ts vitest.config.ts",
53
+ "pretest": "bun run build && rm -rf coverage",
54
+ "prepack": "bun run build",
55
+ "prepublishOnly": "bun run check",
56
+ "release:preflight": "npm publish --dry-run --access public",
57
+ "typecheck": "tsc -p tsconfig.json --noEmit",
58
+ "test": "vitest run --coverage",
59
+ "check": "bun run typecheck && bun run lint && bun run test"
60
+ },
61
+ "dependencies": {
62
+ "@inline-chat/realtime-sdk": "0.0.11",
63
+ "yaml": "2.9.0"
64
+ },
65
+ "devDependencies": {
66
+ "@types/node": "20.17.19",
67
+ "@vitest/coverage-v8": "4.0.16",
68
+ "typescript": "5.8.3",
69
+ "vitest": "4.0.16"
70
+ },
71
+ "publishConfig": {
72
+ "access": "public"
73
+ },
74
+ "inlineHermes": {
75
+ "pluginId": "inline",
76
+ "pluginPath": "plugin/inline",
77
+ "minHermesVersion": "0.17.0",
78
+ "testedHermesVersion": "0.17.0",
79
+ "testedHermesCommit": "824f2279"
80
+ }
81
+ }
@@ -0,0 +1,4 @@
1
+ """Inline platform plugin for Hermes Agent."""
2
+ from .adapter import register
3
+
4
+ __all__ = ["register"]