From cre-skills
Lists available CRE workflow chains (acquisition pipeline, capital stack, etc.). With argument, reads workflow details and walks user through steps, invoking skills sequentially.
npx claudepluginhub mariourquia/cre-skills-plugin --plugin cre-skillscommands/# CRE Workflow Chains
Read the workflow chain index from `${CLAUDE_PLUGIN_ROOT}/routing/CRE-ROUTING.md` (the "Workflow Chains" section) and present the available chains to the user.
If the user specified a workflow ("$ARGUMENTS"), read the detailed workflow document from `${CLAUDE_PLUGIN_ROOT}/routing/workflows/` for that chain and walk the user through it step by step, invoking each skill in sequence.
Available chains:
1. **Acquisition Pipeline**: sourcing -> screening -> tenant-credit -> underwriting -> IC memo -> LOI -> PSA -> financing (term sheet + loan docs) -> DD (title + transfer.../orchestrateRoutes arguments to orchestration subcommands for multi-agent workflows: menu, help, explain, examples, templates, or inline syntax execution with visual feedback.
/adaptive-workflowDiscovers available workflows via MCP, analyzes user request intent and requirements, selects the best match, and executes with JIT resource loading.
/create-workflowScaffolds a custom swarm workflow by generating a mode skill (.claude/skills/<name>-mode/SKILL.md) and shortcut command (.claude/commands/<name>.md).
/buildGenerates a Looplia workflow from natural language description by scanning plugins for skills, matching capabilities, and composing a pipeline file saved to ~/.looplia/workflows/{name}.md.
/ea-listLists all EquilateralAgents workflows with descriptions, commands, agents, use cases, status (open core or commercial), and learning features.
Share bugs, ideas, or general feedback.
Read the workflow chain index from ${CLAUDE_PLUGIN_ROOT}/routing/CRE-ROUTING.md (the "Workflow Chains" section) and present the available chains to the user.
If the user specified a workflow ("$ARGUMENTS"), read the detailed workflow document from ${CLAUDE_PLUGIN_ROOT}/routing/workflows/ for that chain and walk the user through it step by step, invoking each skill in sequence.
Available chains:
Workflow chains can also be executed programmatically via the engine modules in orchestrators/engine/:
workflow-executor.mjs: Parses workflow markdown files, builds a dependency graph, and executes steps in topological order with decision-gate evaluation and checkpoint persistence.
node orchestrators/engine/workflow-executor.mjs --workflow deal-pipeline-acquisition --dry-run
node orchestrators/engine/workflow-executor.mjs --workflow capital-stack-assembly
node orchestrators/engine/workflow-executor.mjs --workflow deal-pipeline-acquisition --resume <workflowId>
handoff-router.mjs: Routes data between orchestrator pipelines when a workflow completes, using the contracts defined in orchestrators/engine/handoff-registry.json.
node orchestrators/engine/handoff-router.mjs --from acquisition --verdict PROCEED --dry-run
node orchestrators/engine/handoff-router.mjs --from hold-period --verdict EXIT
Both modules support --test for self-verification and can be imported as ESM for use in other engine components.