ggen 1.2.0

ggen is a deterministic, language-agnostic code generation framework that treats software artifacts as projections of knowledge graphs.
Documentation
# Example make.toml - Universal project descriptor for ggen
# This demonstrates the lifecycle system for a simple Node.js project

[project]
name = "example-app"
type = "webapp"
version = "1.0.0"
description = "Example application demonstrating ggen lifecycle"

# Lifecycle phases
[lifecycle.init]
description = "Initialize project structure"
commands = [
    "echo '๐Ÿ“ฆ Initializing project...'",
    "mkdir -p src tests docs",
    "echo 'console.log(\"Hello, ggen!\");' > src/index.js",
]

[lifecycle.setup]
description = "Install dependencies"
command = "echo '๐Ÿ“ฅ Dependencies would be installed here (npm install)'"

[lifecycle.dev]
description = "Start development server"
command = "echo '๐Ÿš€ Development server would start here (npm run dev)'"
watch = true
port = 3000

[lifecycle.build]
description = "Build for production"
commands = [
    "echo '๐Ÿ”จ Building project...'",
    "echo 'Build complete!'",
]
outputs = ["dist/"]
cache = true

[lifecycle.test]
description = "Run test suite"
command = "echo '๐Ÿงช Running tests... (npm test)'"

[lifecycle.lint]
description = "Lint code"
command = "echo '๐Ÿ” Linting code... (npm run lint)'"

[lifecycle.clean]
description = "Clean build artifacts"
command = "echo '๐Ÿงน Cleaning build artifacts...'"

# Hooks
[hooks]
before_all = []
after_all = []

before_build = ["test", "lint"]
after_build = []

before_test = []
after_test = []