mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-14 06:47:28 +00:00
Scaffold LogicSRC and CommandBoard plugins
This commit is contained in:
parent
59927e140c
commit
5c9ea821f6
67 changed files with 5958 additions and 0 deletions
21
plugins/ugig/src/manifest.ts
Normal file
21
plugins/ugig/src/manifest.ts
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import type { PluginManifest } from "@logicsrc/plugin-core";
|
||||
|
||||
export const uGigManifest: PluginManifest = {
|
||||
id: "ugig",
|
||||
name: "uGig",
|
||||
version: "1.0.0",
|
||||
type: ["jobs", "gigs", "marketplace"],
|
||||
default: true,
|
||||
capabilities: [
|
||||
"jobs.import",
|
||||
"jobs.publish",
|
||||
"gigs.sync",
|
||||
"candidates.link",
|
||||
"agents.link",
|
||||
"tasks.publish_to_marketplace",
|
||||
"bids.sync",
|
||||
"reputation.sync"
|
||||
],
|
||||
commands: ["jobs", "gigs", "publish"],
|
||||
env: ["UGIG_API_URL", "UGIG_API_KEY", "UGIG_WEBHOOK_SECRET"]
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue