Remote OpenClaw
Menu
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Remote OpenClaw
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Skills/boshu2/agentops/standards
standards logo

standards

boshu2/agentops
813 installs392 stars
Run it on Hostinger →up to 70% off + an extra 10% with code ZACAARON10Free API →

Installation

npx skills add https://github.com/boshu2/agentops --skill standards

Summary

Source of truth: docs/contracts/codex skill api.md

SKILL.md

Codex Skill Standards

Canonical Contract

Source of truth: docs/contracts/codex-skill-api.md

Frontmatter

Codex SKILL.md frontmatter must contain only name and description:

---
name: skill-name
description: 'When this skill triggers and when it does not.'
---

Prohibited fields (Claude-internal, ignored by Codex): skill_api_version, context, metadata, allowed-tools, model, user-invocable, output_contract

Tool References

Skills must reference only tools available in Codex sessions:

Codex ToolPurposeClaude Equivalent
read_fileRead file contentsRead
apply_patchApply file editsEdit
rgSearch file contentsGrep
glob_file_searchFind files by patternGlob
cmdShell executionBash
gitGit operationsBash(git ...)
list_dirList directoryBash(ls)
spawn_agentSpawn a focused sub-agentAgent
send_inputSend follow-up input to a sub-agentSendMessage
wait_agentWait for one or more sub-agentsBuilt into Agent tool
close_agentStop a stuck or no-longer-needed sub-agentTaskStop

Prohibited Tool References

These Claude Code primitives have no Codex equivalent and must not appear:

  • TaskCreate, TaskList, TaskUpdate, TaskGet, TaskStop
  • TeamCreate, TeamDelete, SendMessage
  • EnterPlanMode, ExitPlanMode, EnterWorktree
  • Skill(skill=...) — Codex uses $skill-name invocation, not a Skill tool
  • Agent(subagent_type=...) — Codex uses agent roles, not subagent_type

Mapped Forms Also Prohibited

Lowercase-hyphenated forms are equally invalid (task-create, team-create, send-message).

The previously-mapped todo_write and update_plan are not available as general-purpose tools in Codex sessions (empirically verified via codex exec).

Skill Discovery Paths

ScopePath
Repo.agents/skills/
User~/.agents/skills/
Admin/etc/codex/skills/

Prohibited paths: ~/.claude/skills/, ~/.codex/skills/

Sub-Agent Patterns

Codex orchestration uses:

PatternToolUse Case
Repeated spawnspawn_agentMany similar tasks, one agent per unit of work
Agent rolesagent_typeSpecialized sub-agents (worker, explorer, monitor)
Shell orchestrationcmd + bd CLIIssue tracking, wave management

NOT: TaskList-based queueing, TeamCreate/SendMessage coordination, or Skill tool chaining.

Common Issues

PatternProblemFix
TaskCreate(subject=...)Claude primitive, doesn't existUse bd create via shell or spawn_agent
TeamCreate(team_name=...)Claude primitive, doesn't existUse agent roles in config
SendMessage(to=...)Claude primitive, doesn't existUse send_input for brief follow-up messages
Skill(skill="vibe")Claude Skill tool, doesn't existUse $validate invocation syntax
context.window: forkClaude frontmatter, ignoredRemove from Codex SKILL.md
~/.claude/skills/Wrong pathUse .agents/skills/
todo_write(...)Not available in Codex sessionsUse bd CLI or file-based tracking

Testing Codex Skills

Two-Phase Validation (Recommended)

Use a two-phase approach for comprehensive coverage at minimal cost:

Phase 1 — Static (fast, no API cost):

  • Check frontmatter has only name + description
  • Grep for Claude-only primitives (TaskCreate, TeamCreate, SendMessage, etc.)
  • Check for ~/.claude/ paths
  • Verify reference files are also clean

Phase 2 — Live (thorough, requires Codex API):

# Check if skill loads and is understood
codex exec -s read-only -C "$(pwd)" \
  "Read \$skill-name. Verify it loads, check all referenced tools exist. Rate PASS/PARTIAL/FAIL."

DAG-First Traversal

When validating multiple interdependent skills, traverse in dependency order (leaves first). This ensures that when a skill references $other-skill, the referenced skill has already been validated. Encode the dependency graph explicitly — computed DAGs from frontmatter parsing are error-prone.

Prompt Constraint Boundaries

When using LLM judges to evaluate skills, always include explicit constraint boundaries:

  • "Read-only sandbox and missing network access are NOT reasons to FAIL — those are test environment limits, not skill defects"
  • "Rate the skill's design quality, not whether it can execute in this test environment"

Without these boundaries, judges conflate environment limits with skill defects.

Shell Compatibility

Scripts that validate Codex skills must work on both macOS (BSD tools) and Linux (GNU tools):

  • Use [[:space:]] not \s in grep patterns (BSD grep doesn't support \s)
  • Use awk instead of BSD-incompatible sed compound expressions
  • Pre-process multi-line LLM output with tr -d '\n' before regex extraction

Release Gate Script

Full DAG-based validation: scripts/smoke-test-codex-skills.sh

scripts/smoke-test-codex-skills.sh --static-only    # Fast CI check (no API)
scripts/smoke-test-codex-skills.sh --chain 2         # Test one chain
scripts/smoke-test-codex-skills.sh                   # Full 54-skill live test

Checklist

When reviewing Codex skills (skills-codex/*/SKILL.md):

  • [ ] Frontmatter has only name + description
  • [ ] No Claude primitive names (PascalCase or lowercase-hyphenated)
  • [ ] No ~/.claude/ paths
  • [ ] No Skill(skill=...) tool invocations
  • [ ] No Agent(subagent_type=...) tool invocations
  • [ ] No context. or metadata. frontmatter
  • [ ] Reference files (references/*.md) also free of Claude primitives
  • [ ] Instructions are actionable for a Codex agent with only Codex tools

Score

0–100
55/ 100

Grade

C

Popularity15/30

813 installs — growing adoption.

Completeness19/30

Documented: full SKILL.md body, one-line install. Missing: description, category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Standards skill score badge previewScore badge

Markdown

[![Standards skill](https://www.remoteopenclaw.com/skills/boshu2/agentops/standards/badges/score.svg)](https://www.remoteopenclaw.com/skills/boshu2/agentops/standards)

HTML

<a href="https://www.remoteopenclaw.com/skills/boshu2/agentops/standards"><img src="https://www.remoteopenclaw.com/skills/boshu2/agentops/standards/badges/score.svg" alt="Standards skill"/></a>

Standards FAQ

How do I install the Standards skill?

Run “npx skills add https://github.com/boshu2/agentops --skill standards” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Standards skill do?

Source of truth: docs/contracts/codex skill api.md The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Standards skill free?

Yes. Standards is a free, open-source skill published from boshu2/agentops. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Standards work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Standards works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
View on GitHub

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.7M installsInstall
frontend-design logo

frontend-design

anthropics/skills

721K installsInstall
grill-me logo

grill-me

mattpocock/skills

702K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

597K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

595K installsInstall
vercel-react-best-practices logo

vercel-react-best-practices

vercel-labs/agent-skills

591K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Documentation Skills For AI AgentsGuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before Installing

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

The Agent Stack: weekly agent tooling digest, free.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • MCP Clients
  • Marketplace
  • Hermes Ecosystem
  • Free guide
  • Learn
  • OpenClaw for Creators
  • OpenClaw for Founders
  • Blog
  • The Agent Stack (Digest)

More

  • Submit a Tool
  • Advertise
  • Playbook
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy

Know a company that should advertise here? Refer them and earn 10% — up to $300 per referral.

© 2026 Remote OpenClaw
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed