Claude
Agent Skills: Getting AI Coding Assistants to Follow Engineering Conventions
· ☕ 11 min read
1. What Agent Skills Is Agent Skills is a production-grade engineering skill pack for AI coding assistants. It encodes the way senior engineers work — their working methods, quality gates, and best practices across the full Define → Plan → Build → Verify → Review → Ship lifecycle — into Markdown workflows (Skills) that an agent can execute.

Using claude-code on a Server
· ☕ 3 min read
The same applies to a desktop environment. 1. Prepare the node.js environment Install nvm 1 curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash 1 2 echo 'export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"' >> ~/.bashrc echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> ~/.bashrc 1 source