用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/G1Joshi/Agent-Skills --skill assembly命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | assembly |
| description | Assembly language for low-level system and embedded programming. Use for .asm files. |
Low-level language with a very strong correspondence between the instruction in the language and the architecture's machine code instructions.
section .data
msg db "Hello, World!", 0xa
len equ $ - msg
section .text
global _start
_start:
mov rax, 1 ; write syscall
mov rdi, 1 ; stdout
mov rsi, msg ; buffer
mov rdx, len ; length
syscall
mov rax, 60 ; exit syscall
xor rdi, rdi ; exit code 0
syscall
Small, fast storage locations directly in the CPU (e.g., RAX, RBX, RIP).
Commands executed by the CPU (MOV, ADD, SUB, JMP).
Region of memory for storing local variables and return addresses (USH, POP).
Do:
Don't:
基于 SOC 职业分类