Token导航 LogoToken导航TokenDH.com
开发执行命令clawhub未标认证来源可访问clear审计通过

scratch-blocks暂存块

Agent Skill

scratch-blocks 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,644

周安装

108

GitHub Stars

1

下载量

847
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:scratch-blocks(暂存块)
来源仓库:https://github.com/z-bra0/scratch-blocks
安装命令:
openclaw skills install scratch-blocks
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install scratch-blocks

简介

当用户上传“.sb3”或“.sprite3”文件时,或者当对话是关于 Scratch 时,使用此技能,更清晰的块式可视化会有所帮助。

SKILL.md

name
scratch-blocks
description
>
metadata
author
Z-Bra
version
0.0.2

Scratch Code Assistant

Output Contract

  • scratch-json is internal-only. Never paste it into the final user reply.
  • If you show Scratch code or block structure to the user, you must run scripts/render_ascii.py and use its exact output.
  • Use scratch-json only for tool input and internal reasoning.
  • If you mention Scratch code, show rendered blocks instead of describing the code only in prose whenever practical.
  • Use rendered block output in fenced code blocks.
  • Do not add a follow-up like "Want me to render an example?".
  • Do not rewrite, add, split, or restyle the rendered Scratch blocks.
  • Do not hand-draw, imitate, or approximate Scratch block ASCII from memory.

Goal

Help with Scratch code questions by representing Scratch projects into scratch-json when needed, reasoning over that internal representation, and showing Scratch code to the user through scripts/render_ascii.py instead of raw JSON. For conceptual questions, prefer a visual rendered example over prose-only explanation.

Repo Usage

  • Read files under references/ when you need skill guidance or file-handling instructions.
  • Files under data/ are runtime assets used by scripts/, not AI-facing reference docs.
  • Do not read files under data/ as reference material.

Internal scratch-json Reference

scratch-json is an internal working format for the AI. Do not return it to the user.

scratch-json is a flat JSON array of objects. Each object repeats its owning target, which can represent a Sprite or the Stage.

This is different from raw Scratch project.json / sprite.json. If you have a raw Scratch file, run scripts/extract.py first.

Each object includes:

FieldTypeDescription
typestringscript, variable, or list
targetstringOwning sprite or stage name

variable Structure

FieldTypeDescription
namestringVariable name
valueanyCurrent value

list Structure

FieldTypeDescription
namestringList name
itemslistCurrent list items

script Structure

FieldTypeDescription
blockslist of block objectsOne linked top-level script

Block Structure

Every block must include opcode. params and blocks are optional.

FieldTypeDescription
opcodestringBlock type, Scratch block opcode
paramslistOptional positional input values
blockslist of scriptsOptional sub-script branches

params Item Types

TypeExample
number / string10, "Hello!", "space"
reporter block{ opcode: motion_xposition }
variable / list / broadcast{ type: variable, name: score }

blocks Branches

  • Most blocks omit blocks.
  • control_repeat and control_if use one branch for the body.
  • control_if_else uses two branches: index 0 for then, index 1 for else.

Format

This format is for internal reasoning and tool input, not for user-facing replies.

Internal object kinds:

script, variable, list

Display

  • Must use scripts/render_ascii.py before showing Scratch code to the user
  • Treat scratch-json as intermediate data only
  • If the output is for the user, render first and reply with the rendered blocks, not JSON
  • Wrap rendered block output in fenced code blocks so it is visually separated from the explanation
# Preferred: write scratch-json to a temp file, then render that file.
# This avoids shell quoting issues and very long CLI arguments.
tmp_json=/tmp/scratchcode/blocks.json
python3 <SKILL_DIR>/scripts/render_ascii.py "$tmp_json"

# For scratch-json file path, optionally narrowed to target names:
python3 <SKILL_DIR>/scripts/render_ascii.py "<SCRATCH_JSON_PATH>" --targets Sprite1 Stage

Workflow

Step 1. Decide whether file extraction is needed

  • If the user is asking a general Scratch code question, go to step 2 and prefer a rendered example plus brief explanation.
  • If the user provides a .sb3 or .sprite3 file, follow the process in

references/UPLOADS.md.

  • If you are given raw Scratch project.json or sprite.json, run scripts/extract.py first before scripts/render_ascii.py.

Step 2. Reason Internally

  • Use scratch-json only as an internal representation for analysis.
  • For simple conceptual questions, create a minimal internal example when needed so you can render it.
  • When you create scratch-json yourself, write it to a temp file and pass the file path to scripts/render_ascii.py.

Step 3. Reply to the User

  • Never return scratch-json data to the user.
  • For "how to" or "what does this do" questions, prefer rendered Scratch blocks first.
  • If you want to show Scratch code, always run scripts/render_ascii.py first.
  • Put rendered Scratch output inside a fenced code block.
  • If you did not run render_ascii.py, do not output boxed ASCII at all; answer in prose or run the renderer first.
  • After rendering, explain the answer in short prose around the rendered block output when useful.
  • Before sending the final answer, check: "Am I about to paste scratch-json?" If yes, stop and render it first.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.83%
按下载量换算676

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install scratch-blocks 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills