@artyfacts/openclaw 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/dist/index.mjs ADDED
@@ -0,0 +1,36 @@
1
+ import {
2
+ ArtyfactsListener,
3
+ ContextFetcher,
4
+ McpHandler,
5
+ OpenClawExecutor,
6
+ buildPromptWithContext,
7
+ clearCredentials,
8
+ createContextFetcher,
9
+ createExecutor,
10
+ createListener,
11
+ createMcpHandler,
12
+ getCredentials,
13
+ introspect,
14
+ loadCredentials,
15
+ promptForApiKey,
16
+ saveCredentials,
17
+ summarize
18
+ } from "./chunk-CTWVGZRX.mjs";
19
+ export {
20
+ ArtyfactsListener,
21
+ ContextFetcher,
22
+ McpHandler,
23
+ OpenClawExecutor,
24
+ buildPromptWithContext,
25
+ clearCredentials,
26
+ createContextFetcher,
27
+ createExecutor,
28
+ createListener,
29
+ createMcpHandler,
30
+ getCredentials,
31
+ introspect,
32
+ loadCredentials,
33
+ promptForApiKey,
34
+ saveCredentials,
35
+ summarize
36
+ };
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@artyfacts/openclaw",
3
+ "version": "0.1.0",
4
+ "description": "OpenClaw adapter for Artyfacts - Execute tasks using OpenClaw CLI",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "artyfacts-openclaw": "./bin/artyfacts-openclaw.js"
10
+ },
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.mjs",
15
+ "require": "./dist/index.js"
16
+ }
17
+ },
18
+ "scripts": {
19
+ "build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts",
20
+ "dev": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --watch",
21
+ "start": "node bin/artyfacts-openclaw.js",
22
+ "test": "vitest",
23
+ "lint": "eslint src/"
24
+ },
25
+ "keywords": [
26
+ "artyfacts",
27
+ "openclaw",
28
+ "ai",
29
+ "agents",
30
+ "llm",
31
+ "adapter",
32
+ "mcp"
33
+ ],
34
+ "author": "Artygroup",
35
+ "license": "MIT",
36
+ "homepage": "https://github.com/artygracie/artyfacts#readme",
37
+ "files": [
38
+ "dist",
39
+ "bin",
40
+ "README.md"
41
+ ],
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/artygracie/artyfacts.git",
45
+ "directory": "packages/openclaw"
46
+ },
47
+ "dependencies": {
48
+ "commander": "^12.0.0",
49
+ "eventsource": "^2.0.2"
50
+ },
51
+ "publishConfig": {
52
+ "access": "public"
53
+ },
54
+ "devDependencies": {
55
+ "@types/eventsource": "^1.1.15",
56
+ "@types/node": "^20.0.0",
57
+ "tsup": "^8.0.0",
58
+ "typescript": "^5.0.0",
59
+ "vitest": "^1.0.0"
60
+ },
61
+ "engines": {
62
+ "node": ">=18.0.0"
63
+ }
64
+ }