AgentSkillsCN

jc

将 CLI 输出转换为 JSON,便于结构化处理与分析。适用于将 ps、dig、netstat、ls,或其他命令的输出解析为机器可读格式,以便通过管道传输至 jq 或脚本中进行进一步处理。

SKILL.md
--- frontmatter
name: jc
description: Converts CLI output to JSON for structured processing and analysis. Use when parsing ps, dig, netstat, ls, or other command output into machine-readable format for piping to jq or scripts.

jc

JSONifies the output of CLI tools and file-types for easier parsing.

Basic Usage

bash
command | jc --parser          # Pipe output
jc command                    # Magic syntax
jc --help                     # List all parsers
jc --help --parser            # Parser docs

Examples

bash
dig example.com | jc --dig | jq '.answer[].data'
ps aux | jc --ps
ifconfig | jc --ifconfig

Parsers

CategoryParsers
Systemps, top, free, df, du, ls, stat, uptime
Networkdig, ping, traceroute, netstat, ss, ifconfig
Filesls, find, stat, file, mount, fstab
Packagesdpkg -l, rpm -qi, pacman, brew
Logssyslog, clf (Common Log Format)
Devgit log, docker ps, kubectl

Options

FlagDescription
-pPretty format JSON
-rRaw output (less processed)
-uUnbuffered output
-qQuiet (suppress warnings)
-dDebug mode
-yYAML output
-MAdd metadata
-sSlurp multi-line input

Slicing

Skip lines: START:STOP syntax

bash
cat file.txt | jc 1:-1 --parser  # Skip first/last lines

Slurp Mode

For multi-line parsers: --slurp outputs array

bash
cat ips.txt | jc --slurp --ip-address

Python Library

python
import jc

# Parse command output
data = jc.parse('dig', output_string)

# Or parse directly
data = jc.parsers.dig.parse(output_string)

Tips

  • Magic syntax: jc command auto-detects parser
  • Use jq for processing: jc cmd | jq '.field'
  • --slurp for multiple items per file
  • Streaming parsers for large outputs
  • Python lib returns dict/list, not JSON

Related Skills

  • nu-shell: Alternative structured data processing
  • toon: Compact JSON representation