agentsclimarketplace

Skill

Skill alexbanda08/solana-arb-quant-harness/skill

Scaffold cross-DEX arbitrage and quant-execution on Solana -- spatial/triangular DEX arb, perp-spot basis and funding-rate capture (Drift), realtime gRPC ingestion (Yellowstone/LaserStream/ShredStream), simulate-first execution with Jito bundles, priority-fee/tip optimizer, and a risk harness with limits, circuit breakers, and kill-switch. Generates the local execution+risk orchestration layer that single-venue swap skills lack.From its SKILL.md

Install
npx -y skills add alexbanda08/solana-arb-quant-harness --skill skill

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

3.9 KB, 878 tokens by cl100k_base, as published. Nobody here has run it

solana-arb-quant-harness

Generates the orchestration tier single-venue Solana skills omit: normalized cross-DEX quotes, realtime ingestion, simulate-first execution + Jito bundling, fee/tip sizing, and a real risk harness (caps, circuit breaker, kill-switch, telemetry). Plus perp-spot-basis and funding-rate strategies on a slower, less-contested clock.

vs clawpump: clawpump is a hosted API returning unsigned bundles that punts execution + risk to you. This skill is that layer -- local, vendor-neutral scaffolding -- and adds perp-spot/funding strategies clawpump never touches. Not a bot; scaffolding + knowledge.

PRECEDENCE (read before any code-gen)

  1. Read references/safety-rails.md FIRST. Every emitted execution path obeys it.
  2. Never emit fund-moving or signing code without a typed human confirm-gate; no flag defeats it. Default DRY_RUN=true, REQUIRE_CONFIRM=true. Always simulateTransaction before submit.
  3. Prefer pinned versions in references/sdk-versions.md; import DEX SDKs lazily.
  4. Delegate Anchor/IDL/program/tx-signing/priority-fee plumbing to ../solana-dev/ (via references/delegation.md); delegate swaps to the Jupiter skill.
  5. Honest economics: spatial retail arb is infra-dominated -- present spatial-dex-arb.md as educational; lead with funding/basis + landing + risk.

Task Routing Guide

Map the user's intent to exactly one leaf.

User asks about...Open this leaf
spatial / cross-DEX price arbreferences/strategies/spatial-dex-arb.md
triangular / multi-hop arbreferences/strategies/triangular-arb.md
perp-spot basis / funding-rate strategyreferences/strategies/perp-spot-basis.md
funding-rate capture (Drift)references/strategies/funding-rate-capture.md
stream realtime datareferences/streaming/realtime-ingestion.md
atomic execution / Jito bundle / tx landingreferences/execution/bundle-and-landing.md
priority fee / tip sizingreferences/execution/fee-tip-optimizer.md
risk limits / circuit breaker / telemetryreferences/risk/harness-and-telemetry.md
normalize quotes across venuesreferences/quote-normalizer.md
a term / why am I losingreferences/glossary-and-failure-modes.md
sign / submit / program / IDLreferences/delegation.md
package / version / installreferences/sdk-versions.md
safety / confirm-gate / capsreferences/safety-rails.md

Progressive disclosure

  • Router (this file): pointers only.
  • Leaves (~60-200 lines each): minimal, correct, importable code -- exported symbols match the repo contract (UnifiedQuote/getQuotes, RiskHarness/RiskLimits/MetricsRecorder, runFundingBasis, scanSpatial, scanTriangular, createYellowstoneStream, submitBundle, computePriorityFee/estimateTip).
  • Delegation: ../solana-dev/ for program/tx; Jupiter skill for swaps.

Agents

AgentRoleModel
agents/arb-strategy-architect.mdPicks strategy, sizing, and risk envelopeopus
agents/stream-engineer.mdWires streaming + bundle + fee/tip + harnesssonnet

Commands

CommandDoes
commands/scaffold-strategy.mdEmit a strategy module (dry-run default)
commands/wire-stream.mdGenerate a Yellowstone gRPC ingestion module
commands/add-risk-limits.mdDrop in the RiskHarness with caps + kill-switch

What ships with it: 26 files

171.7 KB alongside SKILL.md, 11 of them executable

Keep looking

Skills are one crate of 326,286. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.