Skip to content

Commit c10b26d

Browse files
committed
fix(workflows): correct binary name references in GitHub workflows and moth specifications
- Fix GitHub workflow codeprism-moth-specs.yml to use correct binary name 'codeprism' instead of 'codeprism-mcp-server' - Update all moth test specifications to reference the correct binary name - Affected files: all comprehensive and tool specifications in crates/codeprism-moth-specs/ - This resolves the workflow failure in run 16641501099 where builds failed with 'no bin target named codeprism-mcp-server' - The actual binary name is 'codeprism' as defined in crates/codeprism-mcp-server/Cargo.toml closes #workflow-16641501099
1 parent 2222c5b commit c10b26d

11 files changed

+12
-12
lines changed

.github/workflows/codeprism-moth-specs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,10 @@ jobs:
148148
--package mandrel-mcp-th \
149149
--package codeprism-mcp-server \
150150
--bin moth \
151-
--bin codeprism-mcp-server
151+
--bin codeprism
152152
153153
# Verify binaries
154-
if [[ ! -f "target/release/moth" ]] || [[ ! -f "target/release/codeprism-mcp-server" ]]; then
154+
if [[ ! -f "target/release/moth" ]] || [[ ! -f "target/release/codeprism" ]]; then
155155
echo "❌ Required binaries not found after build"
156156
exit 1
157157
fi

crates/codeprism-moth-specs/codeprism/comprehensive/codeprism-java-comprehensive.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ capabilities:
1818
# Server startup configuration
1919
server:
2020
command: "cargo"
21-
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism-mcp-server"]
21+
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism"]
2222
env:
2323
RUST_LOG: "info"
2424
MCP_PROTOCOL_VERSION: "2025-06-18"

crates/codeprism-moth-specs/codeprism/comprehensive/codeprism-javascript-comprehensive.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ capabilities:
1818
# Server startup configuration
1919
server:
2020
command: "cargo"
21-
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism-mcp-server"]
21+
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism"]
2222
env:
2323
RUST_LOG: "info"
2424
MCP_PROTOCOL_VERSION: "2025-06-18"

crates/codeprism-moth-specs/codeprism/comprehensive/codeprism-python-comprehensive.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ capabilities:
1818
# Server startup configuration
1919
server:
2020
command: "cargo"
21-
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism-mcp-server"]
21+
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism"]
2222
env:
2323
RUST_LOG: "info"
2424
MCP_PROTOCOL_VERSION: "2025-06-18"

crates/codeprism-moth-specs/codeprism/comprehensive/codeprism-rust-comprehensive.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ capabilities:
1818
# Server startup configuration
1919
server:
2020
command: "cargo"
21-
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism-mcp-server"]
21+
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism"]
2222
env:
2323
RUST_LOG: "info"
2424
MCP_PROTOCOL_VERSION: "2025-06-18"

crates/codeprism-moth-specs/codeprism/tools/codeprism-complexity-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ capabilities:
1717
# Server startup configuration
1818
server:
1919
command: "cargo"
20-
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism-mcp-server"]
20+
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism"]
2121
env:
2222
RUST_LOG: "info"
2323
MCP_PROTOCOL_VERSION: "2025-06-18"

crates/codeprism-moth-specs/codeprism/tools/codeprism-core-navigation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ capabilities:
1717
# Server startup configuration
1818
server:
1919
command: "cargo"
20-
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism-mcp-server"]
20+
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism"]
2121
env:
2222
RUST_LOG: "info"
2323
MCP_PROTOCOL_VERSION: "2025-06-18"

crates/codeprism-moth-specs/codeprism/tools/codeprism-flow-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ capabilities:
1717
# Server startup configuration
1818
server:
1919
command: "cargo"
20-
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism-mcp-server"]
20+
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism"]
2121
env:
2222
RUST_LOG: "info"
2323
MCP_PROTOCOL_VERSION: "2025-06-18"

crates/codeprism-moth-specs/codeprism/tools/codeprism-search-discovery.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ capabilities:
1717
# Server startup configuration
1818
server:
1919
command: "cargo"
20-
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism-mcp-server"]
20+
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism"]
2121
env:
2222
RUST_LOG: "info"
2323
MCP_PROTOCOL_VERSION: "2025-06-18"

crates/codeprism-moth-specs/codeprism/tools/codeprism-specialized-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ capabilities:
1717
# Server startup configuration
1818
server:
1919
command: "cargo"
20-
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism-mcp-server"]
20+
args: ["run", "--package", "codeprism-mcp-server", "--bin", "codeprism"]
2121
env:
2222
RUST_LOG: "info"
2323
MCP_PROTOCOL_VERSION: "2025-06-18"

0 commit comments

Comments
 (0)