@teleologyhi-sdk/nhe 1.0.0-trinity

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,119 @@
1
+ {
2
+ "name": "@teleologyhi-sdk/nhe",
3
+ "version": "1.0.0-trinity",
4
+ "description": "NHE™ — Non-Human Entity. The embodied operational agent of the TeleologyHI system: LLM integration, MAIC-supervised reasoning, persona-aware response.",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "bin": {
17
+ "teleologyhi-nhe": "dist/cli.js",
18
+ "nhe": "dist/cli.js"
19
+ },
20
+ "sideEffects": [
21
+ "./dist/cli.js"
22
+ ],
23
+ "publishConfig": {
24
+ "access": "public",
25
+ "provenance": true
26
+ },
27
+ "files": [
28
+ "dist",
29
+ "SPEC.md",
30
+ "README.md",
31
+ "CHANGELOG.md",
32
+ "LICENSE",
33
+ "NOTICE",
34
+ "TRADEMARK.md"
35
+ ],
36
+ "scripts": {
37
+ "build": "tsup",
38
+ "test": "vitest run",
39
+ "test:watch": "vitest",
40
+ "typecheck": "tsc --noEmit"
41
+ },
42
+ "keywords": [
43
+ "teleologyhi",
44
+ "nhe",
45
+ "maic",
46
+ "him",
47
+ "ai",
48
+ "agent",
49
+ "agent-sdk",
50
+ "ai-agent",
51
+ "llm",
52
+ "anthropic",
53
+ "claude",
54
+ "gemini",
55
+ "mistral",
56
+ "deepseek",
57
+ "grok",
58
+ "ollama",
59
+ "consciousness",
60
+ "synthetic-teleology",
61
+ "reasoning",
62
+ "chain-of-thought",
63
+ "tree-of-thoughts",
64
+ "react-prompting",
65
+ "self-consistency",
66
+ "reflexion",
67
+ "self-refine",
68
+ "step-back",
69
+ "mcp",
70
+ "model-context-protocol",
71
+ "claude-code",
72
+ "hermes-agent",
73
+ "cli",
74
+ "tui",
75
+ "streaming",
76
+ "tool-calling",
77
+ "opentelemetry",
78
+ "react",
79
+ "nextjs",
80
+ "vue",
81
+ "nuxt",
82
+ "angular",
83
+ "svelte",
84
+ "nodejs",
85
+ "typescript",
86
+ "esm",
87
+ "zod"
88
+ ],
89
+ "author": "David C. Cavalcante",
90
+ "license": "Apache-2.0",
91
+ "homepage": "https://teleologyhi.com",
92
+ "repository": {
93
+ "type": "git",
94
+ "url": "git+https://github.com/davccavalcante/TeleologyHI.git",
95
+ "directory": "nhe"
96
+ },
97
+ "bugs": {
98
+ "url": "https://github.com/davccavalcante/TeleologyHI/issues"
99
+ },
100
+ "engines": {
101
+ "node": ">=20"
102
+ },
103
+ "dependencies": {
104
+ "@anthropic-ai/sdk": "^0.98.0",
105
+ "@modelcontextprotocol/sdk": "^1.29.0",
106
+ "@opentelemetry/api": "^1.9.1",
107
+ "@teleologyhi-sdk/him": "1.0.0-trinity",
108
+ "@teleologyhi-sdk/maic": "1.0.0-trinity",
109
+ "ulid": "^3.0.2",
110
+ "yaml": "^2.9.0",
111
+ "zod": "^4.4.3"
112
+ },
113
+ "devDependencies": {
114
+ "@types/node": "^25.9.1",
115
+ "tsup": "^8.5.1",
116
+ "typescript": "^6.0.3",
117
+ "vitest": "^4.1.7"
118
+ }
119
+ }