Agent skill · Code Review & Quality

alkahest-developer

Help developers write code that interacts with Alkahest escrow contracts using the TypeScript, Rust, or Python SDK

Internet Court1,389★ · +222/wk · 1 repos on radarProfile →
claude-codecodexNOASSERTION
Install
npx skills add internet-court/internet-court-skill --skill alkahest-developer --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 6
SKILL.md size: 9 KB
Bundled scripts: none
Path: vendored/arkhai/alkahest-developer/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,536 · +147 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Alkahest Developer Skill ## When to Use Use this skill when a developer wants to write code that interacts with Alkahest escrow contracts. This covers: - Integrating Alkahest into an application - Writing bots/agents that create escrows, fulfill obligations, or arbitrate - Building custom arbiters or obligation contracts - Understanding SDK patterns and APIs ## SDK Overview | SDK | Language | Package | Foundation | |-----|----------|---------|------------| | TypeScript | TypeScript/JavaScript | `@alkahest/ts-sdk` | viem | | Rust | Rust | `alkahest-rs` | alloy | | Python | Python | `alkahest-py` | PyO3 wrapper around Rust SDK | ## Client Setup ### TypeScript ```typescript import { createWalletClient, http } from "viem"; import { privateKeyToAccount } from "viem/accounts"; import { baseSepolia } from "viem/chains"; import { makeClient } from "@alkahest/ts-sdk"; const walletClient = createWalletClient({ account: privateKeyToAccount("0xPRIVATE_KEY"), chain: baseSepolia, transport: http("https://rpc-url"), }); // Full client with all extensions const client = makeClient(walletClient); // Custom addresses (optional) const client = makeClient(walletClient, customAddresses); // Minimal c

What's inside
Steps it walks through
  1. When to Use
  2. SDK Overview
  3. Client Setup
  4. TypeScript
  5. Rust
  6. Python
  7. Core Patterns
  8. Creating an Escrow
  9. Fulfilling with StringObligation
  10. Collecting Escrow
  11. Waiting for Fulfillment
  12. Encoding Demands
  13. Commit-Reveal Pattern
  14. Atomic Payment Utilities
Ships with 5 files
  • LICENSE
  • references/contracts.md
  • references/python-api.md
  • references/rust-api.md
  • references/typescript-api.md
More from internet-court-skill
All skills →
About this skill
What does the alkahest-developer skill do?

Help developers write code that interacts with Alkahest escrow contracts using the TypeScript, Rust, or Python SDK

How do I install it?

Run `npx skills add internet-court/internet-court-skill --skill alkahest-developer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From internet-court/internet-court-skill, a repository with 1,536 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going