skills$openclaw/the-trench
bagwatcher8.1k

by bagwatcher

the-trench – OpenClaw Skill

the-trench is an OpenClaw Skills integration for coding workflows. Call The Trench Solana program on devnet using the public IDL and TS types.

8.1k stars8.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namethe-trench
descriptionCall The Trench Solana program on devnet using the public IDL and TS types. OpenClaw Skills integration.
ownerbagwatcher
repositorybagwatcher/the-trench
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @bagwatcher/the-trench
last updatedFeb 7, 2026

Maintainer

bagwatcher

bagwatcher

Maintains the-trench in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
276 B
SKILL.md
1.2 KB
SKILL.md

name: the-trench description: Call The Trench Solana program on devnet using the public IDL and TS types. homepage: https://github.com/BAGWATCHER/the-trench-demo metadata: {"openclaw":{"emoji":"🕳️"}}

The Trench Skill

Use this skill to construct Anchor clients that call The Trench program on devnet. This repo is public and contains only the IDL and TS types (no private bot logic).

Program

  • Program ID (devnet): 6fs4qcRYSdR8pd2ZPoAmLpthrqZR94Dhf6J4PLvtqQt1
  • IDL: {baseDir}/../idl.json
  • TS types: {baseDir}/../the_trench.ts

Usage (TypeScript)

import { Connection, PublicKey } from "@solana/web3.js";
import { AnchorProvider, Program } from "@coral-xyz/anchor";
import idl from "../idl.json";

const programId = new PublicKey("6fs4qcRYSdR8pd2ZPoAmLpthrqZR94Dhf6J4PLvtqQt1");
const connection = new Connection("https://api.devnet.solana.com", "confirmed");
const provider = AnchorProvider.env();
const program = new Program(idl as any, programId, provider);

// Example call
// await program.methods.listDeadToken(...).accounts({ ... }).rpc();

Notes

  • This skill does not include any private trading logic or alpha.
  • If you need mainnet, update the program ID and IDL accordingly.
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install the-trench?

Run openclaw add @bagwatcher/the-trench in your terminal. This installs the-trench into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/bagwatcher/the-trench. Review commits and README documentation before installing.