aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Minimum pass rate threshold (0.0-1.0, default 0.8)
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/verify-pluginContext preview
What this command does when you run it.
Minimum pass rate threshold (0.0-1.0, default 0.8)
name: verify-plugin
description: Verify plugin behavioral contract history via GitHub Attestations (SLSA)
arguments:
- name: plugin-name
description: Name of the plugin to verify
required: true
- name: --level
description: Minimum assertion level to check (L1, L2, L3)
required: false
- name: --min-score
description: Minimum pass rate threshold (0.0-1.0, default 0.8)
required: falseQuery GitHub Actions workflow runs for a plugin's behavioral contract assertion history and produce a trust assessment. Uses GitHub's free SLSA attestation infrastructure.
The command runs the verification script which:
1. **Parse arguments**: plugin name, optional level and score threshold 2. **Query GitHub API**: fetch recent workflow run results for the repository 3. **Compute pass rates**: calculate L1/L2/L3 pass rates from workflow conclusions 4. **Produce assessment**: return a recommendation of "trusted", "caution", or "untrusted" based on whether the target level meets the minimum score threshold
The script prints a human-readable summary:
Plugin: sanctum Recommendation: trusted Meets threshold: True Level scores: L1: 10/10 (100.0% pass rate) L2: 0/0 (0.0% pass rate) L3: 0/0 (0.0% pass rate) Recent assertions: 10 records
Use `--json` for machine-readable output in CI.
| Code | Meaning | |------|---------| | 0 | Plugin meets trust threshold | | 1 | Plugin does not meet threshold | | 2 | Error (gh CLI unavailable, API failure) |
Verify with defaults (L1, 80% threshold):
python3 plugins/leyline/scripts/verify_plugin.py sanctum
Strict L3 verification:
python3 plugins/leyline/scripts/verify_plugin.py sanctum --level L3 --min-score 0.9
JSON output for CI:
python3 plugins/leyline/scripts/verify_plugin.py sanctum --json
(default: athola/claude-night-market)
needed
workflow runs
threshold (e.g., for 0.8 threshold, 0.56-0.79 is caution)
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.