review-plugin

Audit AnimalAL plugin implementations against NestedKernel SK standards.

Updated Jan 16, 2026
One-click install
npx skills add https://github.com/dezverev/AnimalAL-v1 --skill review-plugin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: review-plugin
Source: https://github.com/dezverev/AnimalAL-v1/tree/main/.cursor/skills/review-plugin
Command: npx skills add https://github.com/dezverev/AnimalAL-v1 --skill review-plugin

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill identifies and audits plugin implementations against AnimalAL project standards to ensure correctness, safety, and maintainability during nested kernel usage.

Core Features & Use Cases

  • Guided audit: Checks compliance with patterns (NestedKernel.SK structure), IDisposable, IInternalCallTracker, ChatHistory parameters, logger usage, error handling, description attributes, thread-safety, lazy initialization, registration, and test coverage.
  • Consistency checks: Validates that plugins implement required interfaces and are registered properly.
  • When to use: Use when auditing a plugin for conformance to project standards or preparing for review.

Quick Start

Run /review-plugin NestedStockPlugin to audit a single nested plugin, or /review-plugin --all --nested to audit all nested plugins. You can also run /review-plugin <PluginName> --suggest-fixes to receive concrete improvement recommendations.

Frequently Asked Questions about review-plugin

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I audit a plugin for nested kernel compliance in AnimalAL?

To audit a plugin for nested kernel compliance, run a review targeting the plugin name to automatically verify IDisposable implementation, IInternalCallTracker usage, ChatHistory parameters, logging, thread-safety, and proper registration against AnimalAL standards.

Can I check all AnimalAL plugins for IDisposable and IInternalCallTracker conformity at once?

Yes, you can audit all nested plugins simultaneously by running the broad audit command. This checks every NestedKernel SK pattern for IInternalCallTracker, IDisposable, thread-safety, lazy initialization, and test coverage consistency across the entire project.

What does a nested kernel plugin review check for in AnimalAL?

A nested kernel plugin review checks for IDisposable and IInternalCallTracker implementation, ChatHistory parameter usage, logging integration, error handling, description attributes, thread-safety, lazy initialization, registration, and test coverage conformity.

How do I get concrete improvement suggestions for AnimalAL plugin code?

To get concrete improvement suggestions for AnimalAL plugin code, append the suggest-fixes flag to your plugin review command. This provides actionable feedback to correct deviations from nested kernel standards and shared test suite expectations.

Do I need reference implementations to validate AnimalAL plugin consistency?

Yes, reference implementations and shared test suites are required to validate plugin consistency. The review process compares your plugin against these references to verify correctness, safety, and maintainability during nested kernel usage.

When should I run a plugin code review for AnimalAL nested kernel patterns?

You should run a plugin code review when auditing a plugin for conformance to AnimalAL project standards or preparing for a formal code review, ensuring correct IDisposable, logging, and thread-safety implementation before deployment.