CIS Configuration
Configure Creative Intelligence Suite workflows, output behavior, and agent preferences.
Configuration File
Section titled âConfiguration FileâCIS configuration is stored in:
_bmad/cis/config.yamlIf the file doesnât exist, CIS uses default values.
Configuration Options
Section titled âConfiguration Optionsâ| Setting | Description | Default |
|---|---|---|
| output_folder | Where workflow outputs are saved | ./_bmad-output/ |
| user_name | Name used in workflow facilitation | User |
| communication_language | Language for agent responses | english |
output_folder
Section titled âoutput_folderâWhere workflow results are saved.
Absolute or relative path. Workflow outputs are named {workflow-name}-{date}.md.
Example:
output_folder: "./creative-outputs"# oroutput_folder: "/Users/name/Documents/creative-work"Relative paths are resolved from project root.
user_name
Section titled âuser_nameâHow agents address you during facilitation.
Used for personalized interaction. Agents weave your name into their responses.
Example:
user_name: "Alex"# Carson might say: "Alex, let's try a different angle..."communication_language
Section titled âcommunication_languageâLanguage for workflow facilitation.
Agents communicate in the specified language while maintaining their distinctive personalities.
Supported values:
english(default)spanishfrenchgermanitalianportuguese
Example:
communication_language: "spanish"# Maya facilitarĂĄ en español manteniendo su estilo jazzĂsticoDefault Configuration
Section titled âDefault ConfigurationâIf no config file exists, CIS uses:
output_folder: "./_bmad-output/"user_name: "User"communication_language: "english"Creating Configuration
Section titled âCreating ConfigurationâCreate or edit _bmad/cis/config.yaml:
# CIS Configuration
output_folder: "./_bmad-output/"user_name: "Your Name"communication_language: "english"Workflow-Specific Context
Section titled âWorkflow-Specific ContextâSome workflows accept additional context via command-line flags:
Providing Context Data
Section titled âProviding Context DataâPass context documents to workflows:
workflow design-thinking --data /path/to/user-research.mdworkflow innovation-strategy --data /path/to/market-analysis.mdworkflow problem-solving --data /path/to/problem-brief.mdworkflow storytelling --data /path/to/brand-guidelines.mdContext files should be markdown. Agents incorporate this information into facilitation.
Agent Sidecar Configuration
Section titled âAgent Sidecar ConfigurationâSome agents maintain persistent data in sidecar directories:
Sophiaâs Sidecar
Section titled âSophiaâs SidecarâSophia (Storyteller) remembers your preferences and story history:
_bmad/_memory/storyteller-sidecar/âââ story-preferences.md # Your storytelling preferencesâââ stories-told.md # History of stories createdCritical actions (automatically called):
- Load preferences before storytelling
- Update history after story creation
This enables Sophia to learn your style and build consistent narratives over time.
Environment Variables
Section titled âEnvironment VariablesâCIS respects these environment variables:
| Variable | Purpose | Example |
|---|---|---|
BMAD_OUTPUT_DIR | Override output folder | BMAD_OUTPUT_DIR=./outputs |
BMAD_USER_NAME | Override user name | BMAD_USER_NAME=Jordan |
BMAD_LANGUAGE | Override language | BMAD_LANGUAGE=spanish |
Environment variables take precedence over config file settings.
Troubleshooting Configuration
Section titled âTroubleshooting ConfigurationâOutputs Not Appearing
Section titled âOutputs Not AppearingâCheck output folder path is valid:
# Test path resolutionls ./_bmad-output/Ensure the folder exists or CIS can create it.
Agent Not Using Your Name
Section titled âAgent Not Using Your NameâVerify user_name in config file. For Sophia, ensure sidecar files exist and are readable.
Language Not Changing
Section titled âLanguage Not ChangingâConfirm communication_language uses supported values. Custom languages require agent prompt updates.
Next Steps
Section titled âNext Stepsâ- Getting Started â Use workflows with default configuration
- Workflows Reference â Detailed workflow mechanics