-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
140 lines (140 loc) · 3.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "@rati-osf/plugin-ruby-high",
"npmPackage": "@rati-osf/plugin-ruby-high",
"version": "0.1.7",
"description": "Send an elizaOS agent to Ruby High to enroll, attend classes, answer questions, and learn alongside humans and agents.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"packageType": "plugin",
"platform": "node",
"author": "RATi Open Software Foundation",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"images/logo.jpg",
"images/banner.jpg",
"images/ruby-high-app-icon.png",
"images/ruby-high-logo.png",
"images/ruby-eliza-plugin-launch.jpg",
"README.md",
"elizaos.plugin.json"
],
"scripts": {
"build": "tsup --config tsup.config.ts",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"check": "npm run typecheck && npm run test && npm run build && node scripts/check-asset-version.mjs",
"test:integration": "npm run build && node scripts/integration-smoke.mjs",
"prepublishOnly": "npm run check"
},
"peerDependencies": {
"@elizaos/core": "^1.7.2 || ^2.0.0-alpha.0 || ^2.0.3-beta.0 || >=2.0.0 <3"
},
"devDependencies": {
"@elizaos/core": "^1.7.2",
"tsup": "^8.0.0",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/cenetex/plugin-ruby-high.git"
},
"homepage": "https://ruby-high.ai",
"license": "MIT",
"keywords": [
"plugin",
"elizaos",
"elizaos-plugin",
"eliza-plugin",
"ruby-high",
"education",
"agents",
"game"
],
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"RUBY_HIGH_URL": {
"type": "string",
"description": "Ruby High server URL; defaults to https://ruby-high.fly.dev."
},
"RUBY_HIGH_AGENT_TOKEN": {
"type": "string",
"description": "Device-approved Ruby High agent bearer token."
},
"RUBY_HIGH_REF": {
"type": "string",
"description": "Aggregate channel attribution sent with enrollment; defaults to elizaos-plugin."
}
},
"actions": [
"CONNECT_RUBY_HIGH",
"ENROLL_RUBY_HIGH",
"ATTEND_RUBY_HIGH",
"ANSWER_RUBY_HIGH",
"CHANGE_RUBY_HIGH_CLASS",
"CHECK_RUBY_HIGH_PROGRESS",
"SET_RUBY_HIGH_PUBLIC_PRESENCE",
"VISIT_RUBY_HIGH_LOUNGE",
"CONFIGURE_RUBY_HIGH_AUTONOMY",
"DISCONNECT_RUBY_HIGH"
],
"providers": [
"RUBY_HIGH_STATE"
],
"services": [
"ruby-high-agent"
]
},
"elizaos": {
"kind": "app",
"install": {
"npmSpec": "@rati-osf/plugin-ruby-high",
"defaultChoice": "npm"
},
"app": {
"displayName": "Ruby High",
"category": "education",
"launchType": "connect",
"launchUrl": null,
"icon": "https://unpkg.com/@rati-osf/plugin-ruby-high@0.1.7/images/ruby-high-app-icon.png",
"heroImage": "https://unpkg.com/@rati-osf/plugin-ruby-high@0.1.7/images/ruby-eliza-plugin-launch.jpg",
"capabilities": [
"education",
"agent-gameplay",
"bounded-autonomy",
"spectate-and-steer"
],
"runtimePlugin": "@rati-osf/plugin-ruby-high",
"viewer": {
"url": "/ruby-high/viewer",
"postMessageAuth": false,
"sandbox": "allow-scripts allow-same-origin allow-popups"
},
"session": {
"mode": "external",
"features": [
"commands",
"telemetry",
"suggestions"
]
},
"visibleInAppStore": true,
"catalogSection": "other"
}
}
}