惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
宝玉的分享
宝玉的分享
月光博客
月光博客
B
Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
博客园_首页
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
D
Docker
爱范儿
爱范儿
博客园 - 司徒正美
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
GitHub - ShurikenTrade/shuriken-skills: Agent-consumable ...
2026-05-17 · via Hacker News
Shuriken_full_white (1) (1)

Discord X Follow

Agents can do almost everything now. Except trade.

Until now.

Shuriken is the infrastructure for agentic trading. Every major asset class, 24/7. Onchain tokens, perpetuals, real-world assets, pre-IPO equity, prediction markets.

Plug your agent into the sources where information breaks first. Twitter, Telegram, Discord, on-chain activity. Your agent acts before the market does.

Your agent only does what you permit. Granular permissions, no seed phrases in your runtime.

We are at the beginning of autonomous finance.

This is where it starts.

Agent-consumable integration guidance for the Shuriken platform.

This repository packages guidance skills that help any LLM-backed agent reason about integrating with Shuriken: how to authenticate, how to scope permissions, how to call the API or SDK. It is consumed by Shuriken's internal NLP stack (via the Rust crate at the repo root) and by external coding/agentic assistants (via their native plugin loaders).

What's in here

  • skills/ — one directory per skill, each containing a SKILL.md in the Claude Code format (name, description frontmatter + markdown body). External agents read this tree.
  • src/, Cargo.toml — a thin Rust crate (shuriken-skills) that bakes the skill markdown into a binary at compile time. Consumed internally by shuriken-api.

Installing for external agents

The repo ships native plugin/extension manifests for every major coding agent. Install via your agent's own plugin command — skills surface as shuriken:<skill-name> (e.g. shuriken:api-integration).

Claude Code

/plugin marketplace add ShurikenTrade/shuriken-skills
/plugin install shuriken@shuriken

OpenAI Codex CLI

codex plugin marketplace add ShurikenTrade/shuriken-skills
codex plugin install shuriken@shuriken-skills

GitHub Copilot CLI

copilot plugin marketplace add ShurikenTrade/shuriken-skills
copilot plugin install shuriken@shuriken-skills

Gemini CLI

gemini extensions install https://github.com/ShurikenTrade/shuriken-skills

Cursor

Use Cursor's /add-plugin from the Agent chat and point at this repo, or install from the Cursor Marketplace once we are listed.

OpenCode

Add to the plugin array in opencode.json:

{
  "plugin": ["shuriken-skills@git+https://github.com/ShurikenTrade/shuriken-skills.git"]
}

Other agents (AGENTS.md fallback)

Cursor (rules), Aider, Zed, Windsurf, Cline, and Roo Code auto-detect AGENTS.md at the repo root. Clone the repo into the consuming project (or a parent directory) and the agent will pick up the skill index automatically.

Publishing (maintainers)

Each marketplace consumes the manifests already committed to this repo:

Marketplace Manifest Publish path
Claude Code (third-party) .claude-plugin/plugin.json + .claude-plugin/marketplace.json Tag a release; users run /plugin marketplace add ShurikenTrade/shuriken-skills.
Claude Code (official directory) same as above Submit at https://claude.ai/settings/plugins/submit for human review.
Codex .codex-plugin/plugin.json Tag a release; users run codex plugin marketplace add ShurikenTrade/shuriken-skills. PR to community lists when desired.
Copilot CLI (third-party) .claude-plugin/marketplace.json (Copilot reads this path too) Tag a release; users run copilot plugin marketplace add ShurikenTrade/shuriken-skills.
Copilot CLI (default marketplace) same Open a PR to https://github.com/github/awesome-copilot to land in the marketplace shipped with Copilot CLI.
Gemini CLI gemini-extension.json + GEMINI.md Tag a release. Add the gemini-cli-extension GitHub topic to the repo so Google's crawler indexes it for https://geminicli.com/extensions/browse/.
Cursor .cursor-plugin/plugin.json Submit at https://cursor.com/marketplace/publish for review.
OpenCode package.json + .opencode/plugins/shuriken-skills.js No registry; users install by git URL. PR to https://github.com/awesome-opencode/awesome-opencode for discovery.

Release procedure:

  1. Bump version in Cargo.toml, package.json, .claude-plugin/plugin.json, .claude-plugin/marketplace.json, .codex-plugin/plugin.json, .cursor-plugin/plugin.json, and gemini-extension.json (keep them in lockstep).
  2. git tag vX.Y.Z && git push --tags.
  3. Cut a GitHub Release (Gemini CLI prefers release archives over full clones).
  4. For first-time listings: submit the Anthropic and Cursor forms, and PR awesome-copilot and awesome-opencode.

Skills included (v0.1)

  • shuriken:api-integration — How to integrate with the Shuriken API or SDK.
  • shuriken:agent-keys — How to authenticate as an agent.
  • shuriken:scoping — How to reason about agent-key scopes and least-privilege.

Using the Rust crate

[dependencies]
shuriken-skills = { git = "https://github.com/ShurikenTrade/shuriken-skills", tag = "v0.1.0" }
use shuriken_skills::{list, get, render_index};

// List all skills
for skill in list() {
    println!("{}: {}", skill.qualified_name(), skill.description);
}

// Fetch a skill body
let skill = get("shuriken:api-integration").expect("skill exists");
println!("{}", skill.body);

// Render the index block for a system prompt
println!("{}", render_index());

License

MIT. See LICENSE.