Agent skill · DevOps & Cloud

genlayer-cli

Use the GenLayer CLI to deploy, interact with, and debug intelligent contracts.

Internet Court1,389★ · +222/wk · 1 repos on radarProfile →
claude-codecodexcan modify filesNOASSERTION
Install
npx skills add internet-court/internet-court-skill --skill genlayer-cli --agent claude-code

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

Facts
Files in the skill folder: 3
SKILL.md size: 8 KB
Bundled scripts: none
Allowed tools: -Bash-Read
Path: vendored/genlayer/genlayer-cli/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

# GenLayer CLI The `genlayer` CLI manages contract deployment, interaction, transaction inspection, and network configuration. Works with GenLayer Studio (local), studio.genlayer.com, and Testnet Bradbury. ## Setup ```bash npm install -g genlayer ``` ## Network Configuration ```bash genlayer network set # Interactive selector genlayer network set testnet-bradbury # Direct genlayer network info # Show current network config genlayer network list # List all networks ``` Networks: `localnet`, `studionet`, `testnet-asimov`, `testnet-bradbury` **Note**: `studionet` is gasless — no tokens are required to deploy or interact with contracts. A 0 GEN balance is expected and does not prevent any operations. **Note**: `studionet` is rate-limited per IP — **60 req/min, 1000 req/hr, 10000 req/day**. Limits aren't permanent — batching many `deploy`/`write` calls trips `-32429` / HTTP 429 and further requests are rejected until the window resets (next minute / hour / day cycle). `-32028` signals the pending-queue cap — **up to 32 in-flight txs per sender**; a separate cap also applies per contract. Throttle batch scripts, wait for receipts between submissions, or use `localnet` for heavy batches.

What's inside
Steps it walks through
  1. Setup
  2. Network Configuration
  3. Account Management
  4. Non-interactive usage (CI/CD, containers, agents)
  5. Funding Accounts
  6. Contract Deployment
  7. Contract Interaction
  8. Read (no transaction)
  9. Write (sends transaction)
  10. Inspect contract
  11. Transaction Debugging
  12. Lifecycle status is not execution success
  13. Appeal a Transaction
  14. Local Studio Management
Ships with 2 files
  • LICENSE
  • agents/openai.yaml
Commands it runs
npm install -g genlayer
genlayer network set                    # Interactive selector
genlayer network set testnet-bradbury   # Direct
genlayer network info                   # Show current network config
genlayer network list                   # List all networks
genlayer account                        # Show active account (address, balance, network)
genlayer account list                   # List all accounts
genlayer account create --name dev1     # Create new account
genlayer account use dev1               # Set active account
genlayer account unlock                 # Cache key in OS keychain (no password prompts)
More from internet-court-skill
All skills →
About this skill
What does the genlayer-cli skill do?

Use the GenLayer CLI to deploy, interact with, and debug intelligent contracts.

How do I install it?

Run `npx skills add internet-court/internet-court-skill --skill genlayer-cli --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