plugins marketplace
← All plugins

shuriken

v0.2.0

Help coding agents integrate with the Shuriken trading platform via its API, SDK, and CLI.

CodexClaude Code4 skills

by ShurikenMIT90updated 3 months ago

Source

git clone https://github.com/ShurikenTrade/shuriken-skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

shuriken/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/agent-keys/SKILL.md
├── skills/api-integration/SKILL.md
├── skills/learn-about-shuriken/SKILL.md
└── skills/scoping/SKILL.md

Skills4

agent-keysskills/agent-keys/SKILL.md

Use when a user asks how to authenticate as an agent, create or rotate API credentials, or understand the lifecycle of agent keys on Shuriken.

api-integrationskills/api-integration/SKILL.md

Use when a user wants to integrate with or develop against the Shuriken API or SDK — covers proficiency assessment, path routing (quickstart / raw API / SDK), and tells you which deepening reference tool to reach for (OpenAPI for HTTP endpoints, the stream catalog for WebSockets, platform docs as fallback).

learn-about-shurikenskills/learn-about-shuriken/SKILL.md

Use when a user asks conceptual questions about Shuriken — what it does, what features exist, how a feature works, or "what is X on Shuriken?" Does not cover programmatic integration (that's `shuriken:api-integration`).

scopingskills/scoping/SKILL.md

Use when a user asks what an agent key can do, how Shuriken permissions work, or which scopes they need for a given integration.

Manifests2

.codex-plugin/plugin.json
{
  "name": "shuriken",
  "version": "0.2.0",
  "description": "Help coding agents integrate with the Shuriken trading platform via its API, SDK, and CLI.",
  "author": {
    "name": "Shuriken",
    "url": "https://app.shuriken.trade"
  },
  "homepage": "https://github.com/ShurikenTrade/shuriken-skills",
  "repository": "https://github.com/ShurikenTrade/shuriken-skills",
  "license": "MIT",
  "keywords": [
    "trading",
    "shuriken",
    "agentic-trading",
    "trading-bot",
    "ai-trading",
    "crypto",
    "blockchain"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Shuriken",
    "shortDescription": "Integrate agents with the Shuriken trading platform via API, SDK, or CLI",
    "longDescription": "Use these skills to integrate any coding agent with the Shuriken trading platform. They cover agent-key authentication, least-privilege scoping, and choosing the right interface — API, SDK, or CLI — for what you're building.",
    "developerName": "Shuriken",
    "category": "Trading",
    "capabilities": [
      "Read"
    ],
    "defaultPrompt": [
      "Build me a trading bot on Shuriken.",
      "Wire up an agent to monitor my Shuriken positions.",
      "Connect my strategy to Shuriken with the right permissions."
    ],
    "websiteURL": "https://app.shuriken.trade"
  }
}
.claude-plugin/plugin.json
{
  "name": "shuriken",
  "description": "Help coding agents integrate with the Shuriken trading platform via its API, SDK, and CLI.",
  "version": "0.2.0",
  "author": {
    "name": "Shuriken",
    "url": "https://app.shuriken.trade"
  },
  "homepage": "https://github.com/ShurikenTrade/shuriken-skills",
  "repository": "https://github.com/ShurikenTrade/shuriken-skills",
  "license": "MIT",
  "keywords": [
    "trading",
    "shuriken",
    "agentic-trading",
    "trading-bot",
    "ai-trading",
    "crypto",
    "blockchain"
  ]
}