Foundational infrastructure patterns shared across all leyline skills. Triggers: leyline patterns, shared infrastructure, python imports, config patterns, leyline foundation, cross-skill patterns Use when: other leyline skills need common patterns, creating new infrastructure skills, ensuring consistency across leyline plugin DO NOT use directly: this skill is infrastructure for other leyline skills. This skill provides shared patterns consumed by other leyline skills.
/plugin marketplace add athola/claude-night-market/plugin install leyline@claude-night-marketThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Foundational patterns for the leyline infrastructure layer. These patterns are used across all leyline skills and by plugins that depend on leyline.
The modules/python-imports.md module documents how to import leyline utilities:
The modules/error-handling.md module standardizes error handling:
The modules/config-patterns.md module provides configuration standards:
leyline/skills/
├── shared/ # This skill - foundational patterns
├── mecw-patterns/ # Context window management
├── progressive-loading/ # On-demand content loading
├── evaluation-framework/# Scoring and decision thresholds
├── storage-templates/ # Knowledge storage formats
├── pytest-config/ # Testing infrastructure
├── testing-quality-standards/ # Test quality criteria
├── quota-management/ # Service quota tracking
├── usage-logging/ # Audit trail patterns
├── service-registry/ # Service configuration
├── error-patterns/ # Error handling
└── authentication-patterns/ # Auth verification
Leyline provides the foundation layer. Other plugins reference leyline skills:
conservation uses mecw-patterns, progressive-loadingconjure uses quota-management, usage-logging, service-registrymemory-palace uses evaluation-framework, storage-templates