agent-audit
Audit agents spawned in the current/last run against the agent-selection taxonomy
Auto-generate a Claude Code skill (commands + types + client) from any OpenAPI 3.x spec URL or file path
> /plugin marketplace add heymegabyte/claude-skillsHow it fires
How this command gets triggered: by you, by Claude, or both.
/forge-from-openapiContext preview
What this command does when you run it.
Auto-generate a Claude Code skill (commands + types + client) from any OpenAPI 3.x spec URL or file path
description: Auto-generate a Claude Code skill (commands + types + client) from any OpenAPI 3.x spec URL or file path argument-hint: <openapi-url-or-path> <skill-name> [--triggers <t1,t2>] [--base-url <url>] allowed-tools: Bash, Read, Write, Edit, Glob
Auto-forge a complete Claude Code skill from an OpenAPI spec. Generates slash commands (one per endpoint), `types.ts`, `client.ts`, and a `SKILL.md`.
/forge-from-openapi https://api.stripe.com/openapi.json stripe /forge-from-openapi https://api.resend.com/openapi.json resend --triggers "send email,resend" /forge-from-openapi ./local-spec.json my-api --base-url https://api.myapp.com
Run the forge script against the provided spec and output directory, then review and report results.
SKILL_NAME="${ARGUMENTS%% *}"
SPEC_URL="${ARGUMENTS#* }"
node ~/.agentskills/bin/forge-skill-from-openapi.mjs \
$SPEC_URL \
~/.agentskills/${SKILL_NAME}-api \
--name ${SKILL_NAME}-api \
2>&1After the script completes:
1. **Report the file tree** — run `find ~/.agentskills/${SKILL_NAME}-api -type f | sort` and show results 2. **Spot-check 3 commands** — read 3 generated command files and verify they have valid frontmatter + curl examples 3. **Check types.ts** — confirm it has at least one exported type 4. **Summarize** — report: API name, endpoint count, schema type count, any errors 5. **Offer hand-edit pass** — ask user which high-traffic endpoints to enrich with real examples
After forge runs, apply these improvements to the 3 most important commands:
YAML specs require `js-yaml`: `npm i -g js-yaml`. JSON specs work with zero installs.
14-category autonomous product-building OS for 32+ AI coding tools. One-line prompts → deployed products.
Repo: heymegabyte/claude-skills
Audit agents spawned in the current/last run against the agent-selection taxonomy
Run the Agent Diversity Review gate and emit the result table
Meta-analyze the effectiveness of a /loop arc — per-iteration metrics, LOC delta trend, saturation detection, and a keep/lengthen/delete recommendation.
Audit the rules/ directory for missing foundational principles; output gap list with priority and justification
Validate ~/.claude/settings.json hooks block — event names, file existence, executability, matcher syntax; --fix repairs common issues
Catch Resend-class bug (isError: false on HTTP 4xx/5xx) across all MCP server tool handlers