aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Validate plugin structure, schema, and naming. Use for plugin creation, debugging, or verification.
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/validate-pluginContext preview
What this command does when you run it.
Validate plugin structure, schema, and naming. Use for plugin creation, debugging, or verification.
name: validate-plugin description: Validate plugin structure, schema, and naming. Use for plugin creation, debugging, or verification. usage: /validate-plugin [plugin-path]
This command validates a Claude Code plugin's structure against the official documentation requirements.
# Validate current directory /validate-plugin # Validate specific plugin /validate-plugin ~/claude-night-market/plugins/archetypes # Validate relative path /validate-plugin ../my-plugin
The validator performs detailed checks:
cd ~/claude-night-market/plugins/archetypes /validate-plugin
for plugin in ~/claude-night-market/plugins/*; do /validate-plugin "$plugin" done
Run the Python validation script:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/validate_plugin.py "${1:-.}"A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Scaffold new Claude Code skills with brainstorming, TDD methodology, and proper frontmatter and module structure.