Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:26:08 +08:00
commit 8f22ddf339
295 changed files with 59710 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
name: command.define
version: 0.1.0
description: "Validate and register command manifests in the Command Registry"
inputs:
- name: manifest_path
type: string
required: true
description: "Path to the command manifest file (YAML)"
outputs:
- name: validation_result
type: object
description: "Validation results and registration status"
schema:
properties:
ok: boolean
status: string
errors: array
path: string
details: object
dependencies:
- None
entrypoints:
- command: /skill/command/define
handler: command_define.py
runtime: python
permissions:
- filesystem:read
- filesystem:write
status: active
tags: [command, registry, validation, infrastructure]