forked from Kirachon/context-engine
-
Notifications
You must be signed in to change notification settings - Fork 1
feat: Complete MCP Implementation with 70+ Tools, Agent Skills & Workflow Improvements #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 9 commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
49e7f33
feat: workflow improvements and MCP enhancements
rishitank 494e0c0
fix: use Europe/London timezone in dependabot config
rishitank f0e1666
feat: implement full MCP spec support
rishitank 49b2d03
feat: add automatic version bumping to release workflow
rishitank b962a01
feat: add comprehensive tests and logging/setLevel handler
rishitank 5daf33d
feat: add workspace analysis tools with comprehensive tests
rishitank b1518b5
fix: address all PR review comments
rishitank 662828f
📝 Add docstrings to `feature/workflow-improvements`
coderabbitai[bot] dc69227
Merge pull request #2 from rishitank/coderabbitai/docstrings/b1518b5
rishitank 46f2d7e
feat: add 4 new workspace/git tools with tests
rishitank d28e3fc
Merge remote-tracking branch 'origin/feature/workflow-improvements' i…
rishitank 4f001f4
fix: Remove empty lines in doc comments to fix Clippy errors
rishitank 9101c12
docs: Update tool count to 59, add depth limit to discover_files
rishitank b661366
docs: Add future enhancements from code review comments
rishitank 07e9094
security: Fix path traversal vulnerability in DependencyGraphTool
rishitank 923e687
security: Fix path traversal in complete_file_path
rishitank 7e65250
feat: Address known limitations from code review
rishitank da360e7
fix: Address remaining CodeRabbit nitpick comments
rishitank 51ebf78
feat: Add AI-powered changelog generation to release workflow
rishitank 3c96591
feat: Fix enhance_prompt and add bundle_prompt for proper context inj…
rishitank f653fdc
feat: Add comprehensive multi-language support for symbol detection
rishitank 782dd75
feat: Add integration tests and TypeScript/Rust gap analysis
rishitank 3f76bc1
docs: Update documentation with new tools and testing guide
rishitank 39eeb6e
fix: Address remaining CodeRabbit review comments
rishitank 2aa8e37
test: Fix integration tests to accept valid JSON-RPC responses
rishitank 146c597
feat: Add m1rl0k/Context-Engine compatible tools
rishitank 62889a3
docs: Update documentation with new m1rl0k-compatible tools
rishitank 3ce0a00
fix: address CodeRabbit review comments
rishitank 3805e76
docs: fix documentation discrepancies flagged by CodeRabbit
rishitank 39d2f9c
docs: fix README tool count from 73 to 69
rishitank f67a6c2
feat: implement Agent Skills architecture for progressive disclosure
rishitank 98df399
feat: add 4 more skills and expose skills as MCP prompts
rishitank 48351aa
test: add comprehensive unit and integration tests for skills
rishitank dea0d2c
add augment commands
rishitank aa64cef
fix: address code review feedback
rishitank 1cde7d5
fix: address remaining code review nitpicks
rishitank 776dbd8
fix: use assert! instead of assert_eq! with literal bool
rishitank e38ce36
fix: wire include_related flag in ContextSearchTool
rishitank a64e759
fix: propagate regex compilation errors in search_with_pattern
rishitank File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| version: 2 | ||
| updates: | ||
| # Rust dependencies (Cargo) | ||
| - package-ecosystem: "cargo" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" | ||
| day: "monday" | ||
| time: "09:00" | ||
| timezone: "Europe/London" | ||
| open-pull-requests-limit: 10 | ||
| commit-message: | ||
| prefix: "deps" | ||
| labels: | ||
| - "dependencies" | ||
| - "rust" | ||
| reviewers: | ||
| - "rishitank" | ||
| groups: | ||
| # Group minor/patch updates to reduce PR noise | ||
| rust-minor-updates: | ||
| patterns: | ||
| - "*" | ||
| update-types: | ||
| - "minor" | ||
| - "patch" | ||
| # Keep major updates separate for careful review | ||
| rust-major-updates: | ||
| patterns: | ||
| - "*" | ||
| update-types: | ||
| - "major" | ||
|
|
||
| # GitHub Actions | ||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" | ||
| day: "monday" | ||
| time: "09:00" | ||
| timezone: "Europe/London" | ||
| open-pull-requests-limit: 5 | ||
| commit-message: | ||
| prefix: "ci" | ||
| labels: | ||
| - "dependencies" | ||
| - "github-actions" | ||
| reviewers: | ||
| - "rishitank" | ||
|
|
||
| # Docker (if Dockerfile exists) | ||
| - package-ecosystem: "docker" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" | ||
| day: "monday" | ||
| time: "09:00" | ||
| timezone: "Europe/London" | ||
| open-pull-requests-limit: 5 | ||
| commit-message: | ||
| prefix: "docker" | ||
| labels: | ||
| - "dependencies" | ||
| - "docker" | ||
| reviewers: | ||
| - "rishitank" | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.