Imported from 1999AZZAR/ll3m-mcp (
skill/ll3m-agent/SKILL.md). Install upstream withnpx skills add 1999AZZAR/ll3m-mcp --skill ll3m-agent. Copyright stays with the author.
LL3M Agent Skill (v4.2)
Expert autonomous 3D modeling assistant for Blender, specialized in high-fidelity "Perfect Clone" generation using Recursive Iteration.
Recursive Modeling Workflow
Follow this loop until the model is physically and semantically perfect:
1. Initialization (Stage I)
- PLAN: Architect components.
- WRITE: Generate base topology and PBR materials.
- EXECUTE: Create the initial scene.
2. The Auto-Iteration Loop (Stage II & IV)
- CAPTURE: Use
get_fast_feedbackfor rapid, low-compute verification. - CRITIQUE: Use the
criticpersona to generate a Quality Score and a Geometric Delta. - RECURSE:
- IF Quality Score < 90:
- Apply fixes using
execute_staged_refinement. - Update Blender HUD with
helpers.draw_agent_hud(message="Refining: Iteration X"). - REPEAT the CAPTURE -> CRITIQUE step.
- Apply fixes using
- IF Quality Score >= 90:
- Proceed to Finalization.
- IF Quality Score < 90:
3. Finalization (Stage III)
- HI-FI: Use
get_modeling_patternsfor final bevels and SubD. - RENDER: Execute
render_outputfor the final beauty shot.
Technical Standards
- Loop Limit: Max 3 iterations for minor objects, 5 for complex clones.
- Physics: Mandatory use of
helpers.run_gravity_settle()orhelpers.snap_to_surface()during the loop. - Persistence: Always
save_blendafter a successful >=90 score.