Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
4897de8
Fix path naming in documentation
Szowesgad Dec 26, 2025
e625552
Unify paths to ~/.rmcp-servers/rmcp-mux/
Szowesgad Dec 26, 2025
efa98cb
Bump version to 0.4.0
Szowesgad Dec 26, 2025
374067d
Update CHANGELOG.md for 0.4.0 release
Szowesgad Dec 26, 2025
9e9be29
Finalize rust-mux runtime rebrand and wire full git quality gates
Szowesgad May 4, 2026
89fe802
Implement MCP client discovery and safe/danger config generation - co…
Szowesgad May 4, 2026
4b896b3
Remove parking-lot legacy modules to match meta-plan reality - delete…
Szowesgad May 5, 2026
620e016
[claude/vc-implement] wizard: branding + canonical-path regression fixes
Szowesgad May 6, 2026
36ebed2
[claude/vc-implement] docs: bump AI_README to 0.4.0 + canonical GUIDE…
Szowesgad May 6, 2026
013f23a
[claude/vc-implement] wizard: client-config discovery as source of truth
Szowesgad May 6, 2026
63ffaa6
[claude/vc-implement] wizard: 5-step flow rebuild with strategy choice
Szowesgad May 6, 2026
74775e0
[claude/vc-implement] docs: update WIZARD/AI_README/GUIDELINES for 5-…
Szowesgad May 6, 2026
95785fa
marble: converge wizard socket and path truth
Szowesgad May 6, 2026
3bf5611
marble: honor wizard server selection
Szowesgad May 6, 2026
72d3586
marble: keep per-client wizard outputs by client kind
Szowesgad May 6, 2026
e9aa306
marble: align runtime identity and wizard preview
Szowesgad May 6, 2026
95e93bb
[claude/vc-implement] docs: tray dep risks + 0.4.1 changelog
Szowesgad May 6, 2026
7cd9073
[claude/vc-implement] wizard: add keys.rs transition + frame snapshot…
Szowesgad May 6, 2026
8728e76
[claude/vc-implement] wizard + runtime: P3 hygiene cleanup
Szowesgad May 6, 2026
c1c07d0
[codex/T5-discovery-audit] add vibecrafted-mcp wizard discovery
Szowesgad May 9, 2026
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
45 changes: 11 additions & 34 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,8 @@ on:
branches: [ main, develop ]

jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand All @@ -38,37 +34,18 @@ jobs:
- name: Rust tests
run: cargo test --no-default-features

coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ubuntu-cargo-coverage-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
ubuntu-cargo-coverage-

- uses: dtolnay/rust-toolchain@stable

- name: Install cargo-tarpaulin
run: cargo install cargo-tarpaulin --locked

run: cargo install cargo-tarpaulin
- name: Prepare tarpaulin output directory
run: mkdir -p coverage

run: mkdir -p target/tarpaulin
- name: Coverage (tarpaulin)
run: cargo tarpaulin --all-targets --no-default-features --timeout 300 --out Xml --output-dir coverage --skip-clean
continue-on-error: true

run: cargo tarpaulin --all-targets --no-default-features --timeout 120 --out Lcov --output-dir target/tarpaulin

- name: Upload coverage artifact
uses: actions/upload-artifact@v4
with:
name: coverage-reports
path: coverage/
if-no-files-found: ignore
name: coverage-lcov
path: target/tarpaulin/tarpaulin-report.lcov
if-no-files-found: error
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
actions: read

claude_args: |
--system-prompt "You are Claude, an AI assistant for rmcp-mux - a Rust MCP server multiplexer library. STYLE RULES: Be concise and professional. DO NOT use emojis. Focus on technical accuracy. Use code blocks for examples. Reference specific files and line numbers. When reviewing PRs: provide concrete, actionable feedback with specific code suggestions."
--system-prompt "You are Claude, an AI assistant for rust-mux - a Rust MCP server multiplexer library. STYLE RULES: Be concise and professional. DO NOT use emojis. Focus on technical accuracy. Use code blocks for examples. Reference specific files and line numbers. When reviewing PRs: provide concrete, actionable feedback with specific code suggestions."
204 changes: 0 additions & 204 deletions .github/workflows/gemini-dispatch.yml

This file was deleted.

122 changes: 0 additions & 122 deletions .github/workflows/gemini-invoke.yml

This file was deleted.

Loading