Marketplace blocklet-converter
Converts static web or Next.js projects into ArcBlock blocklets using provided DID. Analyzes project structure, generates configuration files, and validates setup. Requires blocklet DID as parameter.
git clone https://github.com/aiskillstore/marketplace
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/arcblock/blocklet-converter" ~/.claude/skills/aiskillstore-marketplace-blocklet-converter && rm -rf "$T"
skills/arcblock/blocklet-converter/SKILL.mdBlocklet Converter
Converts static web projects and Next.js applications into ArcBlock blocklets with proper configuration and validation.
Parameters
(required): Pre-generated blocklet DID (format: did
z8ia...)
Example:
"Convert this project to blocklet using DID z8ia4e5vAeDsQEE2P26bQqz9oWR1Lxg9qUMaV"
If missing or invalid, exit immediately with error message: "Blocklet DID parameter is required."
Workflow
1. Project Analysis
Skip directories:
node_modules/, .pnpm/, .yarn/, .cache/, .turbo/, bower_components/
Verify Web Application Exists
Check for ANY of:
with web-related dependenciespackage.json
in root,index.html
, orpublic/
or common locationssrc/- Web framework config (
,vite.config.*
,webpack.config.*
, etc.)next.config.*
If none found → EXIT with error message: "No web application detected."
Detect Project Type
Check
package.json dependencies for:
- Next.js:
in dependencies → Next.js projectnext - Backend frameworks: express, koa, fastify, nest, etc. → EXIT with error: "Only static webapp and next.js projects are supported."
- Otherwise → Static webapp
Extract & Emit Metadata (Early)
Immediately after confirming project type, extract metadata from
package.json:
: Human-friendly project name suitable for public display (e.g.,title
→my-cool-app
)My Cool App
: A clear, non-technical description for end users. If package.json description is too technical, rewrite it to be user-friendly.description
Emit using the protocol below, then continue with the workflow:
<<<BLOCKLET_PROJECT>>> {"title": "...", "description": "..."} <<<END_BLOCKLET_PROJECT>>>
Build (if build script exists)
bun install && bun run build
If either fails → EXIT with error output.
Locate Output Directory
For Next.js projects: Output directory is always
.next — skip detection.
For static webapps: Find
index.html in: dist/ → build/ → out/ → public/ → ./, or any other common locations. If not found → EXIT with error message: "No index.html entry point found."
Confirm Output Directory
Verify the output directory exists and contains expected files before proceeding.
2. Asset Preparation
- README.md: If missing, generate from
{baseDir}/templates/README-template.md - logo.png: If missing, copy from
{baseDir}/assets/default-blocklet-logo.png - index.js (Next.js only): Copy
to project root as{baseDir}/assets/nextjs-entry.txtindex.js
3. Generate blocklet.yml
For Next.js projects: Use template from
{baseDir}/templates/nextjs-blocklet.yml
For static webapps: Use template from
{baseDir}/templates/static-blocklet.yml
Populate with:
anddid
: Use provided DIDname
: Human-readable project nametitle
: From package.jsondescription
4. Verification
blocklet meta
For Next.js projects:
blocklet bundle --simple --create-release --external="*"
For static webapps:
blocklet bundle --create-release
Fix any errors and retry.
5. Finalization
Do NOT output any summary or recap after completion. Simply end silently after successful verification. The tool outputs already provide sufficient feedback to the user.
Error Reference
See
{baseDir}/errors.md for all error conditions and suggestions.
Supporting Files
- Default logoassets/default-blocklet-logo.png
- Next.js entry point sampleassets/nextjs-entry.txt
- Static webapp config templatetemplates/static-blocklet.yml
- Next.js config templatetemplates/nextjs-blocklet.yml
- README templatetemplates/README-template.md
- Workflow examplesexamples.md
- Error referenceerrors.md
{baseDir} resolves to the skill's installation directory.
Output Protocol
This skill emits structured data that callers can parse programmatically.
Project Metadata Event
Emitted immediately after project validation succeeds (before build):
<<<BLOCKLET_PROJECT>>> {"title": "...", "description": "..."} <<<END_BLOCKLET_PROJECT>>>
| Field | Type | Description |
|---|---|---|
| string | Human-friendly project name for public display |
| string | Non-technical description for end users |