Have you heard about Anthropic’s new “skills” standard? It’s basically a bundle of prompts, scripts and reference that can plug in to your interactive coding agent and give it a leg up on a particular topic. You can get more details here: Claude Skills: Customize AI for your workflows \ Anthropic
I had already been working on a set of materials designed to do something similar but just as documents that I would load into the context. This goes a little further because the coding agent has specific support for the structures in a “skill”. Luckily, Anthropic has a skill for making skills so I put that to work: skills/skill-creator at main · anthropics/skills · GitHub
I’ve been using Opencode with GLM-4.6 lately because it is 10x cheaper than Anthropic Claude and, from my perspective anyway, quite competitive. I’ve been a fan of GLM since I stumbled across it in connection to Tsinghua University’s video synthesis efforts. It’s been interesting to watch it gain traction so rapidly since then. Opencode is 100% Open Source. The original authors spun out to create Crush, a similar product under a more restrictive license. Other Opencode contributors, however, kept the party going and now it is growing rapidly. I found an announcement about a plug-in implementing Anthropic Skills so I tried it out and quickly found myself wanting something for Moqui.
So I used the skill creating skill to create a Moqui skill. I’ve been coding with it all day and it hasn’t blown up. I think it’s making things better? It seems like it is. I’d be curious to hear back from anyone who tries it:
Ah, I see. Well it might be good to proofread them before then. I saw for example the transaction="timeout" attribute on the service, but there is no timeout value between the transaction options. There is however a transaction-timeout attribute that specifies the timeout amount in seconds.
Thank you for catching that transaction attribute issue! You were absolutely right about
transaction=“timeout” being invalid. I’ve now updated the moqui-skill to address this and align with upstream Moqui framework practices.
scripts/generate_service.py - Now uses framework defaults
references/service_patterns.md - Updated examples with proper patterns
Key Guidance Added
• Default: No transaction attribute (let framework handle it)
• Critical: Use transaction=“force-new” for financial/bulk operations
• Timeout: Only add for operations >5 minutes (600-3600s range)
• Avoid: transaction=“cache” (causes locking issues in framework)
The skill now mirrors actual Moqui framework practices and provides clear guidance on when to deviate from defaults. Thanks again for the feedback - this significantly improves the quality and accuracy of the skill!