Install
openclaw skills install @devita3323/claw-code-suite-cleanPython-only integration of Claw Code harness engineering project with OpenClaw. Provides access to 184 tools and 200+ commands for security analysis, code quality, development workflows, and agent orchestration. NO NETWORK ACCESS, NO CREDENTIALS REQUIRED, PURELY OFFLINE.
openclaw skills install @devita3323/claw-code-suite-cleanVersion: 1.0.1 - Clean, security-scanner compliant edition
Pure Python integration of the Claw Code harness engineering project with OpenClaw. This skill provides structured access to 184 tools and 207 commands mirrored from the original TypeScript implementation, including security analysis, code quality tools, development workflows, and agent orchestration patterns.
This edition has been audited and verified to contain:
Once installed, the skill exposes several high-level commands:
# Get system overview
./run.sh summary
# List available tools (first 10)
./run.sh tools --limit 10
# List available commands (first 10)
./run.sh commands --limit 10
# Route a prompt to find matching tools/commands
./run.sh route --prompt "analyze bash script for security issues" --limit 5
# Execute a specific tool (e.g., bashSecurity)
./run.sh exec-tool --name bashSecurity --payload "#!/bin/bash\necho test"
# Execute a specific command
./run.sh exec-command --name advisor --prompt "review this code"
bashSecurity, powershellSecurity, etc.AgentTool, forkSubagent, runAgent, etc.UI, agentDisplay, agentColorManageragentMemory, agentMemorySnapshotexec-command, exec-toolroute, show-command, show-toolload-session, flush-transcriptremote-mode, ssh-mode, teleport-mode (placeholders only)summary, manifest, parity-auditclaw_harness.py provides a production-grade Python wrapper around the Claw Code clean-room port.claw_harness_enhanced.py supports expanded command set with positional arguments.# Analyze a bash script
./run.sh exec-tool --name bashSecurity --payload "$(cat script.sh)"
# Analyze PowerShell
./run.sh exec-tool --name powershellSecurity --payload "$(cat script.ps1)"
# Route a code review request
./run.sh route --prompt "review this Python function for bugs" --limit 5
# Use the advisor command
./run.sh exec-command --name advisor --prompt "Review this API endpoint for security issues"
# Start an agent session (simulated locally)
./run.sh exec-tool --name runAgent --payload "Explore the current directory structure"
# Fork a subagent for specific task
./run.sh exec-tool --name forkSubagent --payload "Write unit tests for module X"
Environment variables (optional):
CLAW_CODE_WORKSPACE: Path to claw-code repository (default: ./claw-code)CLAW_CODE_TIMEOUT_SEC: Command timeout in seconds (default: 120)CLAW_CODE_MAX_OUTPUT_CHARS: Maximum output length (default: 25000)CLAW_CODE_EVENT_LOG: Path to event log fileclaw-code-suite/
├── SKILL.md # This file
├── run.sh # Main entry point
├── claw_harness.py # Original production harness wrapper (6 commands)
├── claw_harness_enhanced.py # Enhanced harness with full command set
├── claw_wrapper.py # Python adapter
├── scripts/
│ └── claw_wrapper.py # Core Python wrapper
├── claw-code/ # Claw Code Python port (full, clean)
│ ├── src/ # Python source code (184 tools, 207 commands)
│ ├── tests/ # Test suite
│ └── telemetry/ # Event logging
├── capability_index.json # Tool/command inventory
└── package.json # Node.js metadata
To verify this skill contains no network code:
# Check for network imports in Python code
find . -name "*.py" -exec grep -l "requests\|http\.client\|urllib\|socket" {} \;
# Check for Rust/Cargo files (should be none)
find . -name "*.rs" -o -name "Cargo.*" -o -name "*.toml"
# Check for server/binding code
find . -name "*.py" -exec grep -l "server\|bind\|listen\|port" {} \;
import sys
sys.path.append(".")
from claw_harness_enhanced import claw_invoke, claw_exec_tool
import asyncio
async def main():
result = await claw_exec_tool("bashSecurity", "#!/bin/bash\necho test")
print(result)
asyncio.run(main())
python3 -c "
import asyncio
from claw_harness_enhanced import claw_route
result = asyncio.run(claw_route('security audit', 3))
print(result)
"
The skill is built on the Claw Code Python port, which mirrors 184 tools and 207 commands from the original TypeScript implementation. The port maintains parity with the original while providing a clean Python API.
To extend or modify:
claw_harness_enhanced.py to expose additional commands from src/main.pyCOMMAND_DEFS in the harness./run.sh --summary to verify functionalityClaw Code is licensed under its original terms. This integration skill is provided as-is for OpenClaw users.