askill
meta-plugins

meta-pluginsSafety 90Repository

How the meta plugin system intercepts and enhances commands.

1 stars
1.2k downloads
Updated 2/21/2026

Package Files

Loading files...
SKILL.md

Meta Plugins Skill

Meta uses a plugin system to intercept commands and provide enhanced behavior.

How Plugins Work

When you run meta <command>, meta checks if a plugin handles that command pattern:

  1. Plugin matches → Plugin executes with special logic
  2. No plugin → Shows help (use meta exec for arbitrary commands)

Example:

  • meta git status → git plugin runs git status in all repos
  • meta git clone <url> → git plugin clones parent + all children from .meta
  • meta npm install → unrecognized, shows help; use meta exec npm install

Built-in Plugins

Git Plugin (meta-git)

Handles all meta git * commands with special cases:

CommandBehavior
meta git clone <url>Clone parent, read .meta, clone all children
meta git updateClone missing repos, pull existing ones
meta git snapshot *Create/restore workspace state
meta git setup-sshConfigure SSH multiplexing
meta git <other>Pass through to all repos

Project Plugin (meta-project)

Workspace management:

meta project list      # List projects from .meta
meta project check     # Verify all repos exist
meta project sync      # Clone missing repos

Rust Plugin (meta-rust)

Cargo workspace awareness:

meta rust build        # Build with workspace detection
meta rust test         # Test with proper ordering

Plugin Discovery

Plugins are discovered from:

  1. .meta-plugins/ in current directory
  2. ~/.meta-plugins/ in home directory
  3. Executables named meta-* in PATH

Plugin Management

# List installed plugins
meta plugin list

# Search registry for plugins
meta plugin search <query>

# Install from registry
meta plugin install <name>

# Uninstall
meta plugin uninstall <name>

Understanding Command Flow

meta git status
  │
  ├─ Is there a 'git' plugin? Yes (meta-git)
  │
  ├─ Plugin receives: command="git status", projects=[list]
  │
  ├─ Plugin returns: ExecutionPlan with commands per repo
  │
  └─ Meta executes plan via loop engine

For commands with special handling (like clone), the plugin does the work directly instead of returning an execution plan.

Why This Matters

Plugins let you:

  • Extend meta with domain-specific behavior
  • Intercept patterns like git clone to add meta-aware logic
  • Provide help text via meta <plugin> --help

When you see a command behave "magically" (like meta git clone cloning multiple repos), a plugin is handling it.

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

73/100Analyzed 2/24/2026

Good reference documentation for the meta plugin system covering how plugins work, built-in plugins (git, project, rust), discovery mechanisms, and management commands. Well-structured with tables and flow diagrams. However, lacks custom plugin creation guidance which limits actionability, and the deeply nested path suggests potential internal-only context despite the public-documentation tone.

90
78
68
65
60

Metadata

Licenseunknown
Version-
Updated2/21/2026
Publisherharmony-labs

Tags

ci-cdtesting