You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Add Dart MCP integration with workspace configuration
- Add .dart configuration file support for workspace settings
- Add 'claude-hooks dart init' to create workspace config
- Add 'claude-hooks dart edit' to modify configuration
- Generate CLAUDE.md with project-specific instructions
- Update sync-docs-to-dart hook to use .dart configuration
- Update validate-dart-task hook for workspace awareness
- Add comprehensive documentation and template guide
- Integrate Dart setup into project initialization flow
This enables seamless integration between local projects and Dart
workspaces, with automatic suggestions for task creation and
documentation synchronization based on project configuration.
@@ -223,6 +227,92 @@ Running Claude Hooks Manager Tests...
223
227
✅ All 17 hooks passed tests!
224
228
```
225
229
230
+
## 🎯 Dart Integration
231
+
232
+
Claude Hooks Manager now includes seamless integration with Dart MCP for project management. This feature enables automatic task tracking and documentation synchronization.
233
+
234
+
### What is Dart Integration?
235
+
236
+
Dart integration allows Claude to:
237
+
- Automatically suggest creating tasks in your Dart workspace
238
+
- Sync documentation between your local project and Dart
239
+
- Validate task creation with project-specific rules
240
+
- Generate CLAUDE.md files with workspace configuration
241
+
242
+
### Setting Up Dart Integration
243
+
244
+
#### Method 1: During Project Init
245
+
```bash
246
+
claude-hooks init
247
+
# When prompted, choose to set up Dart integration
248
+
```
249
+
250
+
#### Method 2: Direct Dart Setup
251
+
```bash
252
+
claude-hooks dart init
253
+
```
254
+
255
+
This will:
256
+
1. Create a `.dart` configuration file in your project root
257
+
2. Configure your Dart workspace, tasks folder, and docs folder
258
+
3. Optionally create a CLAUDE.md file with project instructions
259
+
260
+
### The .dart Configuration File
261
+
262
+
The `.dart` file stores your project's Dart workspace configuration:
0 commit comments