feat: add solana-tx-landing skill - #159
Open
abhinavgautam01 wants to merge 1 commit into
Open
Conversation
Author
|
ping @kauenet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
solana-tx-landing, a full novel skill submission for the Solana AI Kit skill bounty.This is a production-oriented Claude Code / Codex skill for diagnosing and hardening Solana transaction landing flows. It helps agents investigate failed, expired, slow, dropped, or inconsistently confirmed transactions by looking across the full transaction lifecycle: blockhash fetch, transaction construction, simulation, wallet signing latency, send/rebroadcast, confirmation, priority fees, compute budget, RPC pool health, versioned transactions, address lookup tables, and Jito routing.
What is included
This PR adds a self-contained submission folder:
Key pieces:
SKILL.mdrouter with focused references for:minContextSlot, andmaxRetriesscan_ts_transactions.pyfor TypeScript/JavaScript transaction send pathsparse_simulation_logs.pyfor simulation log classificationscan_anchor_compute.pyfor Rust/Anchor compute-risk patternsdiagnose_signature.pyfor savedgetTransactionJSON and optional live read-only RPC diagnosistx_landing_report.pyfor combined transaction landing readiness reportsmcp_server.pyexposes the offline scanners to MCP-compatible agents--fixverificationWhy this matters
Transaction landing is one of the most common production pain points for Solana builders. The same symptoms can come from very different causes: stale blockhashes, commitment mismatch, missing
lastValidBlockHeight, skipped preflight, weak rebroadcast logic, public RPC endpoints, compute exhaustion, poor priority fee strategy, wallet signing latency, or real program/runtime errors.This skill gives coding agents a deterministic way to separate those causes and propose concrete, minimal fixes without requiring private keys, signing, live transaction sending, or network access.
Safety model
Validation
Ran from
solana-tx-landing/in this PR branch:Output:
Also validated the skill entry point:
Output:
Links
Standalone submission repo:
https://github.com/abhinavgautam01/solana-tx-landing-skill
Detailed demo:
https://github.com/abhinavgautam01/solana-tx-landing-skill/blob/main/DEMO.md
Related marketplace PR:
solanabr/skills#2