pub struct WorkspaceFiles {
pub project_brief: Option<PathBuf>,
pub shared_patterns: Option<PathBuf>,
pub workspace_architecture: Option<PathBuf>,
pub workspace_progress: Option<PathBuf>,
}Expand description
Workspace-level file structure
Represents the files found in the workspace/ directory, which contain shared configuration, patterns, and documentation that apply across all sub-projects in the workspace.
Fields§
§project_brief: Option<PathBuf>workspace/project_brief.md - Overall workspace vision and objectives Contains the high-level description of what this workspace aims to achieve
workspace/shared_patterns.md - Cross-project patterns and practices Documents reusable patterns, coding standards, and architectural decisions
workspace_architecture: Option<PathBuf>workspace/workspace_architecture.md - High-level system architecture Describes the overall structure and relationships between components
workspace_progress: Option<PathBuf>workspace/workspace_progress.md - Cross-project progress and milestones Tracks workspace-wide progress, strategic decisions, and major milestones
Trait Implementations§
Source§impl Clone for WorkspaceFiles
impl Clone for WorkspaceFiles
Source§fn clone(&self) -> WorkspaceFiles
fn clone(&self) -> WorkspaceFiles
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more