utilia-solana-transaction-diagnosis

utilia-solana-transaction-diagnosis is a skill for Codex from mohamedkuch/utilia-solana-agent. It costs 74 tokens per session (540 once invoked), scanned A, original, MIT.

A paid tool that turns a public Solana transaction signature into a plain explanation of what happened on the blockchain. It can show balance changes, program logs, compute use, and a failure category.

In plain words
What is it for?
Use it to investigate customer-reported Solana payments, explain failed transactions, and prepare support notes. It requires a transaction signature and charges exactly $0.004 USDC after approval.
Why use it?
It removes the need to inspect raw Solana records and logs by hand when a transaction succeeds or fails. It also identifies a safer next action for retrying failed transactions.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: positional $N argument.

Good fit Use it to investigate customer-reported Solana payments, explain failed transactions, and prepare support notes. It requires a transaction signature and charges exactly $0.004 USDC after approval.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mohamedkuch/utilia-solana-agent/utilia-solana-transaction-diagnosis
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add mohamedkuch/utilia-solana-agent --skill utilia-solana-transaction-diagnosis
Clone the repo
git clone --depth 1 https://github.com/mohamedkuch/utilia-solana-agent

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for utilia-solana-transaction-diagnosis

README.md
[![agentmods](https://agentmods.dev/badge/skills/mohamedkuch/utilia-solana-agent/utilia-solana-transaction-diagnosis/github.svg)](https://agentmods.dev/skills/mohamedkuch/utilia-solana-agent/utilia-solana-transaction-diagnosis)
Your own site
<a href="https://agentmods.dev/skills/mohamedkuch/utilia-solana-agent/utilia-solana-transaction-diagnosis"><img src="https://agentmods.dev/badge/skills/mohamedkuch/utilia-solana-agent/utilia-solana-transaction-diagnosis/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for utilia-solana-transaction-diagnosis

Your own site · 80×15
<a href="https://agentmods.dev/skills/mohamedkuch/utilia-solana-agent/utilia-solana-transaction-diagnosis"><img src="https://agentmods.dev/badge/skills/mohamedkuch/utilia-solana-agent/utilia-solana-transaction-diagnosis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 540 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00074 $0.00540
Opus 5 $0.00037 $0.00270
Sonnet 5 $0.00015 $0.00108
Haiku 4.5 $0.00007 $0.00054

Measured 11d ago against content hash 39f3121802f7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

utilia-solana-transaction-diagnosis scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/utilia-solana-transaction-diagnosis/SKILL.md · 67 lines

How it starts

The opening of the file, as written. The whole thing — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Utilia Solana Transaction Diagnosis

Turn one Solana signature into a support-ready explanation. Prefer the wallet-managed AgentCash route; it checks the quote before paying and does not send a private key to Utilia.

Validate the request

Require one Base58 Solana signature between 64 and 88 characters. A transaction signature is public on-chain data, not a wallet secret. Never ask for a seed phrase or private key.

Set the call URL by replacing YOUR_SIGNATURE:

https://api.utilia.ink/base/v1/transaction/YOUR_SIGNATURE

Check before paying

Inspect the live x402 quote without settling:

npx -y agentcash@latest check \
  "https://api.utilia.ink/base/v1/transaction/YOUR_SIGNATURE"

Proceed only when the quote identifies the expected Utilia URL, Base network, USDC asset, and an exact price no higher than $0.004.

If the user has not already authorized this specific paid diagnosis, state that the next command spends exactly $0.004 USDC and ask for confirmation. Do not pay from an operator wallet to simulate customer demand.

Diagnose

After payment authorization, run:

npx -y agentcash@latest fetch \
  "https://api.utilia.ink/base/v1/transaction/YOUR_SIGNATURE" --yes

AgentCash manages the wallet, signs the x402 payment locally, retries the request, and returns the response. If its wallet is unfunded, report the funding account shown by npx -y agentcash@latest balance; do not search for other credentials.

Explain the evidence

Return a compact diagnosis containing:

  • whether the signature landed and whether execution succeeded;
  • slot, block time, fee, compute units, and confirmation state when available;
  • meaningful SOL and token balance deltas;
  • the relevant program-log failure, without dumping unrelated logs;
  • Utilia's failure category and suggested next action;
  • the settled price and payment receipt reported by AgentCash.

Separate observed evidence from inference. Do not claim that a retry or simulation guarantees future execution because block state, balances, and market conditions can change.

Read the full file on GitHub · 67 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 67 lines · 74 tokens per session scan A 39f3121802f7

Subscribe to this mod's changes

utilia-solana-transaction-diagnosis is a skill published in the GitHub repository mohamedkuch/utilia-solana-agent (0 stars, last pushed 1mo ago), licensed MIT. It adds 74 tokens to every session and 540 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

x402-debugging

Diagnose hosted OpenDexter x402, OAuth, wallet-binding, intent, provider, and settlement failures without risking a duplicate payment. Use when check, fetch, status, access, or wallet fails.

Dexter-DAO/dexter-mcp · 46 tokens

code-changes

Orchestration workflow for any task that ends in code changes: issue analysis, pull request review, feature implementation, bug fixes, refactors, or fleshing out an idea. MUST be invoked at the start of such a task, before reading or writing any code. Defines how to analyze first, gate on user approval, plan, pick the…

JanDeDobbeleer/oh-my-posh · 88 tokens

solana-dev

Use when user asks to "build a Solana dapp", "write an Anchor program", "create a token", "debug Solana errors", "set up wallet connection", "test my Solana program", "fuzz my Solana program", "deploy to devnet", "send a v1 transaction", "support larger transactions", "fix maxSupportedTransactionVersion", or "explain…

solana-foundation/solana-dev-skill · 250 tokens

nostr-replaceable-event-mutation-overwrite

Fix silent data loss when mutating Nostr replaceable events (Kind 0 profile, Kind 3 contact/follow list, Kind 10002 relay list, etc.) in client apps. Use when: (1) Following someone wipes the user's entire follow list, (2) Updating profile metadata loses existing fields, (3) Fresh browser session or mobile login…

divinevideo/divine-mobile · 172 tokens

divine-relay-video-requirements

Fix "blocked: event rejected by relay policy" errors when publishing Kind 34236 (video) events to divine relays. Use when: (1) Kind 0 profile events succeed but Kind 34236 fails, (2) Generic policy rejection with no specific reason, (3) Video events work on other relays but fail on divine relays. The divine relay…

divinevideo/divine-mobile · 105 tokens

ndk-operation-timeout-wrapper

Fix NDK (Nostr Dev Kit) operations hanging indefinitely when relay connections stall. Use when: (1) App freezes during fetchEvents or publish calls, (2) No timeout errors despite network issues, (3) Relay connection appears stuck, (4) Using NDK with unstable or slow relays. NDK operations have no built-in timeout …

divinevideo/divine-mobile · 88 tokens