@arvo-tools/agentic 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/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # @arvo-tools/agentic
2
+
3
+ Agentic toolset for building applications using arvo-core and arvo-event-handler.
4
+
5
+ ## Installation
6
+
7
+ \`\`\`bash
8
+ npm install @arvo-tools/agentic
9
+ # or
10
+ pnpm add @arvo-tools/agentic
11
+ \`\`\`
12
+
13
+ ## Usage
14
+
15
+ \`\`\`typescript
16
+ import { version } from '@arvo-tools/agentic';
17
+
18
+ console.log(version);
19
+ \`\`\`
20
+
21
+ ## License
22
+
23
+ MIT
@@ -0,0 +1,2 @@
1
+ export declare const version = "0.0.0";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,UAAU,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.version = void 0;
4
+ exports.version = '0.0.0';
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,OAAO,CAAC"}
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@arvo-tools/agentic",
3
+ "version": "0.1.0",
4
+ "description": "Agentic toolset for building applications using arvo-core and arvo-event-handler",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "keywords": [
11
+ "arvo",
12
+ "event-driven architecture",
13
+ "agentic",
14
+ "cloudevent",
15
+ "opentelemetry"
16
+ ],
17
+ "author": "Your Name <your.email@example.com>",
18
+ "license": "MIT",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/your-org/arvo-tools.git",
22
+ "directory": "packages/agentic"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "dependencies": {
28
+ "arvo-core": "^3.0.19",
29
+ "arvo-event-handler": "^3.0.19"
30
+ },
31
+ "devDependencies": {
32
+ "@types/node": "^24.10.1"
33
+ },
34
+ "engines": {
35
+ "node": ">=18.0.0"
36
+ },
37
+ "scripts": {
38
+ "build": "tsc",
39
+ "dev": "tsc --watch",
40
+ "test": "vitest run",
41
+ "test:watch": "vitest",
42
+ "test:coverage": "vitest run --coverage",
43
+ "lint": "biome check --fix .",
44
+ "format": "biome format --write .",
45
+ "clean": "rm -rf dist *.tsbuildinfo"
46
+ }
47
+ }