원클릭으로
setup
Install, build, and configure the Forge agent job runner. Verify the binary, start the daemon, and validate everything works.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Install, build, and configure the Forge agent job runner. Verify the binary, start the daemon, and validate everything works.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create or update the project security baseline, profile, suppressions file, and gitignore entries for security scans
Fix or guide remediation for a specific security finding from the latest scan report
Run a security assessment using deterministic static analysis tools with LLM-powered triage
Inspect and optionally install security scanning tools for the security plugin
Query ctx memory and inject results into context
Show ctx memory status (node counts, types, tiers, tokens)
| name | setup |
| description | Install, build, and configure the Forge agent job runner. Verify the binary, start the daemon, and validate everything works. |
| user-invocable | true |
| allowed-tools | ["Bash","Read","AskUserQuestion"] |
Build, install, and verify the Forge agent job runner.
command -v forge && forge version
If found and working, skip to Step 4.
The forge source lives at ~/projects/forge.
cd ~/projects/forge && go build -o forge ./cmd/forge
Ask the user where to install. Common options:
~/.local/bin/forge (user-local, usually on PATH)/usr/local/bin/forge (system-wide, needs sudo)~/projects/forge/ and add to PATHcp ~/projects/forge/forge ~/.local/bin/forge
Verify:
forge version
if [[ -f ~/.forge/forge.pid ]]; then
PID=$(cat ~/.forge/forge.pid | tr -d '[:space:]')
if kill -0 "$PID" 2>/dev/null; then
echo "Daemon running (pid $PID)"
else
echo "Stale PID file - daemon not running"
fi
else
echo "Daemon not running"
fi
nohup forge daemon > ~/.forge/daemon.log 2>&1 &
sleep 1
forge list
cat ~/.forge/config.yaml 2>/dev/null || echo "No config - using defaults (agent: claude, model: sonnet, timeout: 10m)"
forge run --agent claude --model haiku "Say hello in one sentence"
Summarize:
forge_submit, forge_status, forge_output, forge_list