phase_output
Capture and document results for completed workflow phases, ensuring structured output artifacts with numbered file naming and required formats like markdown, JSON, or text.
Instructions
Record the output/results when completing a workflow phase - REQUIRES ACTUAL OUTPUT ARTIFACTS with numbered file naming
Input Schema
Name | Required | Description | Default |
---|---|---|---|
output | Yes | The results/findings from this phase | |
outputArtifacts | Yes | MANDATORY: List of actual output artifacts you created for this phase (use numbered file names) | |
phase | Yes | The phase you are completing |
Input Schema (JSON Schema)
{
"properties": {
"output": {
"additionalProperties": true,
"description": "The results/findings from this phase",
"type": "object"
},
"outputArtifacts": {
"description": "MANDATORY: List of actual output artifacts you created for this phase (use numbered file names)",
"items": {
"properties": {
"content": {
"description": "REQUIRED: The actual content/JSON of your output (for validation)",
"type": "string"
},
"description": {
"description": "Brief description of what this artifact contains",
"type": "string"
},
"format": {
"description": "Format of the output",
"enum": [
"markdown",
"json",
"text"
],
"type": "string"
},
"path": {
"description": "File path if written to disk, OR descriptive identifier for JSON output provided in response",
"type": "string"
}
},
"required": [
"path",
"format",
"description",
"content"
],
"type": "object"
},
"minItems": 1,
"type": "array"
},
"phase": {
"description": "The phase you are completing",
"enum": [
"AUDIT_INVENTORY",
"COMPARE_ANALYZE",
"QUESTION_DETERMINE",
"WRITE_OR_REFACTOR",
"TEST",
"LINT",
"ITERATE",
"PRESENT"
],
"type": "string"
}
},
"required": [
"phase",
"output",
"outputArtifacts"
],
"type": "object"
}