askill
meta-workspace

meta-workspaceSafety 90Repository

Understanding and operating in meta repository workspaces with .meta/.meta.yaml configuration.

1 stars
1.2k downloads
Updated 2/7/2026

Package Files

Loading files...
SKILL.md

Meta Workspace Skill

This project is a meta repository - a parent repo that manages a graph of child repositories. Understanding this structure is essential for effective operation.

Starting a Session

When you begin working in a meta repo, discover its structure:

meta project list --json

This returns repos, paths, and tags. Use this to:

  • Know which repos exist before making changes
  • Identify available tags for filtering operations
  • Understand the project graph

Run meta git status to see the current state across all repos.

Why This Matters for You (Claude)

In a meta repo, changes often span multiple repositories. Using meta commands instead of plain git lets you:

  • Operate on all repos with one command - fewer tool calls, less context
  • Maintain consistency - same commit message, same branch across repos
  • Never miss a repo - meta tracks them all

The .meta File

The .meta file defines child repositories:

{
  "projects": {
    "api": "git@github.com:org/api.git",
    "web": {
      "repo": "git@github.com:org/web.git",
      "path": "./frontend/web",
      "tags": ["frontend", "typescript"]
    }
  }
}

Simple format: "name": "git-url" - clones to ./name Extended format: Object with repo, optional path, optional tags

YAML is also supported (.meta.yaml or .meta.yml).

Discovering What's Here

# List all projects in this workspace
meta project list

# See git status across ALL repos at once
meta git status

Filtering by Tag

When projects have tags, filter operations:

# Only frontend repos
meta --tag frontend git status

# Multiple tags (comma-separated)
meta --tag backend,api exec -- make test

# Exclude specific repos
meta --exclude legacy-service git pull

Nested Meta Repos

Meta repos can contain other meta repos. Use --recursive to operate on the entire graph:

# Clone a meta repo and ALL nested meta repos
meta git clone <url> --recursive

# Status across entire graph
meta --recursive git status

The --depth N flag limits recursion depth.

Key Commands Quick Reference

CommandWhat It Does
meta git statusGit status in ALL repos
meta git clone <url>Clone meta repo + all children
meta exec -- <cmd>Run command in all repos
meta project listList all child projects
meta init claudeInstall these skills

MCP Tools for Workspace Discovery

When the meta MCP server is available, these tools provide structured JSON for programmatic workspace operations:

ToolPurpose
meta_workspace_stateFull workspace state in one call (projects, branches, dirty status)
meta_query_reposFilter repos by state: dirty:true, tag:backend, branch:main
meta_analyze_impactCheck transitive dependents before modifying a repo
meta_execution_orderGet topological build/deploy order respecting dependency graph

Efficiency Tips

  • One command, all repos: meta git status replaces N individual cd && git status calls
  • Targeted operations: meta --include repo1,repo2 exec -- cmd operates on exactly the repos you need
  • Tag-based filtering: meta --tag backend exec -- cargo test scopes to tagged repos
  • Dependency awareness: meta_analyze_impact <repo> shows who depends on a repo before you modify it — prevents cascading fix-up commits
  • Session start: Always run meta project list --json first to get the workspace map

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

95/100Analyzed 2/13/2026

An excellent, highly actionable skill that teaches an agent how to effectively use the 'meta' CLI tool. It includes clear triggers, specific commands, configuration formats, and efficiency tips tailored for AI interaction.

90
95
90
95
95

Metadata

Licenseunknown
Version-
Updated2/7/2026
Publisherharmony-labs

Tags

apici-cdgithubllmtesting