用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aiskillstore/marketplace --skill enact-hello-brainfuck命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | enact-hello-brainfuck |
| version | 1.0.0 |
| description | A greeting tool written entirely in Brainfuck - the esoteric programming language |
| enact | 2.0 |
| from | debian:bookworm-slim |
| build | ["apt-get update && apt-get install -y beef"] |
| command | beef /workspace/hello.bf |
| timeout | 30s |
| license | MIT |
| tags | ["brainfuck","esoteric","hello","greeting","example"] |
| inputSchema | {"type":"object","properties":{},"additionalProperties":false} |
| outputSchema | {"type":"object","properties":{"message":{"type":"string","description":"A greeting message from Brainfuck"}}} |
| examples | [{"input":{},"description":"Get a greeting from Brainfuck"}] |
A greeting tool written entirely in Brainfuck - the famously minimalist esoteric programming language created by Urban Müller in 1993.
Brainfuck has only 8 commands:
> - Move pointer right< - Move pointer left+ - Increment cell- - Decrement cell. - Output cell as ASCII, - Input to cell[ - Jump past ] if cell is zero] - Jump back to [ if cell is non-zeroEverything else (including comments) is ignored.
The program builds each ASCII character using multiplication loops. For example, to print H (ASCII 72):
>+++++++[-<++++++++++>]<++.[-]
This creates 7 in a cell, multiplies by 10 (using a loop), adds 2, then prints.
enact run enact/hello-brainfuck
Call enact__hello-brainfuck with no arguments.
Returns JSON:
{"message":"Hello from Brainfuck!"}
Because we can. And because every tool registry deserves at least one Brainfuck program.