skills/arcblock/blocklet-converter/SKILL.md
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.
npx skillsauth add aiskillstore/marketplace blocklet-converterInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Converts static web projects and Next.js applications into ArcBlock blocklets with proper configuration and validation.
did (required): Pre-generated blocklet DID (format: z8ia...)
Example: "Convert this project to blocklet using DID z8ia4e5vAeDsQEE2P26bQqz9oWR1Lxg9qUMaV"
If missing or invalid, exit immediately with error message: "Blocklet DID parameter is required."
Skip directories: node_modules/, .pnpm/, .yarn/, .cache/, .turbo/, bower_components/
Check for ANY of:
package.json with web-related dependenciesindex.html in root, public/, or src/ or common locationsvite.config.*, webpack.config.*, next.config.*, etc.)If none found → EXIT with error message: "No web application detected."
Check package.json dependencies for:
next in dependencies → Next.js projectImmediately after confirming project type, extract metadata from package.json:
title: Human-friendly project name suitable for public display (e.g., my-cool-app → My Cool App)description: A clear, non-technical description for end users. If package.json description is too technical, rewrite it to be user-friendly.Emit using the protocol below, then continue with the workflow:
<<<BLOCKLET_PROJECT>>>
{"title": "...", "description": "..."}
<<<END_BLOCKLET_PROJECT>>>
bun install && bun run build
If either fails → EXIT with error output.
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."
Verify the output directory exists and contains expected files before proceeding.
{baseDir}/templates/README-template.md{baseDir}/assets/default-blocklet-logo.png{baseDir}/assets/nextjs-entry.txt to project root as index.jsFor Next.js projects: Use template from {baseDir}/templates/nextjs-blocklet.yml
For static webapps: Use template from {baseDir}/templates/static-blocklet.yml
Populate with:
did and name: Use provided DIDtitle: Human-readable project namedescription: From package.jsonblocklet meta
For Next.js projects:
blocklet bundle --simple --create-release --external="*"
For static webapps:
blocklet bundle --create-release
Fix any errors and retry.
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.
See {baseDir}/errors.md for all error conditions and suggestions.
assets/default-blocklet-logo.png - Default logoassets/nextjs-entry.txt - Next.js entry point sampletemplates/static-blocklet.yml - Static webapp config templatetemplates/nextjs-blocklet.yml - Next.js config templatetemplates/README-template.md - README templateexamples.md - Workflow exampleserrors.md - Error reference{baseDir} resolves to the skill's installation directory.
This skill emits structured data that callers can parse programmatically.
Emitted immediately after project validation succeeds (before build):
<<<BLOCKLET_PROJECT>>>
{"title": "...", "description": "..."}
<<<END_BLOCKLET_PROJECT>>>
| Field | Type | Description |
|-------|------|-------------|
| title | string | Human-friendly project name for public display |
| description | string | Non-technical description for end users |
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.