Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计未展示

blocklet-getting-startedBlocklet 入门

Agent Skill

blocklet-getting-started 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

198

周安装

8

GitHub Stars

公开资料未说明

下载量

62
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:blocklet-getting-started(Blocklet 入门)
来源仓库:https://github.com/arcblock/agent-skills
仓库路径:skills/blocklet-getting-started
安装命令:
npx skills add arcblock/agent-skills --skill "blocklet-getting-started"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add arcblock/agent-skills --skill "blocklet-getting-started"

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息筛选与匹配。
  • 通过 npx skills add arcblock/agent-skills --skill "blocklet-getting-started" 安装使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
blocklet-getting-started
description
Guide users to choose between blocklet-dev-setup and blocklet-server-dev-setup. Ask what to develop (blocklet or server), handle migration from existing environments, explain convention directories, and showcase advanced usages. Use /blocklet-getting-started or say "I want to start blocklet development", "how to setup blocklet dev environment" to trigger.

Blocklet Getting Started

An interactive Q&A guide for developers who are new to ArcBlock's Blocklet ecosystem and don't know what questions to ask.

Core Philosophy

"Guide through questions, answer from skills."

This skill maintains a curated list of questions. When user selects a question, AI reads the relevant skill files in plugins/blocklet/skills/ to understand the context and provide accurate answers.

"If users knew what to ask, they wouldn't need this skill."

Users who know their questions can ask AI directly. This skill is for those who need guided discovery.


Workflow

Phase 0: Language Selection

First, use AskUserQuestion to determine the user's preferred language:

Which language do you prefer? / 请选择您的语言 / 言語を選択してください

Options:
A. English
B. 中文 (Chinese)
C. 日本語 (Japanese)

After user selects a language, ALL subsequent communication must be in that language.


Phase 1: Present Questions (Loop)

Use AskUserQuestion to present questions.

Due to UI constraints (max 4 options), present 3 questions + 1 special option:

  • 3 questions from different categories (maximize user choice)
  • "Start my first environment setup" - Redirect to /blocklet-dev-setup or /blocklet-server-dev-setup

After answering each question, return to Phase 1 and present the next set of questions (pick different ones).


Question Catalog

Questions are organized by category. When presenting questions, pick 3 from different categories to give variety. Track which questions have been asked to avoid repetition.

Category: Getting Started (GS)

IDQuestionAnswer Source
GS-1What's the difference between developing a Blocklet vs developing Blocklet Server?Read blocklet-dev-setup/SKILL.md and blocklet-server-dev-setup/SKILL.md, compare their purposes
GS-2Which skill should I use to start development?Analyze user's goal, recommend blocklet-dev-setup or blocklet-server-dev-setup
GS-3What is the complete development workflow from setup to PR?Read blocklet-dev-setup/SKILL.md Phase 1-7, blocklet-pr/SKILL.md
GS-4What prerequisites do I need before starting?Read blocklet-dev-setup/SKILL.md Phase 0 and Phase 3
GS-5How do I know if my environment is ready?Read blocklet-dev-setup/SKILL.md Phase 3 (Prerequisites Check)

Category: Convention Directories (CD)

IDQuestionAnswer Source
CD-1Why do we use convention directories like ~/arcblock-repos/?Read blocklet-dev-setup/SKILL.md Convention Directories section
CD-2What are all the convention directories and their purposes?Read blocklet-dev-setup/SKILL.md Convention Directories table
CD-3What happens if I don't follow the convention directories?Explain: AI cannot auto-discover repos, cross-project analysis fails
CD-4How do I migrate my existing repos to convention directories?Provide migration commands (move or symlink)
CD-5Where should I put my Blocklet Server data?Explain ~/blocklet-server-data/ vs ~/blocklet-server-dev-data/

Category: Server Modes (SM)

IDQuestionAnswer Source
SM-1What's the difference between blocklet server, source development, and blocklet dev?Read blocklet-dev-setup/SKILL.md Phase 4, blocklet-server-dev-setup/SKILL.md
SM-2When should I use blocklet server start vs source development?Explain: CLI for blocklet apps, source for Server core changes
SM-3Can I run CLI Server and Source Server at the same time?No, they use same ports. Read blocklet-dev-setup/SKILL.md Phase 4.0
SM-4What is bn-dev and when do I use it?Read blocklet-dev-setup/SKILL.md Phase 4.1.1
SM-5How do I switch between production and source development mode?Read blocklet-dev-setup/SKILL.md Phase 4.1

Category: tmux Process Management (TM)

IDQuestionAnswer Source
TM-1Why do we use tmux to manage blocklet dev processes?Explain: AI can read logs via tmux capture-pane, monitor without blocking
TM-2How do I see what tmux sessions are running?Command: tmux ls
TM-3How do I attach to a tmux session to see output?Command: tmux attach -t {session-name}
TM-4How do I exit tmux without stopping the process?Key: Ctrl+B, then D
TM-5How do I scroll up to see old output in tmux?Key: Ctrl+B, [, then arrow keys, q to exit
TM-6How do I switch between windows in a tmux session?Key: Ctrl+B, n (next) / p (previous) / 0-9 (specific)
TM-7How do I stop a blocklet dev process?Command: tmux kill-session -t blocklet-dev-{repo}
TM-8What's the tmux session naming convention?blocklet-dev-{repo} for apps, blocklet for Server source

Category: Repository & Branch (RB)

IDQuestionAnswer Source
RB-1How does AI find and clone repositories automatically?Read blocklet-dev-setup/SKILL.md Phase 1 and Repository Search section
RB-2What inputs can I provide to start development?GitHub Issue URL, Blocklet URL, repo name, problem description
RB-3How does AI determine which branch to use?Read blocklet-branch/SKILL.md
RB-4How does AI create feature branches?Read blocklet-branch/SKILL.md branch naming conventions
RB-5What are the GitHub organizations for ArcBlock projects?ArcBlock (core), blocklet (apps), AIGNE-io (AI framework)

Category: Development Workflow (DW)

IDQuestionAnswer Source
DW-1How do I start developing a specific blocklet?Read blocklet-dev-setup/SKILL.md Phase 1-6
DW-2How do I access my blocklet after starting dev server?Read blocklet-dev-setup/SKILL.md Phase 6.1.2 (parse URLs from output)
DW-3What's the difference between Server Admin and Service Admin URLs?/.well-known/server/admin vs /.well-known/service/admin
DW-4How do I create commits following conventions?Use /commit skill
DW-5How do I create a PR after development?Use /blocklet-pr skill, requires gh CLI
DW-6What checks run before PR creation?Read blocklet-pr/SKILL.md (lint, tests, version bump)

Category: Troubleshooting (TS)

IDQuestionAnswer Source
TS-1Why can't I access *.did.abtnet.io or *.ip.abtnet.io domains?DNS issue, set DNS to 8.8.8.8. Read blocklet-dev-setup/SKILL.md Error Handling
TS-2Why does Blocklet Server fail to start with "worker_connections NaN"?Set ulimit -n 65536. Read blocklet-dev-setup/SKILL.md Phase 3.6
TS-3Why do I get EACCES error on port 80/443?No permission for privileged ports, use 8080/8443. Read Phase 3.7
TS-4Why does blocklet dev fail with "Blocklet Server is not running"?Start Server first. Read blocklet-dev-setup/SKILL.md Phase 4
TS-5How do I check Blocklet Server logs?PM2_HOME=~/.arcblock/abtnode pm2 logs abt-node-daemon --lines 100
TS-6How do I completely stop all blocklet development processes?Read blocklet-dev-setup/SKILL.md "Stop Blocklet Dev Process" section

Category: Advanced Topics (AT)

IDQuestionAnswer Source
AT-1How do I analyze a Blocklet URL to find its source repository?Use /blocklet-url-analyzer skill
AT-2How do I handle multi-repository issues?Read blocklet-dev-setup/SKILL.md Phase 1.3
AT-3How do I create a new release/version of my blocklet?Use /blocklet-updater skill
AT-4What is first-time wallet binding and why is it required?Read blocklet-dev-setup/SKILL.md Phase 4.5
AT-5How do I convert an existing project to a blocklet?Use /blocklet-converter skill

How to Answer Questions

When user selects a question:

  1. Read the Answer Source - Load the referenced skill file(s) from plugins/blocklet/skills/
  2. Extract relevant information - Find the specific section mentioned
  3. Provide a clear, concise answer - Explain in user's selected language
  4. Include practical examples - Commands, code snippets when relevant
  5. Return to Phase 1 - Present next set of questions

Presenting Questions

Default: Show 3 Questions + 1 Special Option

Pick 3 questions from different categories, plus 1 special option (max 4 total):

What would you like to know?

A. What's the difference between developing a Blocklet vs developing Blocklet Server?
B. Why do we use convention directories like ~/arcblock-repos/?
C. Why can't I access *.did.abtnet.io domains?
D. Start my first environment setup (ready to begin development)

After answering a question, pick 3 different questions for the next round.

When User Selects "Start My First Environment Setup"

Use AskUserQuestion to determine development target:

What do you want to develop?

A. Blocklet Application (Recommended)
   - Examples: payment-kit, media-kit, discuss-kit, your own blocklet
   - Applications that run ON Blocklet Server

B. Blocklet Server Core
   - The Server runtime itself
   - Contributing to Blocklet Server core functionality
User ChoiceAction
Blocklet ApplicationRedirect to /blocklet-dev-setup skill
Blocklet Server CoreRedirect to /blocklet-server-dev-setup skill

Error Handling

SituationHandling
User asks question not in catalogTry to answer from skill files, or add to catalog for future
Referenced skill file not foundInform user, provide general guidance
User wants to start developingRedirect to /blocklet-dev-setup or /blocklet-server-dev-setup
User provides Issue URL or Blocklet URLRedirect to /blocklet-dev-setup directly

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

OpenCode

30.44%
按下载量换算19

Cursor

22.03%
按下载量换算14

Codex

16.17%
按下载量换算10

Claude Code

11.92%
按下载量换算7

Antigravity

8.04%
按下载量换算5

Gemini CLI

3.33%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills