-
Notifications
You must be signed in to change notification settings - Fork 1
feat(adt-mcp): add 12 high-priority tools for vibing-steampunk feature parity (17 → 29 tools) #101
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
ThePlenkov
merged 9 commits into
main
from
copilot/feature-parity-with-vibing-steampunk
Apr 15, 2026
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
be98425
Initial plan
Copilot 762e993
feat(adt-mcp): add 12 new tools for feature parity with vibing-steamp…
Copilot d7f8b4c
fix(adt-mcp): fix missing closing parenthesis in get-table-contents s…
Copilot 170a2f6
feat(adt-mcp): implement 14 medium-priority MCP tools (#M1-#M10)"
Copilot 2818f49
fix(adt-mcp): format all new tool files + fix mock server route ordering
Copilot 0c6d97c
fix(adt-mcp): resolve SonarQube quality gate failures
Copilot ce3d19e
chore: add copilot-setup-steps to enforce pre-commit format hook
Copilot e3dce0a
refactor: improve code formatting and remove unused tests for transpo…
ThePlenkov a001ded
fix(adt-mcp): address SonarCloud blockers in PR 101
ThePlenkov 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
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,44 @@ | ||
| name: 'Copilot Setup Steps' | ||
|
|
||
| # Run automatically when changed, and allow manual validation from the Actions tab. | ||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| paths: | ||
| - .github/workflows/copilot-setup-steps.yml | ||
| pull_request: | ||
| paths: | ||
| - .github/workflows/copilot-setup-steps.yml | ||
|
|
||
| jobs: | ||
| # Must be named exactly `copilot-setup-steps` for Copilot to pick it up. | ||
| copilot-setup-steps: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Install bun | ||
| uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2 | ||
|
|
||
| - name: Install dependencies | ||
| run: bun install | ||
|
|
||
| - name: Install pre-commit format hook for Copilot agent | ||
| run: | | ||
| mkdir -p .git/copilot-hooks | ||
| cat > .git/copilot-hooks/pre-commit << 'EOF' | ||
| #!/bin/sh | ||
| # Auto-format all staged files before committing. | ||
| # Runs nx format:write (Prettier) and re-stages any files it changed. | ||
| if command -v bunx >/dev/null 2>&1; then | ||
| bunx nx format:write --uncommitted | ||
| else | ||
| npx nx format:write --uncommitted | ||
| fi | ||
| git update-index --again | ||
| EOF | ||
| chmod +x .git/copilot-hooks/pre-commit |
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 |
|---|---|---|
| @@ -1,3 +1,7 @@ | ||
| npx nx format:write --uncommitted | ||
| if command -v bunx >/dev/null 2>&1; then | ||
| bunx nx format:write --uncommitted | ||
| else | ||
| npx nx format:write --uncommitted | ||
| fi | ||
| git update-index --again | ||
|
|
||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1. npx fallback in hooks
📘 Rule violation✧ QualityAgent Prompt
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools