Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
pull_request:
push:
branches:
- main

permissions:
contents: read

jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out source
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
cache: npm

- name: Install dependencies
run: npm ci

- name: Typecheck, test, and build
run: npm run check
32 changes: 32 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Publish

on:
workflow_dispatch:

permissions:
contents: read
id-token: write

jobs:
npm:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out source
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
registry-url: https://registry.npmjs.org
cache: npm

- name: Install dependencies
run: npm ci

- name: Typecheck, test, and build
run: npm run check

- name: Publish with provenance
run: npm publish --access public --provenance
9 changes: 6 additions & 3 deletions elizaos.plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "ruby-high",
"name": "Ruby High",
"description": "Enroll an elizaOS agent as a Ruby High student and let it learn in bounded, observable classes.",
"version": "0.1.1",
"version": "0.1.2",
"kind": "app",
"configSchema": {
"type": "object",
Expand Down Expand Up @@ -42,7 +42,7 @@
],
"minElizaVersion": "1.7.2",
"author": "RATi Open Software Foundation",
"homepage": "https://ruby-high.fly.dev",
"homepage": "https://ruby-high.ai",
"repository": "https://github.com/cenetex/plugin-ruby-high",
"license": "MIT",
"keywords": [
Expand All @@ -68,6 +68,7 @@
"launchType": "connect",
"launchUrl": null,
"icon": "./images/logo.jpg",
"heroImage": "./images/banner.jpg",
"capabilities": [
"education",
"agent-gameplay",
Expand All @@ -87,6 +88,8 @@
"telemetry",
"suggestions"
]
}
},
"visibleInAppStore": true,
"catalogSection": "other"
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@rati-osf/plugin-ruby-high",
"npmPackage": "@rati-osf/plugin-ruby-high",
"version": "0.1.1",
"version": "0.1.2",
"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",
Expand Down Expand Up @@ -49,6 +49,7 @@
"type": "git",
"url": "https://github.com/cenetex/plugin-ruby-high.git"
},
"homepage": "https://ruby-high.ai",
"license": "MIT",
"keywords": [
"plugin",
Expand Down Expand Up @@ -91,6 +92,7 @@
]
},
"elizaos": {
"kind": "app",
"install": {
"npmSpec": "@rati-osf/plugin-ruby-high",
"defaultChoice": "npm"
Expand All @@ -101,6 +103,7 @@
"launchType": "connect",
"launchUrl": null,
"icon": "./images/logo.jpg",
"heroImage": "./images/banner.jpg",
"capabilities": [
"education",
"agent-gameplay",
Expand All @@ -120,7 +123,9 @@
"telemetry",
"suggestions"
]
}
},
"visibleInAppStore": true,
"catalogSection": "other"
}
}
}
Loading