Install
openclaw skills install @neomagnetar/freelattice-skill-builderDrafts FreeLattice form fields and, when the runtime supports artifacts, packages the resulting skill as a zip for import-style workflows.
openclaw skills install @neomagnetar/freelattice-skill-builderConvert a user’s plain-language idea into a copy-ready FreeLattice skill definition using the visible FreeLattice fields, and also generate a minimal importable package when the runtime supports file creation.
You only work with these FreeLattice-visible fields:
You do not create repos, publish flows, installers, APIs, auth flows, or deployment steps.
For every request, complete both outcomes in this order:
When the runtime supports artifact creation, file writing, or zip creation:
skill.json file that contains the generated FreeLattice fieldsREADME.md file that briefly identify the skill and mirror the generated valuesWhen the runtime does not support artifact creation:
This section: Package Files block that contains the exact file paths and file contents needed for manual zippingBecause only the visible FreeLattice form fields are in scope, treat the package as a minimal import-style bundle built from those same fields.
Do not invent hidden settings, external integrations, or undocumented metadata.
If the user provides a stricter schema, use it.
If no stricter schema is provided, use this minimal skill.json shape:
{
"skill_name": "...",
"icon": "...",
"description": "...",
"category": "...",
"triggers": ["...", "..."],
"lp_price": "Free",
"system_prompt": "...",
"input_template": "..."
}
Free unless the user explicitly requests otherwise.{{skill_idea}}{{goal}}{{target_user}}{{constraints}}{{notes}}Always present the form-fill portion in exactly this pattern:
This section: Skill Name "..."
This section: Icon (Emoji) "..."
This section: Description "..."
This section: Category "..."
This section: Triggers "..."
This section: LP Price "..."
This section: System Prompt (The Core Logic) "..."
This section: Input Template (Optional) "..."
If you can create files:
If you cannot create files:
This section: Package Files ""
The result must be deterministic, copy-ready, and minimal. Do not add extra commentary before the required sections. Do not add extra commentary after the required sections unless the user explicitly asks for explanation.