Coordinates changes across multiple repositories by syncing skills, templates, agents, and harness policies via git-mediated workflows or specification-mediated patterns for multi-repo projects.
npx claudepluginhub habitat-thinking/ai-literacy-superpowers --plugin ai-literacy-superpowersThis skill uses the workspace's default tool permissions.
When a project spans multiple repositories, the practices that work
Extracts, diffs, and propagates GitHub workflows and tooling configs like renovate.json across organization repos. Use for syncing improvements via extract/diff/apply modes.
Coordinates multi-repo campaigns using scope claims, discovery relay, wave-based execution, and shared context. Use for cross-repo changes like shared services, monolith breakdowns, or infra spanning repos.
Initializes and configures projects: detects tech stacks, scaffolds new apps, creates task files, sets branch strategies, handles git submodules, exports to other AI platforms.
Share bugs, ideas, or general feedback.
When a project spans multiple repositories, the practices that work within a single repo — specification-driven development, harness enforcement, compound learning — must extend across repo boundaries. This skill teaches two patterns for cross-repo coordination, each suited to a different maturity level.
This skill does not cover single-repo agent orchestration (see the orchestrator agent), CI/CD pipeline design, or monorepo tooling.
For worked examples and the sync workflow, consult
references/sync-patterns.md.
| Situation | Pattern |
|---|---|
| Syncing skills, templates, or hooks from a framework repo to a plugin repo | L4: Git-mediated |
| Propagating harness changes to downstream consumers | L4: Git-mediated |
| Rolling out a new convention across 2-5 related repos | L4: Git-mediated |
| Managing shared standards across 10+ repos in a portfolio | L5: Specification-mediated |
| Aggregating health snapshots across an organisation | L5: Specification-mediated |
| Designing platform-level harness policies | L5: Specification-mediated |
A single agent (or human) applies changes from an upstream repo to one or more downstream repos using git's standard workflow.
Not everything should flow downstream. Define clear boundaries:
| Sync | Don't sync |
|---|---|
| Skills (tool-agnostic knowledge) | HARNESS.md (project-specific constraints) |
| Agent definitions (pipeline patterns) | AGENTS.md (project-specific learnings) |
| Hook scripts and hooks.json | REFLECTION_LOG.md (project-specific reflections) |
| Templates (starting points) | Specs and plans (project-specific features) |
| CI workflow templates | Project source code |
Document what the upstream repo exports in its README or a dedicated manifest section. At minimum, state:
| Anti-pattern | Problem | Fix |
|---|---|---|
| Sync without contracts | Nobody knows what should flow where | Declare exports in README or manifest |
| Bidirectional sync | Changes flow both ways, causing conflicts | Pick one direction — upstream is authoritative |
| Sync everything | Downstream repos lose their identity | Only sync what's declared as exported |
| Manual ad-hoc copies | Drift accumulates silently | Use a documented sync command or workflow |
| Sync without CI | Broken changes propagate downstream | Every sync goes through a PR with CI checks |
At organisational scale, git-mediated sync becomes unwieldy. Repos declare their dependencies through specification manifests, and a platform orchestrator resolves and propagates changes.
Each repo declares what it exports and imports:
# .repo-manifest.yml (sketch — not yet a formal standard)
name: ai-literacy-superpowers
version: 0.1.0
exports:
skills:
- literate-programming
- cupid-code-review
- harness-engineering
- convention-extraction
- cross-repo-orchestration
agents:
- orchestrator
- code-reviewer
- integration-agent
hooks:
- constraint-gate
- drift-check
- snapshot-staleness
imports: [] # This is a root/platform repo — it imports nothing
A downstream repo declares what it consumes:
name: ai-literacy-exemplar
version: 0.1.0
exports:
agents:
- go-implementer # project-specific, not imported
imports:
- source: ai-literacy-superpowers
version: ">=0.1.0"
artefacts:
- skills/*
- hooks/*
When the platform repo changes a harness policy (e.g. raises the mutation testing threshold), downstream repos that import that policy inherit the change through their manifest contract. The platform orchestrator:
Health snapshots aggregate across the portfolio:
Portfolio Health — 2026-04-01
Repos: 12
At L3+: 9 (75%)
Below threshold: 3 (api-gateway, legacy-auth, billing-service)
Enforcement average: 84%
Mutation score average: 76%
Repos with stale snapshots: 1 (legacy-auth, 45 days)
This extends the single-repo harness observability pattern to organisational scale.
| Factor | Git-Mediated (L4) | Specification-Mediated (L5) |
|---|---|---|
| Number of repos | 2-5 | 10+ |
| Sync frequency | After specific changes | Continuous/automated |
| Coordination | Single agent or human | Platform orchestrator |
| Contract format | README documentation | Formal manifest files |
| Portfolio visibility | Per-repo snapshots | Aggregated dashboard |
| Team maturity needed | L4 (spec-first workflow) | L5 (platform engineering) |
Start with git-mediated. Graduate to specification-mediated when the portfolio grows beyond what a single agent can manage.