Use when adding new error messages to React, or seeing "unknown error code" warnings.
npx skills add 02loveslollipop/ctf-toolkit-bootstrap --skill "netcat-async"
Install specific skill from multi-skill repository
# Description
Maintain bidirectional netcat-style TCP communications with persistent asynchronous input/output. Use when Codex must keep a connection open across multiple commands, send messages while receiving background output, inspect connection logs, or safely start/stop reusable sessions for protocol testing, CTF services, debugging sockets, or interactive line-based services.
# SKILL.md
name: netcat-async
description: Maintain bidirectional netcat-style TCP communications with persistent asynchronous input/output. Use when Codex must keep a connection open across multiple commands, send messages while receiving background output, inspect connection logs, or safely start/stop reusable sessions for protocol testing, CTF services, debugging sockets, or interactive line-based services.
Netcat Async
Use scripts/ncx to manage long-lived TCP sessions instead of one-shot nc invocations.
Workflow
- Start a named session.
- Send one or more payloads while the daemon keeps receiving output asynchronously.
- Read logs (
tailfor recent data,followfor streaming). - Stop the session when done.
Commands
# Start session
scripts/ncx start --name demo --host 127.0.0.1 --port 9001
# Send text (append newline for line-oriented protocols)
scripts/ncx send --name demo --data 'ping' --newline
# Read latest output
scripts/ncx read --name demo --tail 40
# Follow output live
scripts/ncx read --name demo --follow
# Check metadata and process state
scripts/ncx status --name demo
# Stop session
scripts/ncx stop --name demo
Operational Rules
- Use one session per target/service flow (
--namescoped per host+port interaction). - Prefer
--newlinefor interactive text protocols. - Read with
--tailbefore--followto avoid missing context. - Stop sessions explicitly to avoid stale daemons.
- If
statusreportsrunning: false, inspectdaemon.logand restart.
Files and State
Session state lives at /tmp/codex-nc-async/<name>/:
io.log: timestamped TX/RX eventsrx.raw: raw received bytesdaemon.log: daemon stdout/stderrmeta.json: session metadatapid: daemon PID
References
- For usage patterns and recovery steps, read
references/patterns.md.
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.