git-advanced-9-monorepo-patterns

Sub-skill of git-advanced: 9. Monorepo Patterns.

5 stars

Best use case

git-advanced-9-monorepo-patterns is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Sub-skill of git-advanced: 9. Monorepo Patterns.

Teams using git-advanced-9-monorepo-patterns should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/9-monorepo-patterns/SKILL.md --create-dirs "https://raw.githubusercontent.com/vamseeachanta/workspace-hub/main/.agents/skills/_archive/operations/devtools/git-advanced/9-monorepo-patterns/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/9-monorepo-patterns/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How git-advanced-9-monorepo-patterns Compares

Feature / Agentgit-advanced-9-monorepo-patternsStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Sub-skill of git-advanced: 9. Monorepo Patterns.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 9. Monorepo Patterns

## 9. Monorepo Patterns


**Sparse Checkout:**
```bash
# Enable sparse checkout
git sparse-checkout init

# Set patterns
git sparse-checkout set packages/app packages/shared

# Add more patterns
git sparse-checkout add docs

# Disable sparse checkout
git sparse-checkout disable
```

**Working with Monorepos:**
```bash
# Clone specific directory only
git clone --filter=blob:none --sparse https://github.com/user/monorepo
cd monorepo
git sparse-checkout set packages/my-package

# Shallow clone for faster checkout
git clone --depth 1 --filter=blob:none --sparse https://github.com/user/monorepo

# Partial clone (fetch objects on demand)
git clone --filter=blob:none https://github.com/user/monorepo
```

**Monorepo Commit Strategy:**
```bash
# Commit message with scope
git commit -m "feat(package-name): add feature X"

# Using conventional commits
feat(api): add new endpoint
fix(web): resolve routing issue
chore(deps): update dependencies
docs(shared): improve API documentation
```

Related Skills

taxact-browser-automation-patterns

5
from vamseeachanta/workspace-hub

Patterns for automating TaxAct Business online (Ionic SPA) via Chrome browser MCP tools — field interaction, navigation, shadow DOM handling

shell-script-hardening-patterns

5
from vamseeachanta/workspace-hub

Harden Bash automation scripts with TDD-first static and behavioral checks, safe Python invocation via uv, locking, persistent state, and review-driven correction loops.

repo-cleanup-conflict-resolution-patterns

5
from vamseeachanta/workspace-hub

Sub-skill of repo-cleanup: Conflict Resolution Patterns (+2).

skill-creator-advanced-usage

5
from vamseeachanta/workspace-hub

Sub-skill of skill-creator: Advanced Usage.

git-advanced-7-git-aliases

5
from vamseeachanta/workspace-hub

Sub-skill of git-advanced: 7. Git Aliases (+1).

git-advanced-6-git-hooks

5
from vamseeachanta/workspace-hub

Sub-skill of git-advanced: 6. Git Hooks.

git-advanced-3-git-bisect

5
from vamseeachanta/workspace-hub

Sub-skill of git-advanced: 3. Git Bisect (+2).

git-advanced-1-interactive-rebase

5
from vamseeachanta/workspace-hub

Sub-skill of git-advanced: 1. Interactive Rebase (+1).

git-advanced-1-complete-gitconfig

5
from vamseeachanta/workspace-hub

Sub-skill of git-advanced: 1. Complete .gitconfig (+2).

git-advanced-1-commit-history

5
from vamseeachanta/workspace-hub

Sub-skill of git-advanced: 1. Commit History (+2).

docker-4-networking-patterns

5
from vamseeachanta/workspace-hub

Sub-skill of docker: 4. Networking Patterns (+1).

docker-1-basic-dockerfile-patterns

5
from vamseeachanta/workspace-hub

Sub-skill of docker: 1. Basic Dockerfile Patterns.