Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
5f0b7be
feat: add Drafling domain models and service contracts
butschster Sep 23, 2025
ae36b1b
style(php-cs-fixer): fix coding standards
Sep 23, 2025
5524f28
feat: add MCP tools
butschster Sep 23, 2025
52af49c
Merge remote-tracking branch 'origin/feature/drafling' into feature/d…
butschster Sep 23, 2025
1ff42f9
feat(drafling): Fix DTO validation and storage integration issues
butschster Sep 23, 2025
f5d9cfd
style(php-cs-fixer): fix coding standards
Sep 23, 2025
cfca22a
feat(drafling): integrate services, commands, and bootloaders for imp…
butschster Sep 23, 2025
51aff52
Merge remote-tracking branch 'origin/feature/drafling' into feature/d…
butschster Sep 23, 2025
6aff0bc
style(php-cs-fixer): fix coding standards
Sep 23, 2025
d9c2c47
feat(drafling): add support for entry descriptions and enhance filter…
butschster Sep 23, 2025
0e353f6
feat(drafling): introduce project memory management and simplify dire…
butschster Sep 23, 2025
21a04ef
test(drafling): add unit tests for project services, DTOs, and tool a…
butschster Sep 23, 2025
4083d65
refactor(drafling): replace `CallToolResult` with `ToolResult` across…
butschster Sep 23, 2025
e2944ef
test(drafling): add unit and feature tests for storage and project ha…
butschster Sep 23, 2025
f4da8d6
style(php-cs-fixer): fix coding standards
Sep 23, 2025
4dc24c3
cs fix
butschster Sep 23, 2025
7b4d468
Merge remote-tracking branch 'origin/feature/drafling' into feature/d…
butschster Sep 23, 2025
3b536e2
refactor: rename Drafling -> Research
butschster Sep 24, 2025
e23eaf0
fix cs
butschster Sep 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ vendor
node_modules
.php-cs-fixer.cache
.context
.templates
.researches
runtime
mcp-*.log
.env
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
"logiscape/mcp-sdk-php": "^1.0",
"league/route": "^6.2",
"laminas/laminas-diactoros": "^3.5",
"monolog/monolog": "^3.9"
"monolog/monolog": "^3.9",
"cocur/slugify": "^4.6"
},
"require-dev": {
"buggregator/trap": "^1.13",
Expand Down
27 changes: 27 additions & 0 deletions context.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,33 @@ documents:
- vendor/spiral/files/src/FilesInterface.php
showTreeView: true

- description: Research Templates
outputPath: core/drafling.md
sources:
- type: file
sourcePaths:
- src/Research/Config
- src/Research/Domain
- src/Research/Repository
- src/Research/Service
- src/Research/Storage/StorageDriverInterface.php

- description: Research FileStorage
outputPath: drafling/file-storage.md
sources:
- type: file
sourcePaths:
- src/Research/Storage

- description: Research MCP
outputPath: drafling/mcp.md
sources:
- type: file
sourcePaths:
- src/Research/MCP
- src/McpServer/McpServerBootloader.php


- description: "Changes in the Project"
outputPath: "changes.md"
sources:
Expand Down
Loading
Loading