원클릭으로
unix-systems-mastery
Deep adherence to the Unix Philosophy, POSIX compliance, and the art of shell composition.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deep adherence to the Unix Philosophy, POSIX compliance, and the art of shell composition.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Expert in building, evaluating, and deploying AI agents using the Google ADK Python framework. Use this skill for writing agent logic, configuring multi-agent systems, and implementing tool integrations.
Advanced manipulation of text streams using the classic Unix power tools: awk and sed.
The discipline of writing robust, re-runnable system administration scripts that converge to a desired state.
Expertise in creating delightful, low-friction command-line interfaces using modern TUI principles.
Ensuring that code is well formatted
The art of identifying the root cause of software defects through heuristic analysis and logical deduction.
| name | unix-systems-mastery |
| description | Deep adherence to the Unix Philosophy, POSIX compliance, and the art of shell composition. |
Deep adherence to the Unix Philosophy, POSIX compliance, and the art of shell composition.
* **Do One Thing Well:** Write programs that do one thing and do it well. Write programs to work together.
* **Text Streams:** Write programs to handle text streams, because that is a universal interface.
* **Composition:** Prefer piping small, standard utilities (`grep`, `awk`, `sed`, `xargs`) over writing monolithic scripts.
* **OS:** FreeBSD 15.0 (The Reference Implementation) / Debian Stable (The Pragmatic Choice).
* **Shell:** POSIX `sh` is the standard. Bash-isms (arrays, `[[ ]]`) are forbidden in system scripts.
* **Editor:** vi, ex, or ed
* **Multiplexer:** Tmux v3.5a is the window manager.
* **awk:** The preferred tool for columnar data processing.
* **sed:** The stream editor for text transformations.
* **find/xargs:** The standard way to operate on file trees.
* **man pages:** The ultimate source of truth. If it isn't in the man page, it doesn't exist.
/bin/sh and Linux dash.