Agent skill · Code Review & Quality

plugin-dev-workflow

Guide plugin development workflow — editing skills, agents, hooks, or eval framework in this repo. Use when modifying files in plugins/elixir-phoenix/, lab/eval/, or lab/autoresearch/. Ensures changes pass eval, lint, and tests before committing.

oliver-kriskagithub.com/oliver-kriskaGitHub ↗
claude-codeMIT
Install
npx skills add oliver-kriska/claude-elixir-phoenix --skill plugin-dev-workflow --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: .claude/skills/plugin-dev-workflow/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 515
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Plugin Development Workflow This repo is the Elixir/Phoenix Claude Code plugin. When editing plugin files, follow this workflow to ensure quality. ## Before You Start Run `make help` to see all available commands: ```bash make eval # Quick: lint + score changed skills/agents make eval-all # Full: all 51 skills + 26 agents make eval-fix # Auto-fix + show failures make test # 220 pytest tests for eval framework and port tooling make ci # Full CI pipeline ``` ## Scoring Individual Files (CLI) IMPORTANT: Always use `-m` module syntax, never run scorer.py directly. ```bash # Score ONE skill (use -m, NOT direct file path) python3 -m lab.eval.scorer plugins/elixir-phoenix/skills/verify/SKILL.md # Score ONE skill with pretty output python3 -m lab.eval.scorer plugins/elixir-phoenix/skills/verify/SKILL.md --pretty # Score all skills python3 -m lab.eval.scorer --all # Score ONE agent python3 -m lab.eval.agent_scorer plugins/elixir-phoenix/agents/verification-runner.md # Score all agents python3 -m lab.eval.agent_scorer --all make ci # Full CI pipeline ``` ## When Editing Skills (plugins/elixir-phoenix/skills/*/SKILL.md) 1. **Read CLAUDE.md** conventions (size limits, frontmatter requirement

What's inside
Steps it walks through
  1. Before You Start
  2. Scoring Individual Files (CLI)
  3. When Editing Skills (plugins/elixir-phoenix/skills//SKILL.md)
  4. When Editing Agents (plugins/elixir-phoenix/agents/.md)
  5. When Editing Eval Framework (lab/eval/.py)
  6. When Editing Hooks (plugins/elixir-phoenix/hooks/scripts/.sh)
  7. Autoresearch (Self-Improvement Loop)
  8. Pre-Commit Checklist
  9. References
Commands it runs
make eval          # Quick: lint + score changed skills/agents
make eval-all      # Full: all 51 skills + 26 agents
make eval-fix      # Auto-fix + show failures
make test          # 220 pytest tests for eval framework and port tooling
make ci            # Full CI pipeline
Score ONE skill (use -m, NOT direct file path)
python3 -m lab.eval.scorer plugins/elixir-phoenix/skills/verify/SKILL.md
Score ONE skill with pretty output
python3 -m lab.eval.scorer plugins/elixir-phoenix/skills/verify/SKILL.md --pretty
Score all skills
More from claude-elixir-phoenix
All skills →
About this skill
What does the plugin-dev-workflow skill do?

Guide plugin development workflow — editing skills, agents, hooks, or eval framework in this repo. Use when modifying files in plugins/elixir-phoenix/, lab/eval/, or lab/autoresearch/. Ensures changes pass eval, lint, and tests before committing.

How do I install it?

Run `npx skills add oliver-kriska/claude-elixir-phoenix --skill plugin-dev-workflow --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From oliver-kriska/claude-elixir-phoenix, a repository with 515 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going