Prompt
Ensure configuration documentation is comprehensive, clear and actionable for developers. This includes:
- Document all possible configuration options and behaviors, not just defaults:
# Good example: Explicitly documenting all behaviors - alwaysApply: true # Always include the rule, regardless of file context - alwaysApply: false # Only include if globs exist AND match file context - alwaysApply: undefined # Default: include if no globs exist OR globs exist and match - Clearly document configuration storage locations with platform-specific paths:
Configuration is stored in ~/.continue directory (or %USERPROFILE%\.continue on Windows) - Use consistent, platform-appropriate formats for configuration examples. When showing multiple formats (YAML/JSON), use the appropriate tab components for your documentation system:
<Tab title="YAML">
// YAML configuration example
</Tab>
<Tab title="JSON">
// JSON configuration example
</Tab>
Proper configuration documentation reduces developer confusion, prevents misconfigurations, and simplifies troubleshooting.