Web-validated fixture examples for marketplace testing. These files are local fixtures shaped to the documented skill directory formats.
Both ecosystems use `SKILL.md` as the primary skill entry file.
Both rely on frontmatter metadata (`name`, `description`) for discovery and routing.
Both support optional supporting files for richer workflows.
Codex supports UI metadata via `agents/openai.yaml` for list/chip presentation.
This enables icon and short-description enhancements in marketplace cards.
examples/skills/claude-basic/SKILL.md
---
name: inspect-api-surface
description: Map public API endpoints and summarize request and response contracts for fast onboarding.
---
# Inspect API Surface
## Use this skill when
- The user asks how an API is structured.
- You need a quick endpoint inventory before implementation.
## Workflow
1. Inspect route modules and routers.
2. List each endpoint with method, path, and auth requirement.
3. Summarize request body and response fields.
4. Call out risky or undocumented areas.
examples/skills/claude-scripted/SKILL.md
---
name: generate-schema-docs
description: Produce schema documentation from PostgreSQL with repeatable script output.
---
# Generate Schema Docs
## Use this skill when
- The user asks to document a schema or table set.
- You need deterministic output across environments.
## Workflow
1. Run `scripts/explore_schema.py` to fetch schema metadata.
2. Generate markdown table summaries.
3. Add business-facing notes for each table.
## Script
Use `scripts/explore_schema.py` rather than rewriting ad-hoc SQL in every run.
examples/skills/claude-scripted/scripts/explore_schema.py
#!/usr/bin/env python3
"""Minimal fixture script for schema exploration skill examples."""
import json
def main() -> None:
payload = {
"schema_name": "public",
"table_count": 2,
"tables": ["users", "skills"],
}
print(json.dumps(payload, indent=2))
if __name__ == "__main__":
main()
examples/skills/codex-basic/SKILL.md
---
name: issue-triage
description: Triage incoming bug reports into actionable implementation tasks.
metadata:
short-description: Triage bugs into fix plans
---
# Issue Triage
## Use this skill when
- A user sends a bug report and wants a clear execution plan.
- The team needs consistent prioritization and reproduction details.
## Workflow
1. Rephrase the issue in precise technical terms.
2. Identify reproduction steps and probable root cause.
3. Propose fix scope, tests, and rollout risk.
examples/skills/codex-with-ui/agents/openai.yaml
interface:
display_name: "Rollout Checklist"
short_description: "Prepare production rollout checklist"
icon_small: "./assets/rollout-small.svg"
icon_large: "./assets/rollout-large.svg"