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 cursorUse 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