mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-02-14 14:32:49 +00:00
- Fix live monitoring style error by calling _live_monitor() helper directly - Remove default_parameters duplication from 10 workflow metadata files - Remove deprecated volume_mode parameter from 26 files across CLI, SDK, backend, and docs - Configure Python worker to start automatically with docker compose up - Clean up constants, validation, completion, and example files Fixes # - Live monitoring now works correctly with --live flag - Workflow metadata follows JSON Schema standard - Cleaner codebase without deprecated volume_mode - Python worker (most commonly used) starts by default
35 lines
705 B
YAML
35 lines
705 B
YAML
name: gitleaks_detection
|
|
version: "1.0.0"
|
|
vertical: secrets
|
|
description: "Detect secrets and credentials using Gitleaks"
|
|
author: "FuzzForge Team"
|
|
tags:
|
|
- "secrets"
|
|
- "gitleaks"
|
|
- "git"
|
|
- "leak-detection"
|
|
|
|
workspace_isolation: "shared"
|
|
|
|
parameters:
|
|
type: object
|
|
properties:
|
|
scan_mode:
|
|
type: string
|
|
enum: ["detect", "protect"]
|
|
default: "detect"
|
|
description: "Scan mode: detect (entire repo history) or protect (staged changes)"
|
|
|
|
redact:
|
|
type: boolean
|
|
default: true
|
|
description: "Redact secrets in output"
|
|
|
|
no_git:
|
|
type: boolean
|
|
default: false
|
|
description: "Scan files without Git context"
|
|
|
|
required_modules:
|
|
- "gitleaks"
|