JSPM

orynworks

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 14
  • Score
    100M100P100Q37355F
  • License MIT

CLI and SDK for the Oryn Works capability marketplace.

Package Exports

  • orynworks

Readme

orynworks

CLI and SDK for the Oryn Works capability marketplace.

Install a skill or knowledge pack into your MCP-aware client, or call one directly.

Install

# Print a config snippet (default — safe, no file writes)
npx orynworks install deep-research

# Write directly into Claude Desktop or Cursor config
npx orynworks install deep-research --client claude
npx orynworks install deep-research --client cursor

Use programmatically

import { OrynClient } from "orynworks";

const client = new OrynClient({
  gatewayUrl: "https://api.oryn.works",
  authToken: process.env.ORYN_AUTH_TOKEN,
});

const result = await client.query("alpha-feed", {
  prompt: "trending on base, last 24h",
});

CLI commands

orynworks install <slug> [--client claude|cursor|print] [--gateway URL]
orynworks call    <slug> --prompt "..." [--gateway URL] [--auth TOKEN]
orynworks query   <slug> --prompt "..." [--gateway URL] [--auth TOKEN]
orynworks ping    [--gateway URL]

Env

Var Default
ORYN_GATEWAY_URL https://api.oryn.works
ORYN_AUTH_TOKEN none (required for paid capabilities)

License

MIT