一键导入
lissom-auto
Runs the full dev cycle (research → plan → impl → review + fix loop) given an explicit task_id.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Runs the full dev cycle (research → plan → impl → review + fix loop) given an explicit task_id.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Dispatch to lissom-implementer agent to execute the implementation given an explicit task_dir, which contains the plan.
Dispatches to lissom-planner agent to produce an implementation plan given an explicit task_dir, which contains a specification or research document.
Dispatches lissom-specs-reviewer and then lissom-researcher agents optionally to refine the specification and produce the research document given an explicit task_dir, which contains the original specification.
Dispatches to lissom-reviewer agent to review the implementation given an explicit task_dir, which contains the related documents.
| name | lissom-auto |
| description | Runs the full dev cycle (research → plan → impl → review + fix loop) given an explicit task_id. |
| disable-model-invocation | true |
| argument-hint | <task_id> [extra_info] |
args = $ARGUMENTStask_id = args[0]extra_info = args[1..] (optional).lissom/settings.local.json from the project root. It may be absent or empty — treat either as no preferences set.<skill_dir>/user_preference_questions.json from this skill's directory. Each entry has a preference_arg key (the preference name).settings.local.json. If set, use it.settings.local.json:
.lissom/settings.local.json, see README."user_attention=auto or extra_info demands auto processing, skip all rest questions and set fix_threshold=critical, spec_review_required=false.spec_review_required=true, set research_required=true and skip that question.AskUserQuestion to prompt the user using the entry's question/options. The first option in each question is the default one.user_attention = default, auto, focusedfix_threshold = warning, critical, suggestionspec_review_required = false, trueresearch_required = true, falseimpl_delegation = single, multiple (do not ask question)task_dir = .lissom/tasks/<task_id> or .lissom/tasks/backlog/<task_id>.lissom/tasks/<task_id>/Specs.md and use .lissom/tasks/<task_id> as task_dir..gitignore, that hide the artifacts.lissom-research with task_dir, user_attention, spec_review_required, and research_required. Wait for completion. If spec_review_required and research_required are both false, skip this step.lissom-plan with task_dir. Verify Plan.md exists; retry once on missing.lissom-impl with task_dir and impl_delegation. Verify Impl-summary.md exists; retry once on missing.lissom-review with task_dir. Verify Review.md exists; retry once on missing.Review.md to decide whether to enter the fix loop:**Critical**. If found and followed by content before the next heading, critical issues exist.**Warning**. Same rule.**Suggestion**. Same rule.fix_threshold:
critical → fix loop only if critical issues exist.warning (default) → fix loop if critical or warning issues exist.suggestion → fix loop if any issues exist.
If no issues at or above threshold → report success to the user.Up to 3 cycles:
lissom-plan with task_dir, fix_cycle, and fix_threshold.lissom-impl with task_dir.lissom-review with task_dir.Review.md the same way as Execution step 5. If it passes → report success.After 3 cycles with persistent issues, report failure and direct the user to Review.md.
AskUserQuestion to relay it to the user and pass the answer back.extra_info..lissom/tasks/<task_id>/: Research.md, Plan.md, Impl-summary.md, Review.md.Review.md contains no issues at or above fix_threshold, or the fix loop has exhausted 3 cycles.