alkahest-developer
Help developers write code that interacts with Alkahest escrow contracts using the TypeScript, Rust, or Python SDK
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- When to Use
- SDK Overview
- Client Setup
- TypeScript
- Rust
- Python
- Core Patterns
- Creating an Escrow
- Fulfilling with StringObligation
- Collecting Escrow
- Waiting for Fulfillment
- Encoding Demands
- Commit-Reveal Pattern
- Atomic Payment Utilities
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.