Replace Hex1b MCP server with Hex1b.Tool CLI#387
Merged
mitchdenny merged 2 commits intomainfrom Feb 10, 2026
Merged
Conversation
- Remove hex1b MCP server configs from .mcp.json, .vscode/mcp.json, opencode.jsonc - Add hex1b skill file generated by 'hex1b agent init' - Update doc-writer skill to reference hex1b CLI commands - Update doc-tester skill to reference hex1b CLI commands
Contributor
There was a problem hiding this comment.
Pull request overview
This PR migrates Hex1b usage in the repo from an MCP server configuration to the Hex1b.Tool CLI (dotnet hex1b), updating agent skill documentation accordingly.
Changes:
- Removed Hex1b MCP server entries from repo/editor MCP configuration files.
- Added a new
.github/skills/hex1b/SKILL.mddescribing how to use the Hex1b CLI. - Updated doc-writer and doc-tester skills to reference
dotnet hex1bCLI commands instead of MCP tools.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| opencode.jsonc | Removes Hex1b MCP server config from OpenCode config. |
| .vscode/mcp.json | Removes Hex1b MCP server config from VS Code MCP config. |
| .mcp.json | Removes Hex1b MCP server config from repo MCP config. |
| .github/skills/hex1b/SKILL.md | Adds a Hex1b CLI skill reference (installation + common workflows). |
| .github/skills/doc-writer/SKILL.md | Updates recording/screenshot workflow to use dotnet hex1b CLI. |
| .github/skills/doc-tester/SKILL.md | Replaces Hex1b MCP tooling guidance with dotnet hex1b CLI commands. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…names - Fix install command to specify --global or --local scope - Add --output to recording start example in doc-tester - Fix ArrowUp → UpArrow to match Hex1bKey enum - Expand key name list to include all Hex1bKey enum values
sebastienros
approved these changes
Feb 10, 2026
maddymontaquila
pushed a commit
that referenced
this pull request
Feb 12, 2026
* Replace Hex1b MCP server with Hex1b.Tool CLI - Remove hex1b MCP server configs from .mcp.json, .vscode/mcp.json, opencode.jsonc - Add hex1b skill file generated by 'hex1b agent init' - Update doc-writer skill to reference hex1b CLI commands - Update doc-tester skill to reference hex1b CLI commands * Address PR feedback: fix install command, recording example, and key names - Fix install command to specify --global or --local scope - Add --output to recording start example in doc-tester - Fix ArrowUp → UpArrow to match Hex1bKey enum - Expand key name list to include all Hex1bKey enum values --------- Co-authored-by: Mitch Denny <mitch@mitchdeny.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
.mcp.json,.vscode/mcp.json, andopencode.jsonchex1b agent initdotnet hex1bCLI commands instead of MCP toolsdotnet hex1bCLI commands instead of MCP toolsThis switches from using Hex1b as an MCP server to using the Hex1b.Tool CLI package (
dotnet tool install -g Hex1b.Tool), which provides terminal automation via standard CLI commands.