23 lines
849 B
Markdown
23 lines
849 B
Markdown
# Source Tree Integration
|
|
|
|
## New File Organization
|
|
```
|
|
/projects/directus-task-management/
|
|
├── [Existing structure preserved]
|
|
├── web-app/ # Standalone web interface
|
|
│ ├── index.html # Main dashboard
|
|
│ ├── assets/
|
|
│ │ ├── css/ # Styling
|
|
│ │ └── js/ # Application logic
|
|
│ ├── components/ # Reusable UI components
|
|
│ └── config/ # Configuration
|
|
│
|
|
└── src/ # MCP tools
|
|
└── mcp-tools/ # Enhanced tools
|
|
```
|
|
|
|
## Integration Guidelines
|
|
- **File Naming:** Follow existing TypeScript patterns
|
|
- **Import/Export:** Use existing MCP tool patterns
|
|
- **Configuration:** Extend existing .mcp.json
|