@inkeep/agents-cli 0.0.0-dev-20250911212652 → 0.0.0-dev-20250911223509

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.
@@ -0,0 +1,40 @@
1
+ <!--
2
+ AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
3
+ Source: ./SUPPLEMENTAL_TERMS.md
4
+ This file is automatically copied from the root SUPPLEMENTAL_TERMS.md during build.
5
+ Any changes should be made to the root SUPPLEMENTAL_TERMS.md file.
6
+ -->
7
+
8
+ # Inkeep SDK – Elastic License 2.0 with Supplemental Terms
9
+
10
+ The Inkeep [SDK] (the "Software") is licensed under the Elastic License 2.0 ("ELv2"), available at [https://www.elastic.co/licensing/elastic-license](https://www.elastic.co/licensing/elastic-license), subject to the supplemental terms below. By using the Software, you, your company, and your licensees agree to both ELv2 and these Supplemental Terms – for purposes of these Supplemental Terms, references to "you" have the same meaning as in ELv2 and include your company and contractors acting on your behalf. In the event of conflict, these Supplemental Terms control.
11
+
12
+ Any copy or redistribution of the Software must include both the ELv2 license reference and these Supplemental Terms.
13
+
14
+ ## 1. Restrictions
15
+
16
+ ### 1.1
17
+ You may not use the Software, directly or indirectly, to offer, enable, operate, or provide any Agent Builder.
18
+
19
+ ### 1.2
20
+ You may not repackage, rebrand, or otherwise expose the Software's agent-creation or orchestration functionality for third-party use, including in specialized or verticalized offerings that present substantially similar functionality to the Software.
21
+
22
+ ### 1.3
23
+ For clarity, the foregoing restrictions do not prohibit your use of the Software as Embedded Assistants or Professional Services, provided neither allow third parties to create, configure, train, orchestrate, deploy, or manage their own agents or agent workflows.
24
+
25
+ ## 2. Definitions
26
+
27
+ ### 2.1 Inkeep
28
+ **"Inkeep"** means Inkeep, Inc., a Delaware corporation with principal offices at 169 Madison Ave, Ste 2544, New York, NY, 10016, the licensor (as defined in ELv2) of the Software.
29
+
30
+ ### 2.2 Agent Builder
31
+ **"Agent Builder"** means any hosted or on-premise product, platform, UI or API that allows third parties (e.g., customers, developers, or community users other than your personnel) to create, configure, compose, train, orchestrate, deploy, or manage their own Agents using the Software, or that otherwise exposes a substantial set of the Agent-creation and orchestration functionality of the Software.
32
+
33
+ ### 2.3 Agents
34
+ **"Agents"** means autonomous, semi-autonomous, or automated systems — including assistants, copilots, workflows, orchestrations, or other systems powered by or incorporating artificial intelligence, machine learning, large language models, or related technologies.
35
+
36
+ ### 2.4 Embedded Assistant
37
+ **"Embedded Assistant"** means embedding the Software in your own products or services to power a specific assistant/copilot/agent experience for you or your end users (e.g., a support bot in your app or an internal helpdesk agent), where end users do not receive access to any substantial set of the Software's agent-creation or orchestration features.
38
+
39
+ ### 2.5 Professional Services
40
+ **"Professional Services"** means using the Software to deliver a bespoke solution to a single client where only your personnel operate the Software, the client receives access solely to the resulting assistant within the client's environment and not to the agent-creation/orchestration features of the Software, and no multi-tenant or self-service builder is provided.
package/dist/index.js CHANGED
@@ -14702,6 +14702,108 @@ var require_ajv2 = __commonJS({
14702
14702
  }
14703
14703
  });
14704
14704
 
14705
+ // ../packages/agents-core/package.json
14706
+ var require_package = __commonJS({
14707
+ "../packages/agents-core/package.json"(exports, module) {
14708
+ module.exports = {
14709
+ name: "@inkeep/agents-core",
14710
+ version: "0.1.4",
14711
+ description: "Core database schema, types, and validation schemas for Inkeep Agent Framework",
14712
+ type: "module",
14713
+ license: "SEE LICENSE IN LICENSE.md",
14714
+ main: "./src/index.ts",
14715
+ exports: {
14716
+ ".": "./src/index.ts",
14717
+ "./schema": "./src/db/schema.ts",
14718
+ "./types": "./src/types/index.ts",
14719
+ "./validation": "./src/validation/index.ts",
14720
+ "./client-exports": "./src/client-exports.ts"
14721
+ },
14722
+ scripts: {
14723
+ build: "tsup",
14724
+ prepare: "pnpm build",
14725
+ test: "vitest --run",
14726
+ "test:unit": "vitest --run src/__tests__ --exclude src/__tests__/integration/**",
14727
+ "test:integration": "vitest --run src/__tests__/integration/",
14728
+ "test:coverage": "vitest --run --coverage",
14729
+ "test:watch": "vitest --watch",
14730
+ lint: "biome lint src",
14731
+ "lint:fix": "biome check --write src",
14732
+ format: "biome format --write src",
14733
+ "format:check": "biome format src",
14734
+ typecheck: "tsc --noEmit",
14735
+ "db:generate": "drizzle-kit generate",
14736
+ "db:push": "drizzle-kit push",
14737
+ "db:migrate": "drizzle-kit migrate",
14738
+ "db:clean": "tsx src/db/clean.ts",
14739
+ "db:studio": "drizzle-kit studio",
14740
+ "db:check": "drizzle-kit check",
14741
+ "db:reset-schema": "rm -rf drizzle/* && echo 'All migration files removed, generating new schema' && drizzle-kit generate",
14742
+ prepack: "clean-package",
14743
+ postpack: "clean-package restore"
14744
+ },
14745
+ "clean-package": "./clean-package.config.json",
14746
+ dependencies: {
14747
+ "@hono/node-server": "^1.14.3",
14748
+ "@hono/zod-openapi": "^1.0.2",
14749
+ "@libsql/client": "^0.15.7",
14750
+ "@modelcontextprotocol/sdk": "^1.17.2",
14751
+ "@nangohq/node": "^0.66.0",
14752
+ "@nangohq/types": "^0.66.0",
14753
+ "@opentelemetry/api": "^1.9.0",
14754
+ "@opentelemetry/auto-instrumentations-node": "^0.62.0",
14755
+ "@opentelemetry/baggage-span-processor": "^0.4.0",
14756
+ "@opentelemetry/exporter-jaeger": "^2.0.1",
14757
+ "@opentelemetry/exporter-trace-otlp-proto": "^0.203.0",
14758
+ "@opentelemetry/sdk-metrics": "^2.0.1",
14759
+ "@opentelemetry/sdk-node": "^0.203.0",
14760
+ "@opentelemetry/sdk-trace-node": "^2.0.1",
14761
+ "@opentelemetry/semantic-conventions": "^1.34.0",
14762
+ ai: "5.0.11",
14763
+ ajv: "^8.17.1",
14764
+ "ajv-formats": "^3.0.1",
14765
+ dotenv: "^17.2.1",
14766
+ "drizzle-orm": "^0.44.4",
14767
+ "drizzle-zod": "^0.8.2",
14768
+ "exit-hook": "^4.0.0",
14769
+ hono: "^4.8.10",
14770
+ jmespath: "^0.16.0",
14771
+ keytar: "^7.9.0",
14772
+ nanoid: "^5.0.9",
14773
+ "ts-pattern": "^5.7.1",
14774
+ zod: "^4.1.5"
14775
+ },
14776
+ devDependencies: {
14777
+ "@types/jmespath": "^0.15.2",
14778
+ "@types/node": "^20.11.24",
14779
+ "@vitest/coverage-v8": "^2.0.0",
14780
+ "clean-package": "^2.2.0",
14781
+ "drizzle-kit": "^0.31.4",
14782
+ typescript: "^5.9.2",
14783
+ vitest: "^3.1.4"
14784
+ },
14785
+ engines: {
14786
+ node: ">=22.0.0"
14787
+ },
14788
+ publishConfig: {
14789
+ access: "restricted",
14790
+ registry: "https://registry.npmjs.org/"
14791
+ },
14792
+ files: [
14793
+ "dist",
14794
+ "README.md",
14795
+ "LICENSE.md",
14796
+ "SUPPLEMENTAL_TERMS.md"
14797
+ ],
14798
+ repository: {
14799
+ type: "git",
14800
+ url: "git+https://github.com/inkeep/agents.git",
14801
+ directory: "packages/agents-core"
14802
+ }
14803
+ };
14804
+ }
14805
+ });
14806
+
14705
14807
  // src/commands/chat-enhanced.ts
14706
14808
  var chat_enhanced_exports = {};
14707
14809
  __export(chat_enhanced_exports, {
@@ -15869,8 +15971,8 @@ import ora from "ora";
15869
15971
  var require2 = createRequire(import.meta.url);
15870
15972
  function resolveWebRuntime() {
15871
15973
  try {
15872
- const pkg = require2.resolve("@inkeep/agents-manage-ui/package.json");
15873
- const root = dirname(pkg);
15974
+ const pkg2 = require2.resolve("@inkeep/agents-manage-ui/package.json");
15975
+ const root = dirname(pkg2);
15874
15976
  return join2(root, ".next/standalone/agents-manage-ui");
15875
15977
  } catch (err) {
15876
15978
  throw new Error(`Could not find @inkeep/agents-manage-ui package. ${err}`);
@@ -37959,106 +38061,8 @@ function getTracer(serviceName, serviceVersion) {
37959
38061
 
37960
38062
  // ../packages/agents-core/src/utils/tracer.ts
37961
38063
  init_esm_shims();
37962
-
37963
- // ../packages/agents-core/package.json
37964
- var package_default = {
37965
- name: "@inkeep/agents-core",
37966
- version: "0.1.4",
37967
- description: "Core database schema, types, and validation schemas for Inkeep Agent Framework",
37968
- type: "module",
37969
- license: "SEE LICENSE IN LICENSE.md",
37970
- main: "./src/index.ts",
37971
- exports: {
37972
- ".": "./src/index.ts",
37973
- "./schema": "./src/db/schema.ts",
37974
- "./types": "./src/types/index.ts",
37975
- "./validation": "./src/validation/index.ts",
37976
- "./client-exports": "./src/client-exports.ts"
37977
- },
37978
- scripts: {
37979
- build: "tsup",
37980
- prepare: "pnpm build",
37981
- test: "vitest --run",
37982
- "test:unit": "vitest --run src/__tests__ --exclude src/__tests__/integration/**",
37983
- "test:integration": "vitest --run src/__tests__/integration/",
37984
- "test:coverage": "vitest --run --coverage",
37985
- "test:watch": "vitest --watch",
37986
- lint: "biome lint src",
37987
- "lint:fix": "biome check --write src",
37988
- format: "biome format --write src",
37989
- "format:check": "biome format src",
37990
- typecheck: "tsc --noEmit",
37991
- "db:generate": "drizzle-kit generate",
37992
- "db:push": "drizzle-kit push",
37993
- "db:migrate": "drizzle-kit migrate",
37994
- "db:clean": "tsx src/db/clean.ts",
37995
- "db:studio": "drizzle-kit studio",
37996
- "db:check": "drizzle-kit check",
37997
- "db:reset-schema": "rm -rf drizzle/* && echo 'All migration files removed, generating new schema' && drizzle-kit generate",
37998
- prepack: "clean-package",
37999
- postpack: "clean-package restore"
38000
- },
38001
- "clean-package": "./clean-package.config.json",
38002
- dependencies: {
38003
- "@hono/node-server": "^1.14.3",
38004
- "@hono/zod-openapi": "^1.0.2",
38005
- "@libsql/client": "^0.15.7",
38006
- "@modelcontextprotocol/sdk": "^1.17.2",
38007
- "@nangohq/node": "^0.66.0",
38008
- "@nangohq/types": "^0.66.0",
38009
- "@opentelemetry/api": "^1.9.0",
38010
- "@opentelemetry/auto-instrumentations-node": "^0.62.0",
38011
- "@opentelemetry/baggage-span-processor": "^0.4.0",
38012
- "@opentelemetry/exporter-jaeger": "^2.0.1",
38013
- "@opentelemetry/exporter-trace-otlp-proto": "^0.203.0",
38014
- "@opentelemetry/sdk-metrics": "^2.0.1",
38015
- "@opentelemetry/sdk-node": "^0.203.0",
38016
- "@opentelemetry/sdk-trace-node": "^2.0.1",
38017
- "@opentelemetry/semantic-conventions": "^1.34.0",
38018
- ai: "5.0.11",
38019
- ajv: "^8.17.1",
38020
- "ajv-formats": "^3.0.1",
38021
- dotenv: "^17.2.1",
38022
- "drizzle-orm": "^0.44.4",
38023
- "drizzle-zod": "^0.8.2",
38024
- "exit-hook": "^4.0.0",
38025
- hono: "^4.8.10",
38026
- jmespath: "^0.16.0",
38027
- keytar: "^7.9.0",
38028
- nanoid: "^5.0.9",
38029
- "ts-pattern": "^5.7.1",
38030
- zod: "^4.1.5"
38031
- },
38032
- devDependencies: {
38033
- "@types/jmespath": "^0.15.2",
38034
- "@types/node": "^20.11.24",
38035
- "@vitest/coverage-v8": "^2.0.0",
38036
- "clean-package": "^2.2.0",
38037
- "drizzle-kit": "^0.31.4",
38038
- typescript: "^5.9.2",
38039
- vitest: "^3.1.4"
38040
- },
38041
- engines: {
38042
- node: ">=22.0.0"
38043
- },
38044
- publishConfig: {
38045
- access: "restricted",
38046
- registry: "https://registry.npmjs.org/"
38047
- },
38048
- files: [
38049
- "dist",
38050
- "README.md",
38051
- "LICENSE.md"
38052
- ],
38053
- repository: {
38054
- type: "git",
38055
- url: "git+https://github.com/inkeep/agents.git",
38056
- directory: "packages/agents-core"
38057
- }
38058
- };
38059
-
38060
- // ../packages/agents-core/src/utils/tracer.ts
38061
- var tracer = getTracer("agents-core", package_default.version);
38064
+ var pkg = require_package();
38065
+ var tracer = getTracer("agents-core", pkg.version);
38062
38066
 
38063
38067
  // ../packages/agents-core/src/context/contextCache.ts
38064
38068
  init_esm_shims();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-cli",
3
- "version": "0.0.0-dev-20250911212652",
3
+ "version": "0.0.0-dev-20250911223509",
4
4
  "description": "Inkeep CLI tool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -42,8 +42,8 @@
42
42
  "recast": "^0.23.0",
43
43
  "ts-morph": "^26.0.0",
44
44
  "tsx": "^4.20.5",
45
- "@inkeep/agents-core": "^0.0.0-dev-20250911212652",
46
- "@inkeep/agents-manage-ui": "^0.0.0-dev-20250911212652"
45
+ "@inkeep/agents-core": "^0.0.0-dev-20250911223509",
46
+ "@inkeep/agents-manage-ui": "^0.0.0-dev-20250911223509"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/fs-extra": "^11.0.4",
@@ -64,7 +64,8 @@
64
64
  "files": [
65
65
  "dist",
66
66
  "README.md",
67
- "LICENSE.md"
67
+ "LICENSE.md",
68
+ "SUPPLEMENTAL_TERMS.md"
68
69
  ],
69
70
  "repository": {
70
71
  "type": "git",