Execute the Build phase of a FABER workflow to implement a solution from specification
Executes the Build phase of a FABER workflow to implement solutions from specifications.
/plugin marketplace add fractary/claude-plugins/plugin install fractary-faber@fractaryclaude-opus-4-5This command executes autonomous implementation with deep planning - completing the build phase entirely without stopping. </CONTEXT>
<CRITICAL_RULES>
</CRITICAL_RULES>
<INPUTS>Syntax:
/fractary-faber:build [options]
Options:
| Option | Type | Required | Description |
|---|---|---|---|
--work-id <id> | string | No | Work item identifier for context |
--run-id <id> | string | No | FABER workflow run ID |
Examples:
# Build with work item context
/fractary-faber:build --work-id 123
# Build with full context
/fractary-faber:build --work-id 123 --run-id fractary/claude-plugins/abc123
</INPUTS>
<WORKFLOW>
Extract from user input:
work_id: Value of --work-id flag (optional)run_id: Value of --run-id flag (optional)Use the Task tool to invoke the build skill atomically.
Pass complete workflow context:
Task(
subagent_type="fractary-faber:faber-manager",
description="Execute Build phase",
prompt={
"operation": "execute-phase",
"phase": "build",
"parameters": {
"work_id": {work_id},
"run_id": {run_id},
"autonomous": true
}
}
)
Return the faber-manager's output directly, showing build phase execution results.
</WORKFLOW> <OUTPUTS>Success: The build skill's output showing implementation results, commits created, and phase status.
Error Handling: All errors handled by the build skill - missing context, spec not found, implementation failures, etc.
</OUTPUTS> <NOTES>The Build phase implements the solution from the Architect phase specification:
The build skill runs to completion:
/fractary-faber:run - Complete workflow from frame to release/fractary-faber:status - Check workflow status/fractary-spec:create - Generate specification (Architect phase output)