@rivus/agent 0.1.0

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,112 @@
1
+ {
2
+ "name": "@rivus/agent",
3
+ "version": "0.1.0",
4
+ "description": "A local agent daemon core built around a usable agent harness and domain events.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "keywords": [
8
+ "agent",
9
+ "effect",
10
+ "feishu",
11
+ "lark",
12
+ "multi-agent",
13
+ "typescript"
14
+ ],
15
+ "main": "./dist/index.js",
16
+ "types": "./dist/index.d.ts",
17
+ "bin": {
18
+ "rivus": "dist/cli.js"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/PerfectPan/rivus-agent.git"
23
+ },
24
+ "homepage": "https://github.com/PerfectPan/rivus-agent#readme",
25
+ "bugs": {
26
+ "url": "https://github.com/PerfectPan/rivus-agent/issues"
27
+ },
28
+ "exports": {
29
+ ".": {
30
+ "types": "./dist/index.d.ts",
31
+ "import": "./dist/index.js"
32
+ },
33
+ "./testing": {
34
+ "types": "./dist/testing/index.d.ts",
35
+ "import": "./dist/testing/index.js"
36
+ }
37
+ },
38
+ "files": [
39
+ "dist",
40
+ "examples/*.mjs",
41
+ "examples/*.bootstrap.ts",
42
+ "examples/*.json",
43
+ "README.md",
44
+ "LICENSE"
45
+ ],
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "scripts": {
50
+ "audit": "npm audit --audit-level=high",
51
+ "build": "vp pack",
52
+ "e2e:langfuse-drive": "vp pack && node --env-file=.env.local examples/langfuse-drive-e2e.mjs",
53
+ "format": "vp fmt",
54
+ "format:check": "vp fmt --check",
55
+ "lint": "vp lint",
56
+ "lint:fix": "vp lint --fix",
57
+ "package:check": "node scripts/check-npm-package.mjs",
58
+ "prepublishOnly": "npm run check",
59
+ "release:check": "node scripts/check-npm-release.mjs",
60
+ "test": "vp test",
61
+ "test:coverage": "vp test --coverage",
62
+ "test:watch": "vp test watch",
63
+ "typecheck": "vp check --no-fmt --no-lint",
64
+ "check": "vp check && vp test --coverage && vp run duplicates && vp pack && vp run package:check && vp run audit && ./scripts/check-repository.sh",
65
+ "duplicates": "jscpd src examples --min-lines 6 --min-tokens 40 --threshold 0 --reporters console --ignore '**/*.test.ts,**/*.test.mjs' --format 'typescript,javascript,json'"
66
+ },
67
+ "dependencies": {
68
+ "@opentelemetry/api": "^1.9.1",
69
+ "@opentelemetry/exporter-trace-otlp-proto": "^0.220.0",
70
+ "@opentelemetry/resources": "^2.9.0",
71
+ "@opentelemetry/sdk-trace-base": "^2.9.0",
72
+ "@opentelemetry/sdk-trace-node": "^2.9.0",
73
+ "effect": "^3.21.4",
74
+ "typebox": "^1.1.38"
75
+ },
76
+ "peerDependencies": {
77
+ "@earendil-works/pi-coding-agent": "^0.80.6",
78
+ "@larksuiteoapi/node-sdk": "^1.70.0"
79
+ },
80
+ "peerDependenciesMeta": {
81
+ "@earendil-works/pi-coding-agent": {
82
+ "optional": true
83
+ },
84
+ "@larksuiteoapi/node-sdk": {
85
+ "optional": true
86
+ }
87
+ },
88
+ "devDependencies": {
89
+ "@earendil-works/pi-coding-agent": "0.80.6",
90
+ "@larksuiteoapi/node-sdk": "1.70.0",
91
+ "@types/node": "24.3.3",
92
+ "@vitest/coverage-v8": "4.1.10",
93
+ "jscpd": "4.0.5",
94
+ "typescript": "6.0.3",
95
+ "vite": "npm:@voidzero-dev/vite-plus-core@0.2.4",
96
+ "vite-plus": "0.2.4"
97
+ },
98
+ "engines": {
99
+ "node": "^24.11.0"
100
+ },
101
+ "overrides": {
102
+ "axios": "1.16.0",
103
+ "vite": "npm:@voidzero-dev/vite-plus-core@0.2.4"
104
+ },
105
+ "devEngines": {
106
+ "packageManager": {
107
+ "name": "npm",
108
+ "version": "11.16.0",
109
+ "onFail": "download"
110
+ }
111
+ }
112
+ }