feat: add c0mpute plugin and hire-us request flow

This commit is contained in:
Anthony Ettinger 2026-06-06 19:42:00 +00:00
parent 1a87c2f26d
commit b1d8fe475a
20 changed files with 1271 additions and 59 deletions

View file

@ -0,0 +1,21 @@
import type { PluginManifest } from "@logicsrc/plugin-core";
export const c0mputeManifest: PluginManifest = {
id: "c0mpute",
name: "c0mpute",
version: "0.1.0",
type: ["compute", "jobs", "workers", "usage", "settlement"],
default: true,
capabilities: [
"compute.jobs.sync",
"compute.jobs.dispatch",
"compute.workers.sync",
"compute.quotes.create",
"compute.usage.report",
"compute.settlements.status",
"webhook.compute_status",
"reputation.compute_event"
],
commands: ["c0mpute", "compute", "workers", "quotes"],
env: ["C0MPUTE_API_URL", "C0MPUTE_API_KEY", "C0MPUTE_WEBHOOK_SECRET"]
};