Skills.
Give your AI a better way to work.
A skill is a set of written instructions that teaches an AI how to do one job the way it should be done: review a pull request, plan a migration, write the release notes.
Install one here and it travels with your account into Claude, Claude Code, Cursor and every other client you sign in with.
Category: AI & models
9,105 results · page 52 of 304
- View details
golem-add-transactions-rustSkillAI & models
Adding saga-pattern transactions with compensation to a Rust Golem agent. Use when the user asks about transactions, sagas, compensation, rollback, or multi-step operations that need undo logic.
Ready to connect★ 2k
- View details
golem-add-webhook-moonbitSkillAI & models
Using webhooks in a MoonBit Golem agent. Use when the user asks to create webhooks, receive webhook callbacks, integrate with webhook-driven external APIs, or generate temporary callback URLs for external services.
Ready to connect★ 2k
- View details
golem-add-webhook-rustSkillAI & models
Using webhooks in a Rust Golem agent. Use when the user asks to create webhooks, receive webhook callbacks, integrate with webhook-driven external APIs, or generate temporary callback URLs for external services.
Ready to connect★ 2k
- View details
golem-atomic-block-moonbitSkillAI & models
Using atomic blocks and idempotency in MoonBit Golem agents. Use when the user asks about atomic operations or idempotent execution.
Ready to connect★ 2k
- View details
golem-call-another-agent-moonbitSkillAI & models
Calling another agent and awaiting the result in a MoonBit Golem project. Use when the user asks about agent-to-agent RPC, calling remote agents, or inter-component communication.
Ready to connect★ 2k
- View details
golem-call-another-agent-rustSkillAI & models
Calling another agent and awaiting the result in a Rust Golem project. Use when the user asks about agent-to-agent RPC, calling remote agents, or inter-component communication.
Ready to connect★ 2k
- View details
golem-call-from-external-moonbitSkillAI & models
Calling Golem agents from external MoonBit applications using generated bridge SDKs. Use when the user wants to invoke agents from outside the Golem platform, from a standalone MoonBit CLI or native application.
Ready to connect★ 2k
- View details
golem-call-from-external-rustSkillAI & models
Calling Golem agents from external Rust applications using generated bridge SDKs. Use when the user wants to invoke agents from outside the Golem platform, from a Rust CLI, server, or any native Rust application.
Ready to connect★ 2k
- View details
golem-cancel-queued-invocationSkillAI & models
Canceling a pending (queued) invocation on an agent. Use when canceling, removing, or aborting an enqueued invocation that has not started yet.
Ready to connect★ 2k
- View details
golem-cli-structured-outputSkillAI & models
Understanding and parsing Golem CLI structured output. Use when using --format json, --format yaml, --format toon, discovering $type schemas with golem output-schema, or writing agents/tools that parse CLI output.
Ready to connect★ 2k
- View details
golem-configure-durability-moonbitSkillAI & models
Choosing between durable and ephemeral agents in a MoonBit Golem project. Use when the user asks to change durability mode, switch between durable and ephemeral, or configure persistence behavior.
Ready to connect★ 2k
- View details
golem-configure-durability-rustSkillAI & models
Choosing between durable and ephemeral agents in a Rust Golem project. Use when the user asks about agent durability modes, making an agent stateless, or configuring agent persistence.
Ready to connect★ 2k
- View details
golem-create-agent-instance-moonbitSkillAI & models
Pre-creating MoonBit Golem agent instances via CLI. Use when asked to create or initialize an agent instance without invoking any method.
Ready to connect★ 2k
- View details
golem-create-agent-instance-rustSkillAI & models
Creating a new Rust Golem agent instance with golem agent new. Use when asked to create, instantiate, or pre-create an agent without invoking a method.
Ready to connect★ 2k
- View details
golem-custom-snapshot-moonbitSkillAI & models
Enabling snapshot-based recovery and implementing custom snapshot save/load functions for MoonBit agents. Use when adding manual update support, custom state serialization, or — equally importantly — when a long-running agent's oplog is growing large and recovery/replay is becoming slow (heartbeats,
Ready to connect★ 2k
- View details
golem-custom-snapshot-rustSkillAI & models
Enabling snapshot-based recovery and implementing custom snapshot save/load functions for Rust agents. Use when adding manual update support, custom state serialization, or — equally importantly — when a long-running agent's oplog is growing large and recovery/replay is becoming slow (heartbeats, po
Ready to connect★ 2k
- View details
golem-delete-agentSkillAI & models
Deleting an agent instance. Use when removing, deleting, or destroying a running or idle agent instance via the CLI.
Ready to connect★ 2k
- View details
golem-fire-and-forget-moonbitSkillAI & models
Triggering a MoonBit Golem agent invocation without waiting for the result. Use when the user asks to fire-and-forget, trigger asynchronously, or enqueue an agent call from within agent code.
Ready to connect★ 2k
- View details
golem-fire-and-forget-rustSkillAI & models
Triggering an agent invocation without waiting for the result in a Rust Golem project. Use when the user asks about fire-and-forget calls, async triggers, or enqueuing agent work.
Ready to connect★ 2k
- View details
golem-get-agent-metadataSkillAI & models
Checking agent metadata and status. Use when inspecting an agent's state, component revision, environment variables, update history, or current status.
Ready to connect★ 2k
- View details
golem-http-params-moonbitSkillAI & models
Mapping path, query, header, and body parameters for HTTP endpoints in MoonBit Golem agents. Use when configuring how HTTP request data maps to agent method parameters.
Ready to connect★ 2k
- View details
golem-http-params-rustSkillAI & models
Mapping HTTP request elements to Rust agent parameters. Use when the user asks about path variables, query parameters, header mapping, request body mapping, supported parameter types, or response type mapping for HTTP endpoints.
Ready to connect★ 2k
- View details
golem-interrupt-resume-agentSkillAI & models
Interrupting and resuming a Golem agent. Use when pausing, suspending, interrupting, or resuming an agent instance via the CLI.
Ready to connect★ 2k
- View details
golem-list-and-filter-agentsSkillAI & models
Listing and querying agents with filters. Use when listing all agents, filtering agents by name, status, revision, creation time, or environment variables, or paginating through agent results.
Ready to connect★ 2k
- View details
golem-make-http-request-moonbitSkillAI & models
Making outgoing HTTP requests from MoonBit Golem agent code. Use when the user asks to call an external API, make HTTP requests, or fetch data from a URL.
Ready to connect★ 2k
- View details
golem-make-http-request-rustSkillAI & models
Making outgoing HTTP requests from a Rust Golem agent. Use when the user asks to call an external API, make HTTP requests, use an HTTP client, or send HTTP requests from agent code.
Ready to connect★ 2k
- View details
golem-mark-read-only-moonbitSkillAI & models
Marking MoonBit agent methods as read-only for a side-effect-free guarantee and result caching. Use when the user wants a cacheable query method, a method that must not write to the oplog, or HTTP GET endpoints that emit cache headers.
Ready to connect★ 2k
- View details
golem-mark-read-only-rustSkillAI & models
Marking Rust agent methods as read-only for a side-effect-free guarantee and result caching. Use when the user wants a cacheable query method, a method that must not write to the oplog, or HTTP GET endpoints that emit cache headers.
Ready to connect★ 2k
- View details
golem-multi-instance-agent-moonbitSkillAI & models
Creating multiple agent instances with the same constructor parameters using phantom agents in MoonBit. Use when the user needs multiple independent instances sharing the same identity parameters.
Ready to connect★ 2k
- View details
golem-multi-instance-agent-rustSkillAI & models
Using phantom agents in Rust to create multiple agent instances with the same constructor parameters. Use when the user needs multiple distinct agents sharing constructor values, or asks about phantom agents, phantom IDs, getPhantom/newPhantom, or multi-instance agents in Rust.
Ready to connect★ 2k
What is a skill?
A skill is plain text, usually a SKILL.md file and the scripts it refers to, written for an AI rather than for a person. It carries the steps, the house rules and the examples a good answer needs, so you stop pasting the same briefing into every new chat.
55,111 of the 55,543 skills listed here can be served through ahel today, and they come from public repositories. Each one has its own page with the instructions themselves on it, so you can read what a skill will tell your AI to do before you install it.
Install one and every AI you use gets it
Installing a skill adds it to your gateway and turns it on in the same step. Claude Code surfaces it as a slash command; any client can read the full instructions with the skill_read tool.
Nothing is copied into a project folder. The instructions are served from your account, so the same skill is there in every AI you connect, and turning it off removes it from all of them at once.