- Remove KCL ecosystem (~220 files deleted) - Migrate all infrastructure to Nickel schema system - Consolidate documentation: legacy docs → provisioning/docs/src/ - Add CI/CD workflows (.github/) and Rust build config (.cargo/) - Update core system for Nickel schema parsing - Update README.md and CHANGES.md for v5.0.0 release - Fix pre-commit hooks: end-of-file, trailing-whitespace - Breaking changes: KCL workspaces require migration - Migration bridge available in docs/src/development/
21 lines
503 B
Plaintext
21 lines
503 B
Plaintext
# Extension Metadata Schema - Type-safe extension definition
|
|
# Defines metadata for each extension including dependencies and best practices
|
|
# Used for DAG construction and extension initialization ordering
|
|
|
|
# Schema for extension metadata
|
|
let ExtensionMetadataSchema = {
|
|
name | String,
|
|
version | String,
|
|
category | String,
|
|
description | String,
|
|
dependencies | Array String,
|
|
tags | Array String,
|
|
best_practices | Array String,
|
|
}
|
|
in
|
|
|
|
# Export schema
|
|
{
|
|
schema = ExtensionMetadataSchema,
|
|
}
|