Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
broomva avatar

Symphony Forge

  • 4 installs
  • 1 repo stars
  • Updated April 1, 2026
  • broomva/symphony-forge

symphony-forge is a CLI and Claude skill that extends next-forge with a composable control metalayer of governance gates, build automation, and AI agent instructions.

About

symphony-forge is a Claude skill and CLI that extends the next-forge template with a composable control metalayer for AI agent governance. It adds five layers (control, harness, knowledge, consciousness, autoany) that generate policy gates, build automation scripts, an Obsidian docs skeleton, agent instructions, and an EGRI self-improvement config. A developer uses it to make a project autonomous-agent-ready from day one and to run entropy audits. It tracks installed layers in a manifest file.

  • CLI that adds a composable control metalayer to next-forge projects
  • Generates governance gates, harness scripts, and CLAUDE.md/AGENTS.md
  • Sets up an EGRI evaluate-generate-rank-integrate self-improvement loop

Symphony Forge by the numbers

  • 4 all-time installs (skills.sh)
  • Ranked #13,372 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

symphony-forge capabilities & compatibility

Capabilities
agent governance · project scaffold · policy gates
Works with
github
Use cases
ci cd · documentation · orchestration
Runs
Runs locally
Pricing
Free
From the docs

What symphony-forge says it does

symphony-forge is a CLI tool that extends next-forge (the production-grade Turborepo template) with a **composable control metalayer**
SKILL.md
governance gates, build automation, knowledge graphs, and AI agent instructions that make projects autonomous-agent-ready from day one.
SKILL.md
Generates 9 executable bash scripts + Makefile + CI workflow:
SKILL.md
npx skills add https://github.com/broomva/symphony-forge --skill symphony-forge

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs4
repo stars1
Last updatedApril 1, 2026
Repositorybroomva/symphony-forge

What it does

Scaffold a control metalayer of governance gates, harness scripts, and agent instructions on a next-forge project.

Who is it for?

Making a next-forge project autonomous-agent-ready with governance gates and agent instructions.

Skip if: Projects not based on next-forge or teams that do not want a control metalayer.

When should I use this skill?

Initializing a project with symphony-forge, adding metalayer layers, or running entropy audits.

What you get

A project with policy gates, harness scripts, agent instructions, and a self-improvement loop.

  • Control policy YAML files
  • Harness bash scripts and CI workflow
  • CLAUDE.md and AGENTS.md

By the numbers

  • Composable 5-layer architecture (control, harness, knowledge, consciousness, autoany)
  • Harness generates 9 executable bash scripts
  • 5 knowledge templates (ADR, architecture, runbook, API contract, schema)

Files

SKILL.mdMarkdownGitHub ↗

symphony-forge

symphony-forge is a CLI tool that extends next-forge (the production-grade Turborepo template) with a composable control metalayer — governance gates, build automation, knowledge graphs, and AI agent instructions that make projects autonomous-agent-ready from day one.

Quick Start

Initialize a new project (next-forge + all layers)

npx symphony-forge init my-project

Add layers to an existing project

npx symphony-forge layer all        # Add all 5 layers
npx symphony-forge layer control    # Just governance gates
npx symphony-forge layer harness    # Just build automation
npx symphony-forge layer knowledge  # Just docs skeleton
npx symphony-forge layer consciousness  # Just CLAUDE.md + AGENTS.md
npx symphony-forge layer autoany    # Just EGRI config

Run entropy audit

npx symphony-forge audit

Layer System

symphony-forge uses a composable layer architecture. Each layer generates files into your project. Layers have soft dependencies — they adjust content based on what's installed but work independently.

LayerFiles GeneratedPurpose
control.control/policy.yaml, commands.yaml, topology.yamlGovernance gates, command registry, repo topology
harnessscripts/harness/*.sh (9 scripts), Makefile.control, .github/workflows/ci.ymlBuild automation, git hooks, CI
knowledgedocs/_index.md, docs/_templates/ (5), docs/glossary.md, architecture docs, ADRs, runbooksObsidian knowledge graph skeleton
consciousnessCLAUDE.md, AGENTS.mdAI agent instructions — metalayer-aware, safety-guardrailed
autoany.control/egri.yamlEGRI self-improvement loop config

What Each Layer Does

Control Layer

The control layer creates .control/ YAML files that define your project's governance:

  • policy.yaml — Risk gates for database migrations (HIGH), dependency updates (MEDIUM), env variable changes (HIGH), new packages (MEDIUM), production deploys (CRITICAL). Each policy specifies triggers (file patterns), required checks, and rollback procedures.
  • commands.yaml — Canonical command definitions mapping to harness scripts. Each command has a description, script path, timeout, usage pattern, and recommended context.
  • topology.yaml — Full repo map listing all apps and packages with paths, descriptions, ports, risk levels, domains, and dependencies.

Harness Layer

Generates 9 executable bash scripts + Makefile + CI workflow:

ScriptPurposeTimeout
smoke.shInstall + check + build main app~120s
check.shLint + typecheck~60s
ci.shFull pipeline: check + test + build~600s
check-policy.shAdvisory policy gate warnings for staged files
check-docs-freshness.shVerify all docs referenced in _index.md~10s
check-wikilinks.shValidate [[wikilinks]] resolve to real files~10s
audit.shEntropy audit: topology, stale docs, wikilinks
install-hooks.shInstall pre-commit git hook
pre-commit.shFast hook: lint staged TS + docs check<10s

All scripts use set -euo pipefail, REPO_ROOT resolution, and are parameterized for your package manager (bun/npm/yarn/pnpm).

The Makefile.control provides make -f Makefile.control <target> for all commands. The CI workflow runs check → test → build on push/PR.

Knowledge Layer

Creates an Obsidian-flavored Markdown knowledge graph:

  • docs/_index.md — Entry point with Mermaid graph map, tag taxonomy, traversal instructions
  • docs/glossary.md — Key terminology definitions
  • docs/architecture/overview.md — System architecture with Mermaid diagrams
  • docs/decisions/adr-001-metalayer.md — ADR explaining the control metalayer choice
  • docs/runbooks/local-dev-setup.md — Getting started runbook
  • docs/_templates/ — 5 templates (ADR, architecture, runbook, API contract, schema)

Documents use frontmatter tags (domain/, status/, type/) and wikilinks ([[architecture/overview]]).

Consciousness Layer (Key Differentiator)

Generates CLAUDE.md and AGENTS.md that are metalayer-aware:

  • Content is conditional on installed layers — sections for uninstalled layers include callout warnings suggesting installation
  • References correct package manager commands throughout
  • Includes working protocol, constraints, knowledge graph traversal, and pre-push checklists
  • Instructions tell agents to read policy.yaml, traverse docs/_index.md, run Makefile.control checks, and follow EGRI loops

AutoAny Layer (EGRI)

Generates .control/egri.yaml defining the Evaluate → Generate → Rank → Integrate self-improvement loop:

  • Mutable surfaces — What the system can change (scripts, docs, control config, agent instructions) with constraints
  • Immutable surfaces — Protected files (schema, env, lockfile)
  • Evaluators — Blocking (build, typecheck, tests) and non-blocking (audit) checks
  • Ranking — Strategy for comparing before/after states
  • Promotion — Criteria and method for accepting changes

Manifest Tracking

symphony-forge creates .symphony-forge.json in your project root, tracking:

  • Which layers are installed
  • Package manager
  • Creation and update timestamps

This enables smart layer additions (detects conflicts) and future update --layers support.

Creating Skills for Your Project

symphony-forge projects are skill-ready. To create a custom skill for your project:

1. Create the skill directory

mkdir -p skills/my-skill/references

2. Write SKILL.md

---
name: my-skill
description: Expert assistance for [your domain]. Triggers on [what activates it].
---

# my-skill

[Instructions for the agent when this skill activates]

## Key concepts
[Domain knowledge the agent needs]

## Common tasks
[Step-by-step procedures]

3. Add references (optional)

Place detailed documentation in references/ — agents load these on-demand without bloating the initial context.

4. Register with skills.sh

npx skills init my-skill     # Initialize metadata
npx skills publish            # Publish to skills.sh registry

For detailed layer contents and architecture, see:

  • references/layers.md — Complete layer system documentation
  • references/metalayer-pattern.md — The control metalayer design pattern
  • references/skill-creation.md — Full guide to creating and publishing agent skills

Related skills

FAQ

What are the five layers?

control, harness, knowledge, consciousness, and autoany, each generating governance, scripts, docs, agent instructions, or EGRI config.

What is the consciousness layer?

It generates metalayer-aware CLAUDE.md and AGENTS.md whose content is conditional on which layers are installed.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.