rename: FuzzForge → SecPipe

Rename the entire project from FuzzForge to SecPipe:
- Python packages: fuzzforge_cli → secpipe_cli, fuzzforge_common → secpipe_common,
  fuzzforge_mcp → secpipe_mcp, fuzzforge_tests → secpipe_tests
- Directories: fuzzforge-cli → secpipe-cli, fuzzforge-common → secpipe-common,
  fuzzforge-mcp → secpipe-mcp, fuzzforge-tests → secpipe-tests
- Environment variables: FUZZFORGE_* → SECPIPE_*
- MCP server name: SecPipe MCP Server
- CI workflows, Makefile, Dockerfile, hub-config, NOTICE updated
- Fix mcp-server.yml to use uvicorn secpipe_mcp.application:app
This commit is contained in:
AFredefon
2026-04-09 04:10:46 +02:00
parent bbf864e88b
commit be009a4094
120 changed files with 866 additions and 800 deletions
+15 -15
View File
@@ -25,37 +25,37 @@ jobs:
- name: Install dependencies
run: uv sync
- name: Ruff check (fuzzforge-cli)
- name: Ruff check (secpipe-cli)
run: |
cd fuzzforge-cli
cd secpipe-cli
uv run --extra lints ruff check src/
- name: Ruff check (fuzzforge-mcp)
- name: Ruff check (secpipe-mcp)
run: |
cd fuzzforge-mcp
cd secpipe-mcp
uv run --extra lints ruff check src/
- name: Ruff check (fuzzforge-common)
- name: Ruff check (secpipe-common)
run: |
cd fuzzforge-common
cd secpipe-common
uv run --extra lints ruff check src/
- name: Mypy type check (fuzzforge-cli)
- name: Mypy type check (secpipe-cli)
run: |
cd fuzzforge-cli
cd secpipe-cli
uv run --extra lints mypy src/
- name: Mypy type check (fuzzforge-mcp)
- name: Mypy type check (secpipe-mcp)
run: |
cd fuzzforge-mcp
cd secpipe-mcp
uv run --extra lints mypy src/
# NOTE: Mypy check for fuzzforge-common temporarily disabled
# NOTE: Mypy check for secpipe-common temporarily disabled
# due to 37 pre-existing type errors in legacy code.
# TODO: Fix type errors and re-enable strict checking
#- name: Mypy type check (fuzzforge-common)
#- name: Mypy type check (secpipe-common)
# run: |
# cd fuzzforge-common
# cd secpipe-common
# uv run --extra lints mypy src/
test:
@@ -77,10 +77,10 @@ jobs:
- name: Run MCP tests
run: |
cd fuzzforge-mcp
cd secpipe-mcp
uv run --extra tests pytest -v
- name: Run common tests
run: |
cd fuzzforge-common
cd secpipe-common
uv run --extra tests pytest -v
+6 -6
View File
@@ -27,23 +27,23 @@ jobs:
- name: Start MCP server in background
run: |
cd fuzzforge-mcp
nohup uv run python -m fuzzforge_mcp.server > server.log 2>&1 &
cd secpipe-mcp
nohup uv run uvicorn secpipe_mcp.application:app --host 127.0.0.1 --port 8000 > server.log 2>&1 &
echo $! > server.pid
sleep 3
- name: Run MCP tool tests
run: |
cd fuzzforge-mcp
cd secpipe-mcp
uv run --extra tests pytest tests/test_resources.py -v
- name: Stop MCP server
if: always()
run: |
if [ -f fuzzforge-mcp/server.pid ]; then
kill $(cat fuzzforge-mcp/server.pid) || true
if [ -f secpipe-mcp/server.pid ]; then
kill $(cat secpipe-mcp/server.pid) || true
fi
- name: Show server logs
if: failure()
run: cat fuzzforge-mcp/server.log || true
run: cat secpipe-mcp/server.log || true