Skills for working with RWX.
Important
This repository is under active development and is not yet fully supported.
claude plugin install --from-repo https://github.com/rwx-cloud/skills
npx skills add rwx-cloud/skills
Codex automatically reads AGENTS.md from the repo root and discovers the MCP
server from .codex/config.toml. Clone the repo and ensure rwx is on PATH.
The .vscode/mcp.json config is picked up automatically when the repo is open.
Copilot also reads .github/copilot-instructions.md for skill context.
Migrates a GitHub Actions workflow to RWX.
/rwx:migrate-from-gha .github/workflows/ci.yml
The skill will:
- Read and analyze the source workflow
- Translate triggers, jobs, and steps into RWX config
- Optimize for RWX strengths — parallel DAG, content-based caching, package substitution
- Write the output to
.rwx/<name>.yml - Validate via
rwx lintand fix any errors - Run an automated review to catch gaps
- Summarize the migration and next steps
Reviews a generated RWX config against the original GitHub Actions workflow.
/rwx:review-gha-migration .rwx/ci.yml
- Skills (
skills/*/SKILL.md) — Agent-neutral procedural playbooks. Each skill includescurlcommands for fetching the latest reference documentation directly. - MCP (
.mcp.json) — Connects torwx mcp servefor package lookups, server-side translation, and on-demand docs. Optional — skills work standalone. - LSP (
.lsp.json) — Connects to the RWX language server for real-time validation of.rwx/*.ymlfiles (Claude Code). - CLI Validation —
rwx lint <file>provides validation for all agents via the command line.
| File | Agent(s) | Purpose |
|---|---|---|
AGENTS.md |
Codex, OpenCode | Vendor-neutral agent instructions |
.claude-plugin/plugin.json |
Claude Code | Plugin discovery |
.claude/settings.local.json |
Claude Code | Permissions and MCP config |
.lsp.json |
Claude Code | Real-time LSP validation |
.mcp.json |
Claude Code | MCP server config |
.codex/config.toml |
Codex | MCP server config (TOML) |
.vscode/mcp.json |
Cursor, Copilot | MCP server config (VS Code) |
.github/copilot-instructions.md |
GitHub Copilot | Agent instructions |
marketplace.json |
Universal | Skill registry for npx skills add |
The evals/ directory contains a Go-based evaluation framework that tests
skills end-to-end by running Claude headlessly against fixtures. See
evals/README.md for details.
- RWX CLI
(
rwxon PATH)
MIT